  :root {
    --ink:     #0a0a0f;
    --paper:   #f5f3ee;
    --accent:  #1a56ff;
    --accent2: #ff4d1c;
    --muted:   #6b6b7a;
    --border:  rgba(10,10,15,0.1);
    --card-bg: #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
  }
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: left, top;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    transition: transform .15s, background .2s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--accent);
    opacity: .5;
    transition: width .25s, height .25s, opacity .25s, border-color .25s;
  }

  /* ── Noise texture overlay ── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: .4;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(245,243,238,.82);
    border-bottom: 1px solid var(--border);
    transition: padding .3s;
  }
  nav.scrolled { padding: 14px 48px; }

  .nav-logo {
    font-family: 'Fraunces', serif;
    font-weight: 800; font-size: 1.25rem;
    color: var(--ink); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo-mark {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-mark svg { width: 18px; height: 18px; }

  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: .875rem; font-weight: 500;
    color: var(--muted); text-decoration: none;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .nav-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem; font-weight: 500;
    color: var(--ink); text-decoration: none;
    padding: 9px 20px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    transition: all .2s;
    
  }
  .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem; font-weight: 600;
    color: #fff; text-decoration: none;
    padding: 10px 24px;
    background: var(--accent);
    border-radius: 100px;
    transition: all .25s;
    
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #0040e0; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,86,255,.35); }
  .btn-primary svg { transition: transform .2s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 48px 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }

  /* Background geometric shapes */
  .hero::after {
    content: '';
    position: absolute; right: -120px; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,255,.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-grid-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  }
  .hero-grid-bg svg { width: 100%; height: 100%; opacity: .04; }

  .hero-content { position: relative; z-index: 1; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,86,255,.08);
    border: 1px solid rgba(26,86,255,.2);
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    font-size: .75rem; font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    animation: fadeUp .6s ease both;
  }
  .hero-badge-dot {
    width: 20px; height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-badge-dot svg { width: 11px; height: 11px; }

  .hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    animation: fadeUp .6s .1s ease both;
  }
  .hero-title em {
    font-style: normal;
    color: var(--accent);
    position: relative;
    display: inline-block;
  }
  .hero-title em::after {
    content: '';
    position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
    background: var(--accent2);
    border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    animation: underlineIn .5s .8s ease forwards;
  }

  .hero-desc {
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp .6s .2s ease both;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 16px;
    animation: fadeUp .6s .3s ease both;
  }

  .hero-actions .btn-primary { font-size: 1rem; padding: 14px 32px; }

  .hero-note {
    font-size: .8rem; color: var(--muted); margin-top: 20px;
    animation: fadeUp .6s .4s ease both;
    display: flex; align-items: center; gap: 6px;
  }
  .hero-note svg { color: #22c55e; flex-shrink: 0; }

  /* Hero visual — mockup */
  .hero-visual {
    position: relative; z-index: 1;
    animation: fadeLeft .8s .2s ease both;
  }

  .mockup-wrap {
    position: relative;
  }

  .mockup-shadow {
    position: absolute; inset: 20px; bottom: -30px;
    background: var(--accent);
    border-radius: 20px;
    opacity: .12;
    filter: blur(40px);
    z-index: 0;
  }

  .mockup {
    position: relative; z-index: 1;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(10,10,15,.08);
    box-shadow: 0 32px 80px rgba(10,10,15,.12), 0 0 0 1px rgba(255,255,255,.8) inset;
    overflow: hidden;
  }

  .mockup-bar {
    padding: 12px 16px;
    background: #f8f8fa;
    border-bottom: 1px solid rgba(10,10,15,.06);
    display: flex; align-items: center; gap: 8px;
  }
  .mockup-bar-dot { width: 10px; height: 10px; border-radius: 50%; }
  .mockup-url {
    flex: 1; background: #ececec; border-radius: 6px;
    padding: 5px 12px; font-size: .7rem; color: #999;
    font-family: 'DM Sans', monospace;
    display: flex; align-items: center; gap: 6px;
  }

  .mockup-content { padding: 20px; }

  .mockup-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
  }
  .mockup-title {
    font-family: 'Fraunces', serif;
    font-weight: 700; font-size: .95rem; color: var(--ink);
  }
  .mockup-btn {
    background: var(--accent); color: #fff;
    border-radius: 8px; padding: 6px 14px;
    font-size: .72rem; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
  }

  .mockup-table { width: 100%; border-collapse: collapse; }
  .mockup-table th {
    text-align: left; font-size: .65rem; font-weight: 600;
    color: #aaa; text-transform: uppercase; letter-spacing: .05em;
    padding: 8px 10px; border-bottom: 1px solid #f0f0f0;
  }
  .mockup-table td {
    padding: 10px 10px; font-size: .72rem; color: var(--ink);
    border-bottom: 1px solid #f8f8f8;
    vertical-align: middle;
  }
  .mockup-table tr:last-child td { border-bottom: none; }

  .badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px; border-radius: 100px;
    font-size: .65rem; font-weight: 600;
  }
  .badge-green  { background: #dcfce7; color: #16a34a; }
  .badge-blue   { background: #dbeafe; color: #1d4ed8; }
  .badge-orange { background: #ffedd5; color: #c2410c; }
  .badge-gray   { background: #f3f4f6; color: #6b7280; }
  .badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

  .amount { font-weight: 600; font-size: .78rem; }
  .client-name { font-weight: 500; }
  .client-email { font-size: .65rem; color: #aaa; }

  /* Floating cards */
  .float-card {
    position: absolute;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(10,10,15,.12), 0 0 0 1px rgba(10,10,15,.05);
    padding: 14px 18px;
    z-index: 2;
  }
  .float-card-1 {
    bottom: -24px; left: -32px;
    display: flex; align-items: center; gap: 12px;
    animation: floatY 4s ease-in-out infinite;
  }
  .float-card-2 {
    top: -20px; right: -24px;
    animation: floatY 4s 1.5s ease-in-out infinite;
  }
  .float-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .float-label { font-size: .7rem; color: var(--muted); margin-bottom: 2px; }
  .float-value { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
  .float-value span { font-size: .7rem; font-weight: 400; color: #22c55e; margin-left: 4px; }

  .float-card-2 .float-label { font-size: .68rem; color: var(--muted); }
  .float-card-2 .float-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
  .float-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .62rem; font-weight: 700; color: #fff; flex-shrink: 0;
  }
  .float-name { font-size: .72rem; font-weight: 500; }
  .float-action { font-size: .65rem; color: var(--muted); }

  /* ── MARQUEE strip ── */
  .marquee-strip {
    background: var(--ink);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-inner {
    display: flex; gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 32px;
    font-size: .8rem; font-weight: 500;
    color: rgba(255,255,255,.5);
    letter-spacing: .05em; text-transform: uppercase;
  }
  .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent2); flex-shrink: 0; }

  /* ── FEATURES ── */
  .section {
    padding: 120px 48px;
    position: relative;
  }

  .section-label {
    font-size: .75rem; font-weight: 600;
    color: var(--accent); letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .section-label::before {
    content: '';
    display: inline-block; width: 20px; height: 2px;
    background: var(--accent);
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1.05rem; font-weight: 300;
    color: var(--muted); line-height: 1.7;
    max-width: 520px;
  }

  /* Features grid */
  .features-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: end;
    margin-bottom: 80px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--card-bg);
    padding: 36px 32px;
    transition: background .25s;
    position: relative;
    overflow: hidden;
  }
  .feature-card:hover { background: #fafafa; }
  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(26,86,255,.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    transition: background .25s, transform .25s;
  }
  .feature-card:hover .feature-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
  }
  .feature-card:hover .feature-icon svg { stroke: #fff; }

  .feature-title {
    font-family: 'Fraunces', serif;
    font-weight: 700; font-size: 1rem;
    margin-bottom: 10px;
  }
  .feature-desc {
    font-size: .875rem; font-weight: 300;
    color: var(--muted); line-height: 1.65;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--ink);
    padding: 120px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .how-section::before {
    content: '';
    position: absolute; right: -200px; top: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,255,.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .how-section .section-title { color: #fff; }
  .how-section .section-sub { color: rgba(255,255,255,.5); }
  .how-section .section-label { color: rgba(26,86,255,.8); }
  .how-section .section-label::before { background: rgba(26,86,255,.8); }

  .how-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 72px;
    position: relative;
  }
  .how-steps::before {
    content: '';
    position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
    height: 1px; background: rgba(255,255,255,.1);
  }

  .how-step {
    padding: 0 24px;
    display: flex; flex-direction: column; align-items: flex-start;
  }

  .how-num {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 800; font-size: 1.1rem;
    color: rgba(255,255,255,.4);
    background: var(--ink);
    margin-bottom: 28px; position: relative; z-index: 1;
    transition: all .3s;
  }
  .how-step:hover .how-num {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(26,86,255,.1);
  }

  .how-step-title {
    font-family: 'Fraunces', serif;
    font-weight: 700; font-size: 1rem; color: #fff;
    margin-bottom: 10px;
  }
  .how-step-desc {
    font-size: .875rem; font-weight: 300;
    color: rgba(255,255,255,.45); line-height: 1.7;
  }

  /* ── SOCIAL PROOF / NUMBERS ── */
  .numbers-section {
    padding: 100px 48px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .number-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  .number-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color .25s, transform .25s;
  }
  .number-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .number-value {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem; font-weight: 800;
    color: var(--ink); line-height: 1;
    margin-bottom: 8px;
  }
  .number-value span { color: var(--accent); }
  .number-label { font-size: .875rem; color: var(--muted); font-weight: 300; }

  /* ── CTA FINAL ── */
  .cta-section {
    margin: 0 48px 120px;
    background: var(--accent);
    border-radius: 28px;
    padding: 100px 80px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 60px;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; right: -80px; bottom: -80px;
    width: 360px; height: 360px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
  }
  .cta-section::after {
    content: '';
    position: absolute; right: 80px; top: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
  }

  .cta-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.01em; color: #fff;
    margin-bottom: 16px;
  }
  .cta-desc { font-size: 1rem; color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.6; }

  .btn-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: var(--accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 600;
    padding: 16px 36px; border-radius: 100px;
    text-decoration: none; white-space: nowrap;
    transition: all .25s; 
    flex-shrink: 0;
  }
  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,.2);
  }
  .btn-white svg { transition: transform .2s; }
  .btn-white:hover svg { transform: translateX(4px); }

  /* ── FOOTER ── */
  footer {
    padding: 40px 48px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Fraunces', serif;
    font-weight: 800; color: var(--ink);
    text-decoration: none; display: flex; align-items: center; gap: 10px;
  }
  .footer-copy { font-size: .8rem; color: var(--muted); }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: var(--ink); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes underlineIn {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }

    .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 48px; }
    .hero-visual { order: -1; }
    .hero::after { display: none; }

    .section { padding: 80px 24px; }
    .features-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .features-grid { grid-template-columns: 1fr; }

    .how-section { padding: 80px 24px; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
    .how-steps::before { display: none; }

    .numbers-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }

    .cta-section { margin: 0 24px 80px; padding: 60px 40px; grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .btn-white { justify-content: center; }

    footer { flex-direction: column; gap: 24px; padding: 32px 24px; text-align: center; }

    .float-card-1, .float-card-2 { display: none; }

    body { cursor: auto; }
    .cursor { display: none; }
  }
