  :root{
    --bg:#0a0f0d;
    --bg-raised:#101613;
    --bg-raised-2:#141c18;
    --ink:#f3f6f2;
    --ink-dim:#c7d0c9;
    --muted:#8d9992;
    --line:rgba(243,246,242,0.12);
    --line-strong:rgba(243,246,242,0.22);
    --lime:#bef546;
    --lime-ink:#0a0f0d;
    --teal:#00ba93;
    --teal-soft:#3fdbc3;
    --grad: linear-gradient(120deg, var(--teal) 0%, var(--teal-soft) 100%);
    --maxw: 1180px;
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  ::selection{ background:var(--lime); color:var(--lime-ink); }

  h1,h2,h3{
    font-family:'Fraunces', Georgia, serif;
    font-weight:600;
    line-height:1.06;
    letter-spacing:-0.01em;
    text-wrap:balance;
    margin:0;
    color:var(--ink);
  }
  em{ font-style:italic; font-weight:500; color:var(--teal-soft); }
  a{ color:inherit; }
  img{ display:block; max-width:100%; }
  svg{ display:block; }

  .eyebrow{
    font-family:'Space Mono', monospace;
    font-size:12px;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--muted);
    display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{
    content:'';
    width:7px; height:7px; border-radius:50%;
    background:var(--lime);
    box-shadow:0 0 0 3px rgba(190,245,70,0.18);
    flex:none;
    animation:blink 2.4s ease-in-out infinite;
  }
  @keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.4;} }

  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; position:relative; }
  section{ position:relative; }

  /* ---------- NAV (transforms on scroll) ---------- */
  .nav-shell{ position:sticky; top:0; z-index:60; padding:18px 20px 0; pointer-events:none; }
  .nav-shell .nav{ pointer-events:auto; }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 26px; max-width:var(--maxw); margin:0 auto;
    gap:24px; border-radius:999px; border:1px solid transparent;
    background:transparent; position:relative;
    transition:background .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease, max-width .35s ease;
  }
  .nav-shell.scrolled{ top:14px; }
  .nav-shell.scrolled .nav{
    background:rgba(14,20,17,0.78);
    backdrop-filter:blur(16px) saturate(150%);
    border-color:var(--line-strong);
    box-shadow:0 20px 40px -20px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.02) inset;
    max-width:calc(var(--maxw) - 40px);
  }
  .scroll-bar{ position:fixed; top:0; left:0; height:2px; background:var(--lime); z-index:70; width:0%; box-shadow:0 0 12px var(--lime); }
  .to-top{
    position:fixed; right:24px; bottom:24px; z-index:60; width:48px; height:48px; border-radius:50%;
    background:var(--lime); border:1px solid var(--lime); color:var(--lime-ink); cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 16px 34px -12px rgba(0,0,0,.6);
    opacity:0; transform:translateY(14px) scale(.9); pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
  }
  .to-top.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
  .to-top:hover{ transform:translateY(-3px) scale(1.04); }
  .to-top svg{ width:18px; height:18px; }
  .brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
  .brand img{ height:46px; width:auto; filter:drop-shadow(0 0 14px rgba(63,219,195,.4)); transition:height .35s ease; }
  .nav-shell.scrolled .brand img{ height:38px; }
  .brand span{
    font-family:'Space Mono', monospace; font-size:13px; letter-spacing:0.06em;
    color:var(--ink); white-space:nowrap;
  }
  /* mobile menu toggle (hidden on desktop) */
  .nav-toggle{
    display:flex; flex:none; width:38px; height:38px; border-radius:50%;
    border:1px solid var(--line-strong); background:transparent;
    align-items:center; justify-content:center; flex-direction:column; gap:5px;
    cursor:pointer; padding:0;
  }
  .nav-toggle span{ display:block; width:16px; height:1.5px; background:var(--ink); transition:transform .25s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }
  @media(min-width:900px){ .nav-toggle{ display:none; } }

  .navlinks{ display:flex; align-items:center; gap:26px; list-style:none; margin:0; padding:0; }
  .navlinks a{
    text-decoration:none; font-size:14px; color:var(--ink-dim);
    position:relative; padding:4px 0; white-space:nowrap;
  }
  .navlinks a::after{
    content:''; position:absolute; left:0; right:100%; bottom:0; height:1px;
    background:var(--lime); transition:right .25s ease;
  }
  .navlinks a:hover{ color:var(--ink); }
  .navlinks a:hover::after{ right:0; }
  .navright{ display:flex; align-items:center; gap:16px; }
  .langs{ display:flex; gap:6px; font-family:'Space Mono', monospace; }
  .langs button, .langs a{
    background:none; border:1px solid var(--line); color:var(--muted);
    border-radius:999px; padding:4px 9px; cursor:pointer; font-family:inherit; font-size:11px;
    text-decoration:none; line-height:1.4; display:inline-block;
    transition:border-color .2s, color .2s;
  }
  .langs button.active, .langs a.active{ border-color:var(--teal-soft); color:var(--ink); }
  .langs a:hover{ color:var(--ink); }
  .cta{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--lime); color:var(--lime-ink);
    font-family:'Archivo', sans-serif; font-weight:600; font-size:14px;
    padding:11px 20px; border-radius:999px; text-decoration:none;
    border:1px solid var(--lime); white-space:nowrap; position:relative;
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .cta:hover{ transform:translateY(-2px); box-shadow:0 12px 24px -8px rgba(190,245,70,0.55); }
  .cta.ghost{ background:transparent; color:var(--ink); border-color:var(--line-strong); }
  .cta.ghost:hover{ border-color:var(--teal-soft); box-shadow:none; }
  .navcta{ display:none; }
  @media(min-width:900px){ .navcta{ display:inline-flex; } }

  /* nav-collapse: inline row on desktop, dropdown panel on mobile */
  @media(min-width:900px){
    .nav-collapse{ display:flex; align-items:center; gap:24px; }
  }
  @media(max-width:899px){
    .nav-collapse{
      display:none; position:absolute; top:calc(100% + 10px); left:0; right:0;
      background:rgba(14,20,17,.97); backdrop-filter:blur(16px) saturate(150%);
      border:1px solid var(--line-strong); border-radius:20px;
      padding:22px; flex-direction:column; gap:20px;
      box-shadow:0 30px 60px -20px rgba(0,0,0,.7);
    }
    .nav-collapse.open{ display:flex; }
    .navlinks{ flex-direction:column; align-items:flex-start; gap:16px; width:100%; }
    .navlinks a{ font-size:16px; }
    .navright{ flex-direction:column; align-items:stretch; gap:14px; width:100%; }
    .langs{ width:100%; }
    .langs a{ flex:1; text-align:center; }
    .nav-collapse .navcta{ display:inline-flex; width:100%; justify-content:center; }
  }

  /* ---------- AMBIENT BACKGROUND ---------- */
  .glow{ position:fixed; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
  .glow span{ position:absolute; border-radius:50%; filter:blur(100px); }
  .glow .g1{ width:560px; height:560px; background:var(--teal); opacity:.28; top:-180px; left:-140px; animation:drift1 26s ease-in-out infinite; }
  .glow .g2{ width:440px; height:440px; background:var(--lime); opacity:.12; bottom:6%; right:-120px; animation:drift2 32s ease-in-out infinite; }
  .glow .g3{ width:360px; height:360px; background:var(--teal-soft); opacity:.14; top:40%; left:60%; animation:drift3 22s ease-in-out infinite; }
  @keyframes drift1{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(60px,80px) scale(1.15);} }
  @keyframes drift2{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(-50px,-40px) scale(1.1);} }
  @keyframes drift3{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(-70px,50px) scale(0.9);} }
  main{ position:relative; z-index:1; }

  /* glossy 3d orb */
  .orb{
    border-radius:50%;
    background:
      radial-gradient(circle at 32% 28%, rgba(255,255,255,.95), rgba(255,255,255,0) 42%),
      radial-gradient(circle at 68% 74%, var(--teal-soft), var(--teal) 55%, #063b30 100%);
    box-shadow:
      inset -18px -22px 50px rgba(0,0,0,.55),
      inset 10px 12px 30px rgba(255,255,255,.18),
      0 30px 60px -20px rgba(0,186,147,.55);
  }
  .orb.lime{
    background:
      radial-gradient(circle at 30% 26%, rgba(255,255,255,.9), rgba(255,255,255,0) 40%),
      radial-gradient(circle at 68% 74%, #e4ff9e, var(--lime) 55%, #4d6412 100%);
    box-shadow:
      inset -14px -18px 40px rgba(0,0,0,.5),
      inset 8px 10px 24px rgba(255,255,255,.25),
      0 24px 50px -18px rgba(190,245,70,.5);
  }

  /* ---------- HERO ---------- */
  .hero{ padding:56px 0 0; }
  .hero-top{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
  @media(min-width:980px){ .hero-top{ grid-template-columns:1.05fr 0.95fr; gap:24px; } }
  .hero h1{ font-size:clamp(32px,5vw,58px); margin-top:16px; }
  .hero h1 .soft{ display:block; font-weight:400; color:var(--ink-dim); font-size:.6em; margin-bottom:6px; }
  .hero-copy p{ color:var(--ink-dim); font-size:16px; max-width:50ch; margin:18px 0 0; }
  .hero-actions{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; margin-top:26px; }
  .status{ font-family:'Space Mono', monospace; font-size:12px; color:var(--muted); display:flex; align-items:center; gap:8px; }
  .status i{ width:6px;height:6px;border-radius:50%;background:var(--teal-soft); box-shadow:0 0 0 3px rgba(63,219,195,.18); animation:blink 2.4s ease-in-out infinite; flex:none; }

  /* hero visual: AI-aura portrait + particle network */
  @keyframes float1{ 0%,100%{ transform:translateY(0) rotate(0deg);} 50%{ transform:translateY(-18px) rotate(6deg);} }
  @keyframes float2{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(16px);} }

  .hero-visual{ position:relative; height:480px; display:flex; align-items:center; justify-content:center; }
  .hero-visual canvas{ position:absolute; inset:-40px; width:calc(100% + 80px); height:calc(100% + 80px); }

  .portrait-stage{ position:relative; width:320px; height:320px; z-index:2; }
  .portrait-aura{
    position:absolute; inset:-46px; border-radius:50%;
    background:radial-gradient(circle, rgba(0,186,147,.35), rgba(0,186,147,0) 68%);
    animation:auraPulse 4.5s ease-in-out infinite;
  }
  @keyframes auraPulse{ 0%,100%{ transform:scale(1); opacity:.8;} 50%{ transform:scale(1.12); opacity:1;} }

  .portrait-ring{ position:absolute; inset:-22px; border-radius:50%; }
  .portrait-ring svg{ width:100%; height:100%; animation:spin 16s linear infinite; }
  .portrait-ring circle{ fill:none; stroke-dasharray:2 14; stroke-linecap:round; }
  @keyframes spin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }

  .portrait-orbit{ position:absolute; inset:-58px; border-radius:50%; border:1px dashed var(--line-strong); animation:spin 34s linear infinite reverse; }
  .portrait-orbit i{
    position:absolute; top:50%; left:100%; width:9px; height:9px; margin:-4.5px 0 0 -4.5px; border-radius:50%;
    background:var(--lime); box-shadow:0 0 10px var(--lime);
  }
  .portrait-orbit i:nth-child(2){ transform:rotate(130deg) translateX(0); top:auto; left:auto; bottom:8%; right:12%; background:var(--teal-soft); box-shadow:0 0 10px var(--teal-soft); }
  .portrait-orbit i:nth-child(3){ top:14%; left:4%; background:var(--teal); box-shadow:0 0 10px var(--teal); }

  .portrait-frame{
    position:absolute; inset:0; border-radius:50%; overflow:hidden;
    border:2px solid var(--line-strong);
    box-shadow:0 40px 90px -30px rgba(0,0,0,.75), 0 0 0 10px rgba(0,186,147,.06);
  }
  .portrait-frame img{ width:100%; height:100%; object-fit:cover; }
  .portrait-frame::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,186,147,0) 55%, rgba(6,15,12,.55) 100%);
  }

  .portrait-chip{
    position:absolute; display:flex; align-items:center; gap:7px;
    background:rgba(16,22,19,.85); backdrop-filter:blur(8px);
    border:1px solid var(--line-strong); border-radius:999px; padding:7px 13px;
    font-family:'Space Mono',monospace; font-size:11px; color:var(--ink-dim);
    box-shadow:0 14px 30px -14px rgba(0,0,0,.75); z-index:3;
  }
  .portrait-chip svg{ width:12px; height:12px; }
  .portrait-chip.c1{ top:4%; right:-6%; animation:float1 8s ease-in-out infinite; }
  .portrait-chip.c2{ bottom:10%; left:-10%; animation:float2 7s ease-in-out infinite; }
  .portrait-chip.c3{ bottom:-4%; right:8%; animation:float1 9.5s ease-in-out infinite; }

  .marquee{ margin-top:56px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; padding:14px 0; }
  .marquee-track{ display:flex; gap:16px; white-space:nowrap; width:max-content; animation:scroll 26s linear infinite;
    font-family:'Space Mono', monospace; font-size:13px; letter-spacing:.08em; color:var(--muted); text-transform:uppercase; }
  .marquee-track span{ color:var(--teal-soft); margin:0 10px; }
  @keyframes scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

  /* ---------- STATEMENT SECTIONS ---------- */
  .statement{ padding:88px 0; }
  .statement .kicker{ margin-bottom:22px; }
  .statement h2{ font-size:clamp(26px,3.6vw,42px); max-width:20ch; }
  .statement-grid{ display:grid; gap:40px; align-items:center; }
  @media(min-width:980px){ .statement-grid{ grid-template-columns:1.1fr 0.9fr; gap:64px; } }
  .statement-visual{ display:flex; justify-content:center; }

  /* iPhone-style mockup with a WhatsApp-style screen */
  .iphone{
    position:relative; width:252px; aspect-ratio:9/19.3; padding:5px;
    background:linear-gradient(155deg,#4b4f54 0%,#1a1b1d 22%,#0c0d0e 55%,#3a3d41 100%);
    border-radius:56px; box-shadow:0 50px 100px -30px rgba(0,0,0,.85), inset 0 0 0 1px rgba(255,255,255,.14);
  }
  .iphone::before{ /* inner bezel groove */
    content:''; position:absolute; inset:5px; border-radius:51px; box-shadow:inset 0 0 0 1.5px rgba(0,0,0,.6);
    pointer-events:none;
  }
  .iphone .btn{ position:absolute; background:linear-gradient(90deg,#0c0d0e,#3a3d41); border-radius:3px; }
  .iphone .btn.action{ left:-3px; top:19%; width:3px; height:26px; }
  .iphone .btn.vol-up{ left:-3px; top:29%; width:3px; height:38px; }
  .iphone .btn.vol-down{ left:-3px; top:39%; width:3px; height:38px; }
  .iphone .btn.power{ right:-3px; top:24%; width:3px; height:56px; }

  .iphone-screen{
    position:relative; width:100%; height:100%; border-radius:48px; overflow:hidden;
    background:#0b141a;
  }
  .iphone-status{
    position:absolute; top:0; left:0; right:0; height:34px; z-index:6;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 22px; font-family:'Archivo',sans-serif; font-weight:600; font-size:11px; color:#fff;
  }
  .iphone-status svg{ height:9px; width:auto; display:block; }
  .island{ position:absolute; top:8px; left:50%; transform:translateX(-50%); width:84px; height:22px; background:#000; border-radius:20px; z-index:7; }

  .wa-header{
    position:absolute; top:34px; left:0; right:0; height:56px; z-index:5;
    background:#1f2c34; display:flex; align-items:center; gap:10px; padding:0 12px;
    box-shadow:0 1px 0 rgba(0,0,0,.3);
  }
  .wa-header svg.back{ width:16px; height:16px; flex:none; color:#8696a0; }
  .wa-header .wa-avatar{
    width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--teal-soft));
    display:flex; align-items:center; justify-content:center; font-family:'Space Mono',monospace; color:#04120f; font-size:11px; font-weight:700; flex:none;
  }
  .wa-header .wa-id{ flex:1; min-width:0; }
  .wa-header .wa-id .n{ color:#e9edef; font-size:12.5px; font-weight:600; font-family:'Archivo',sans-serif; white-space:nowrap; }
  .wa-header .wa-id .s{ color:#25d366; font-size:10px; font-family:'Archivo',sans-serif; }
  .wa-header .wa-icons{ display:flex; gap:14px; color:#8696a0; }
  .wa-header .wa-icons svg{ width:16px; height:16px; }

  .wa-body{
    position:absolute; top:90px; left:0; right:0; bottom:64px; z-index:2;
    padding:14px 10px; display:flex; flex-direction:column; gap:8px; overflow:hidden;
    background:
      radial-gradient(circle at 15% 8%, rgba(255,255,255,.025) 0 2px, transparent 3px),
      radial-gradient(circle at 70% 22%, rgba(255,255,255,.02) 0 2px, transparent 3px),
      radial-gradient(circle at 40% 55%, rgba(255,255,255,.025) 0 2px, transparent 3px),
      radial-gradient(circle at 85% 70%, rgba(255,255,255,.02) 0 2px, transparent 3px),
      radial-gradient(circle at 20% 85%, rgba(255,255,255,.025) 0 2px, transparent 3px),
      #0b141a;
  }
  .wa-msg{
    align-self:flex-start; max-width:80%; background:#202c33; color:#e9edef; border-radius:2px 10px 10px 10px;
    padding:7px 10px 9px; font-size:11.5px; line-height:1.35; position:relative;
    opacity:0; transform:translateY(8px) scale(.97); transition:opacity .35s ease, transform .35s ease;
    box-shadow:0 1px 1px rgba(0,0,0,.3);
  }
  .wa-msg.in{ opacity:1; transform:none; }
  .wa-msg .t{ display:block; text-align:right; font-size:9px; color:#8696a0; margin-top:3px; }
  .wa-msg.pending{ display:flex; align-items:center; gap:4px; padding:10px 12px; }
  .wa-typing{ display:flex; gap:3px; }
  .wa-typing span{ width:5px; height:5px; border-radius:50%; background:#8696a0; animation:typingdot 1.1s ease-in-out infinite; }
  .wa-typing span:nth-child(2){ animation-delay:.15s; } .wa-typing span:nth-child(3){ animation-delay:.3s; }
  @keyframes typingdot{ 0%,100%{ opacity:.3; transform:translateY(0);} 50%{ opacity:1; transform:translateY(-3px);} }

  .wa-inputbar{
    position:absolute; bottom:0; left:0; right:0; height:64px; z-index:5;
    background:#1f2c34; display:flex; align-items:center; gap:8px; padding:0 10px 14px;
  }
  .wa-inputbar .pill{ flex:1; height:32px; border-radius:16px; background:#2a3942; display:flex; align-items:center; padding:0 12px; gap:8px; }
  .wa-inputbar .pill span{ color:#8696a0; font-size:10.5px; font-family:'Archivo',sans-serif; }
  .wa-inputbar .pill svg{ width:14px; height:14px; color:#8696a0; }
  .wa-inputbar .mic{ width:32px; height:32px; border-radius:50%; background:#00a884; display:flex; align-items:center; justify-content:center; flex:none; }
  .wa-inputbar .mic svg{ width:15px; height:15px; color:#0b141a; }
  .home-indicator{ position:absolute; bottom:8px; left:50%; transform:translateX(-50%); width:96px; height:4px; border-radius:3px; background:rgba(255,255,255,.65); z-index:8; }

  /* corkboard with tangled wires */
  .corkboard{ position:relative; width:100%; max-width:380px; }
  .corkboard svg.wires{ position:absolute; inset:0; width:100%; height:100%; overflow:visible; z-index:0; }
  .corkboard svg.wires path{ fill:none; stroke:rgba(190,245,70,.25); stroke-width:1.4; stroke-dasharray:5 6; animation:wiredash 3s linear infinite; }
  @keyframes wiredash{ to{ stroke-dashoffset:-22; } }

  .qlist{ list-style:none; margin:34px 0; padding:0; max-width:640px; }
  .qlist li{
    padding:0; border-top:1px solid var(--line); color:var(--ink-dim);
    font-size:17px; display:flex; align-items:center; gap:14px; height:0; overflow:hidden;
    transition:height .45s cubic-bezier(.2,.8,.2,1), padding .45s ease;
  }
  .qlist li.in{ height:58px; padding:0; }
  .qlist li:last-child{ border-bottom:1px solid var(--line); }
  .qlist li::before{ content:'—'; color:var(--teal-soft); flex:none; }
  .statement .closer{ max-width:56ch; color:var(--ink-dim); font-size:17px; }
  .statement .closer strong{ color:var(--ink); font-weight:600; }

  .panel{ background:var(--bg-raised); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

  .noteboard{ position:relative; z-index:1; display:grid; gap:20px; grid-template-columns:repeat(2,1fr); }
  .noteboard div{
    background:var(--bg-raised-2); border:1px solid var(--line);
    border-radius:3px; padding:16px 16px 14px; font-family:'Space Mono',monospace;
    font-size:12.5px; color:var(--ink-dim); position:relative;
    box-shadow:0 14px 26px -14px rgba(0,0,0,.7);
    transform:rotate(var(--r,0deg));
    animation:sticky-float var(--dur,6s) ease-in-out infinite; animation-delay:var(--delay,0s);
  }
  .noteboard div::before{
    content:''; position:absolute; top:-7px; left:50%; transform:translateX(-50%) rotate(-4deg);
    width:26px; height:12px; background:rgba(190,245,70,.5); border-radius:2px;
  }
  .noteboard div:nth-child(1){ --r:1.2deg; --dur:6.5s; --delay:0s; }
  .noteboard div:nth-child(2){ --r:-1.6deg; --dur:7.2s; --delay:.4s; }
  .noteboard div:nth-child(3){ --r:0.8deg; --dur:5.8s; --delay:.8s; }
  .noteboard div:nth-child(4){ --r:-1deg; --dur:6.8s; --delay:.2s; }
  .noteboard div:nth-child(5){ --r:1.6deg; --dur:6.1s; --delay:.6s; }
  .noteboard div:nth-child(6){ --r:-0.6deg; --dur:7.5s; --delay:1s; }
  @keyframes sticky-float{ 0%,100%{ transform:translateY(0) rotate(var(--r,0deg)); } 50%{ transform:translateY(-7px) rotate(var(--r,0deg)); } }

  .bubble{
    display:inline-block; margin:24px 0; padding:14px 20px; border-radius:16px 16px 16px 4px;
    background:var(--bg-raised-2); border:1px solid var(--line-strong);
    font-family:'Fraunces', serif; font-style:italic; font-size:19px; color:var(--teal-soft);
  }

  /* ---------- SERVICES (3d tilt cards) ---------- */
  .services{ padding:96px 0; }
  .head-row{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:48px; }
  .head-row h2{ font-size:clamp(28px,3.8vw,44px); max-width:14ch; }
  .svc-grid{ display:grid; gap:20px; perspective:1200px; }
  @media(min-width:860px){ .svc-grid{ grid-template-columns:repeat(3,1fr); } }
  .svc{
    background:var(--bg-raised); border:1px solid var(--line); border-radius:18px;
    padding:34px 30px; display:flex; flex-direction:column; gap:16px; position:relative; overflow:hidden;
    transform-style:preserve-3d; will-change:transform;
    transition:transform .12s ease-out, border-color .3s ease;
  }
  .svc:hover{ border-color:var(--line-strong); }
  .svc::before{
    content:''; position:absolute; inset:0; opacity:0; pointer-events:none;
    background:radial-gradient(240px circle at var(--mx,50%) var(--my,50%), rgba(63,219,195,.16), transparent 60%);
    transition:opacity .3s ease;
  }
  .svc:hover::before{ opacity:1; }
  .svc .icon{ width:44px; height:44px; }
  .svc .num{ font-family:'Space Mono',monospace; color:var(--teal-soft); font-size:12.5px; }
  .svc h3{ font-size:21px; font-family:'Fraunces',serif; font-weight:600; }
  .svc p{ color:var(--ink-dim); font-size:15px; margin:0; flex:1; }
  .svc a{ font-family:'Space Mono',monospace; font-size:12.5px; text-decoration:none; color:var(--ink);
    display:inline-flex; align-items:center; gap:6px; letter-spacing:.04em; }
  .svc a::after{ content:'→'; transition:transform .2s ease; }
  .svc a:hover::after{ transform:translateX(4px); }

  /* ---------- PATHS ---------- */
  .paths{ padding:20px 0 100px; }
  .paths .intro{ max-width:52ch; margin:0 auto 40px; text-align:center; }
  .paths .intro h2{ font-size:clamp(26px,3.4vw,38px); }
  .paths .intro p{ color:var(--ink-dim); margin:14px auto 0; }
  .path-grid{ display:grid; gap:20px; }
  @media(min-width:800px){ .path-grid{ grid-template-columns:1fr 1fr; } }
  .path-card{
    border:1px solid var(--line); border-radius:18px; padding:36px; position:relative; overflow:hidden;
    transition:border-color .25s ease, transform .25s ease;
  }
  .path-card:hover{ transform:translateY(-4px); border-color:var(--line-strong); }
  .path-card.a{ background:linear-gradient(160deg, rgba(0,186,147,0.16), transparent 60%); }
  .path-card.b{ background:linear-gradient(160deg, rgba(190,245,70,0.11), transparent 60%); }
  .path-card .blob{ position:absolute; width:130px; height:130px; right:-30px; top:-30px; opacity:.5; filter:blur(2px); }
  .path-card h3{ font-size:26px; margin-bottom:14px; }
  .path-card p{ color:var(--ink-dim); font-size:15px; }
  .path-card .go{ margin-top:22px; display:inline-flex; align-items:center; gap:8px; font-family:'Space Mono',monospace; font-size:12.5px; letter-spacing:.04em; text-decoration:none; color:inherit; }
  .path-card .go:hover{ color:var(--lime); }

  /* ---------- PROCESS (lit timeline) ---------- */
  .process{ padding:96px 0; }
  .process-grid{ display:grid; gap:0; margin-top:44px; position:relative; padding-left:28px; }
  .process-grid::before{ content:''; position:absolute; left:5px; top:8px; bottom:8px; width:2px; background:var(--line); }
  .process-grid .rail{ position:absolute; left:5px; top:8px; width:2px; background:var(--lime); height:0; transition:height .6s ease; box-shadow:0 0 10px var(--lime); }
  .step{ display:grid; grid-template-columns:44px 1fr; gap:20px; padding:22px 0; align-items:start; position:relative; }
  .step .dot{ position:absolute; left:-28px; top:26px; width:12px; height:12px; border-radius:50%; background:var(--bg-raised-2); border:2px solid var(--line-strong); transition:background .3s ease, border-color .3s ease, box-shadow .3s ease; }
  .step.in .dot{ background:var(--lime); border-color:var(--lime); box-shadow:0 0 12px var(--lime); }
  .step .n{ font-family:'Fraunces',serif; font-size:26px; color:var(--teal-soft); font-weight:500; opacity:.5; transition:opacity .3s ease; }
  .step.in .n{ opacity:1; }
  .step h4{ font-family:'Archivo'; font-weight:600; font-size:17px; margin:0 0 6px; color:var(--ink); }
  .step p{ margin:0; color:var(--ink-dim); font-size:15px; max-width:60ch; }
  .process-foot{ margin-top:36px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
  .process-foot p{ color:var(--ink-dim); max-width:48ch; font-size:15px; margin:0; }

  /* ---------- MANIFESTO ---------- */
  .manifesto{ padding:96px 0; }
  .manifesto > .wrap > .eyebrow{ justify-content:center; }
  .manifesto > .wrap > h2{ text-align:center; margin:0 auto; }
  .man-grid{ display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:18px; overflow:hidden; margin-top:44px; }
  @media(min-width:860px){ .man-grid{ grid-template-columns:1fr 1fr; } }
  .man-col{ background:var(--bg); padding:40px 36px; position:relative; }
  .man-col.yes{ background:radial-gradient(140% 140% at 0% 0%, rgba(190,245,70,.07), var(--bg) 60%); }
  .man-col.no{ background:var(--bg); filter:saturate(.7); }
  .man-col h3{ font-family:'Space Mono',monospace; font-size:13px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:24px; font-weight:700; }
  .man-col.yes h3{ color:var(--lime); }
  .man-col.no h3{ color:var(--muted); }
  .man-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:16px; }
  .man-col.yes li{ color:var(--ink-dim); font-size:15px; padding-left:24px; position:relative; }
  .man-col.yes li::before{ content:'✓'; position:absolute; left:0; color:var(--lime); }
  .man-col.no li{ color:var(--muted); font-size:15px; padding-left:24px; position:relative; }
  .man-col.no li::before{ content:'×'; position:absolute; left:0; color:var(--muted); }

  /* ---------- IA-MAZING (living brain) ---------- */
  .iamazing{ padding:100px 0; }
  .iamazing .card{
    border:1px solid var(--line-strong); border-radius:24px; padding:56px; position:relative; overflow:hidden;
    display:grid; gap:32px; grid-template-columns:1fr;
  }
  @media(min-width:900px){ .iamazing .card{ grid-template-columns:1.2fr .8fr; align-items:center; } }

  .brain-stage{ position:relative; width:100%; max-width:300px; aspect-ratio:1; justify-self:center; }
  .brain-aura{
    position:absolute; inset:-12%; border-radius:50%;
    background:radial-gradient(circle, rgba(0,186,147,.4), rgba(0,186,147,0) 68%);
    animation:auraPulse 4.5s ease-in-out infinite;
  }
  .brain-ring{ position:absolute; inset:-4%; border-radius:50%; }
  .brain-ring svg{ width:100%; height:100%; animation:spin 20s linear infinite; }
  .brain-video{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:50%;
    -webkit-mask-image:radial-gradient(closest-side, #000 62%, transparent 100%);
    mask-image:radial-gradient(closest-side, #000 62%, transparent 100%);
    mix-blend-mode:screen; filter:saturate(1.15) brightness(1.05);
  }
  .iamazing h2{ font-size:clamp(26px,3.6vw,40px); max-width:18ch; }
  .iamazing p{ color:var(--ink-dim); max-width:60ch; margin-top:18px; font-size:16px; }
  .iamazing .tag{ margin-bottom:16px; }

  /* ---------- FERRI USES (centered breather, own rhythm) ---------- */
  .selfuse{
    padding:170px 0 190px; position:relative; overflow:hidden; text-align:center;
    background:radial-gradient(60% 100% at 50% 0%, rgba(0,186,147,.09), transparent 70%);
  }
  .selfuse::before{
    content:'TRABAJO REAL'; position:absolute; top:38%; left:50%; transform:translate(-50%,-50%);
    font-family:'Fraunces',serif; font-weight:600; font-size:clamp(52px,9vw,130px); letter-spacing:.01em;
    color:transparent; -webkit-text-stroke:1px var(--line); white-space:nowrap; pointer-events:none; z-index:0;
  }
  .selfuse .wrap{ position:relative; z-index:1; }
  .selfuse .eyebrow{ justify-content:center; }
  .selfuse h2{ font-size:clamp(28px,4.2vw,48px); max-width:16ch; margin:20px auto 0; }
  .tags-marquee{
    margin:52px 0; overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .tags-track{ display:flex; gap:14px; width:max-content; animation:testiscroll 22s linear infinite; }
  .tags span{
    font-family:'Space Mono',monospace; font-size:13px; border:1px solid var(--line-strong); padding:10px 20px;
    border-radius:999px; color:var(--ink-dim); background:var(--bg-raised); white-space:nowrap;
  }
  .selfuse p{ color:var(--ink-dim); font-size:16px; max-width:56ch; margin:0 auto; }

  /* ---------- TESTIMONIALS marquee ---------- */
  .testi{ padding:96px 0 96px; overflow:hidden; }
  .testi-head{ margin-bottom:12px; }
  .testi-track-wrap{ margin-top:32px; -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
  .testi-track{ display:flex; gap:20px; width:max-content; animation:testiscroll 42s linear infinite; }
  .testi-track-wrap:hover .testi-track{ animation-play-state:paused; }
  @keyframes testiscroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
  .t-card{
    border:1px solid var(--line); border-radius:18px; padding:30px; display:flex; flex-direction:column; gap:16px;
    background:var(--bg-raised); width:340px; flex:none; position:relative;
  }
  .t-card .quote-mark{ position:absolute; top:12px; right:20px; font-family:'Fraunces',serif; font-size:64px; color:var(--line-strong); line-height:1; }
  .stars{ display:flex; gap:3px; }
  .stars svg{ width:13px; height:13px; fill:var(--lime); }
  .t-card p{ color:var(--ink-dim); font-size:14.5px; margin:0; flex:1; position:relative; z-index:1; }
  .t-who{ display:flex; align-items:center; gap:12px; }
  .avatar{ width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-family:'Space Mono',monospace; font-weight:700; font-size:13px; color:var(--lime-ink); background:var(--grad); flex:none;
    overflow:hidden; border:1px solid var(--line-strong); }
  .avatar img{ width:100%; height:100%; object-fit:cover; }
  .t-who .name{ font-size:14px; color:var(--ink); font-weight:600; }
  .t-who .role{ font-size:12.5px; color:var(--muted); }

  /* ---------- FOUNDER (full-bleed photo dissolving into the page) ---------- */
  .founder{ position:relative; min-height:760px; display:flex; align-items:center; overflow:hidden; padding:80px 0; }
  .founder-bg{ position:absolute; inset:0; z-index:0; }
  .founder-bg img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:32% 14%;
    filter:saturate(.8) brightness(.72) contrast(1.12);
    animation:kenburns 24s ease-in-out infinite alternate;
  }
  @keyframes kenburns{ from{ transform:scale(1);} to{ transform:scale(1.07);} }
  .founder-bg::after{
    content:''; position:absolute; inset:0;
    background:
      linear-gradient(90deg, rgba(10,15,13,.1) 0%, rgba(10,15,13,.6) 40%, var(--bg) 74%, var(--bg) 100%),
      linear-gradient(180deg, var(--bg) 0%, transparent 16%, transparent 80%, var(--bg) 100%);
  }
  .founder-content{ position:relative; z-index:1; margin-left:auto; width:100%; max-width:760px; padding-right:8px; }
  @media(min-width:860px){ .founder-content{ width:60%; } }
  /* mobile: no text-over-image — the photo gets its own block above, text sits below in normal flow */
  @media(max-width:859px){
    .founder{ display:block; min-height:0; padding:0 0 56px; }
    .founder-bg{ position:relative; inset:auto; height:64vw; max-height:380px; min-height:240px; }
    .founder-bg img{ position:absolute; inset:0; animation:none; }
    .founder-bg::after{ background:linear-gradient(180deg, transparent 70%, var(--bg) 100%); }
    .founder-content{ width:100%; max-width:none; margin:0; padding:32px 0 0; }
  }
  .founder h2{ font-size:clamp(26px,3.4vw,40px); text-wrap:wrap; max-width:none; }
  .founder p{ color:var(--ink-dim); max-width:56ch; margin-top:14px; font-size:16px; }
  .founder .badge{ font-family:'Space Mono',monospace; font-size:12px; color:var(--teal-soft); margin-bottom:10px; display:block; }
  .founder .go{ margin-top:24px; display:inline-flex; gap:8px; font-family:'Space Mono',monospace; font-size:12.5px; text-decoration:none; color:var(--ink); }
  .stat-row{ display:flex; gap:38px; margin-top:34px; flex-wrap:wrap; align-items:center; }
  .stat{ display:flex; flex-direction:column; }
  .stat .val{ font-family:'Fraunces',serif; font-size:clamp(44px,5.5vw,62px); color:var(--ink); font-weight:600; font-variant-numeric:tabular-nums; line-height:1; }
  .stat .lbl{ font-family:'Space Mono',monospace; font-size:11px; color:var(--muted); letter-spacing:.04em; margin-top:8px; }
  .stat.award{ flex-direction:row; align-items:center; gap:12px; }
  .stat.award img{ width:76px; height:76px; object-fit:contain; filter:drop-shadow(0 6px 16px rgba(0,0,0,.5)); }
  .stat.award .lbl{ margin-top:0; max-width:11ch; line-height:1.3; }

  /* ---------- FINAL CTA ---------- */
  .final{ padding:130px 0; text-align:center; border-top:1px solid var(--line); position:relative; overflow:hidden; }
  .final .sweep{ position:absolute; inset:-40% -10%; background:radial-gradient(closest-side, rgba(0,186,147,.28), transparent 70%); animation:sweepmove 14s ease-in-out infinite; pointer-events:none; }
  @keyframes sweepmove{ 0%,100%{ transform:translate(-10%,-10%);} 50%{ transform:translate(10%,8%);} }
  .final h2{ font-size:clamp(30px,5vw,54px); max-width:16ch; margin:0 auto; position:relative; }
  .final .cta{ margin-top:36px; padding:16px 34px; font-size:16px; position:relative; box-shadow:0 0 0 0 rgba(190,245,70,.5); animation:ctapulse 2.6s ease-in-out infinite; }
  @keyframes ctapulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(190,245,70,.35);} 50%{ box-shadow:0 0 0 14px rgba(190,245,70,0);} }

  /* ---------- FOOTER ---------- */
  footer{ border-top:1px solid var(--line); padding:56px 0 40px; position:relative; }
  .foot-grid{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:32px; }
  .foot-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .foot-brand img{ height:24px; }
  .foot-brand span{ font-family:'Space Mono',monospace; font-size:13px; }
  footer .tag-lines{ color:var(--ink-dim); font-size:14px; line-height:1.9; max-width:34ch; }
  .foot-col h5{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin:0 0 14px; }
  .foot-col a{ display:block; text-decoration:none; color:var(--ink-dim); font-size:14px; margin-bottom:10px; }
  .foot-col a:hover{ color:var(--ink); }
  .foot-bottom{ margin-top:48px; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:var(--muted); font-family:'Space Mono',monospace; }

  /* ---------- reveal (progressive, off by default) ---------- */
  body.js-reveal .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
  body.js-reveal .reveal.in{ opacity:1; transform:none; }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .marquee-track, .testi-track, .tags-track, .noteboard div, .glow span, .brain-aura, .brain-ring svg, .founder-bg img, .final .sweep, .final .cta, .page-hero-visual .aura, .page-hero-visual img, .story-visual .aura, .story-visual .frame,
    .portrait-aura, .portrait-ring svg, .portrait-orbit, .portrait-chip, .wa-typing span, .corkboard svg.wires path{ animation:none !important; }
    .status i, .eyebrow::before{ animation:none; }
    body.js-reveal .reveal{ opacity:1; transform:none; transition:none; }
    .svc{ transform:none !important; }
    .wa-msg{ opacity:1; transform:none; transition:none; }
    .check-badge circle, .check-badge path{ animation:none !important; stroke-dashoffset:0 !important; }
  }

  /* ---------- PAGE HERO (subpages) ---------- */
  .page-hero{ padding:168px 0 90px; position:relative; overflow:hidden; }
  .page-hero .crumb{ font-family:'Space Mono',monospace; font-size:12px; color:var(--muted); margin-bottom:22px; display:block; }
  .page-hero .crumb a{ color:var(--muted); text-decoration:none; }
  .page-hero .crumb a:hover{ color:var(--ink-dim); }
  .page-hero h1{ font-size:clamp(34px,5.2vw,58px); max-width:18ch; }
  .page-hero .lede{ color:var(--ink-dim); font-size:17px; max-width:62ch; margin-top:22px; }
  .page-hero .cta{ margin-top:30px; }
  .page-hero-grid{ display:grid; grid-template-columns:1fr; gap:36px; align-items:center; }
  @media(min-width:980px){ .page-hero-grid{ grid-template-columns:1.05fr 0.95fr; gap:32px; align-items:stretch; } }
  .page-hero-visual{ position:relative; min-height:0; display:flex; align-items:center; justify-content:center; }
  /* cutout artwork on a transparent background — no card, no glow, no motion, nothing to frame it */
  .page-hero-visual:not(.photo) .aura{ display:none; }
  .page-hero-visual:not(.photo) img{
    display:block; width:100%; max-width:460px; height:auto;
    border-radius:0; border:0; box-shadow:none; mix-blend-mode:normal; filter:none; animation:none;
  }
  @media(min-width:980px){
    .page-hero-visual:not(.photo){ height:100%; }
    .page-hero-visual:not(.photo) img{ max-width:none; width:100%; height:100%; object-fit:contain; }
  }
  /* photo variant (about pages): keeps the framed card treatment */
  .page-hero-visual.photo img{
    max-width:440px; aspect-ratio:4/5; object-fit:cover; border-radius:20px;
    border:1px solid var(--line-strong); mix-blend-mode:normal;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.6)); animation:float2 10s ease-in-out infinite;
  }

  /* ---------- 404 (its own centered spectacle) ---------- */
  .notfound{ min-height:calc(100vh - 86px); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; text-align:center; padding:120px 24px 80px; }
  .notfound::before{
    content:'404'; position:absolute; top:50%; left:50%; transform:translate(-50%,-52%);
    font-family:'Fraunces',serif; font-weight:700; font-size:clamp(160px,32vw,440px); line-height:1;
    color:transparent; -webkit-text-stroke:1px var(--line); pointer-events:none; z-index:0;
  }
  .notfound-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }
  .notfound .story-visual{ margin-bottom:8px; }
  .notfound .story-visual .frame{ max-width:300px; }
  .notfound h1{ font-size:clamp(28px,4.4vw,44px); max-width:18ch; }
  .notfound .lede{ color:var(--ink-dim); font-size:16px; max-width:48ch; margin:18px 0 30px; }

  /* ---------- THANK YOU (success state, its own quiet moment) ---------- */
  .thanks{ min-height:calc(100vh - 86px); display:flex; align-items:center; justify-content:center; padding:120px 24px 80px; text-align:center; }
  .thanks-inner{ display:flex; flex-direction:column; align-items:center; max-width:520px; }
  .check-badge{ width:88px; height:88px; margin-bottom:28px; }
  .check-badge circle{ fill:none; stroke:var(--lime); stroke-width:2; stroke-dasharray:200; stroke-dashoffset:200; animation:drawcircle 1s ease forwards; }
  .check-badge path{ fill:none; stroke:var(--lime); stroke-width:3; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:40; stroke-dashoffset:40; animation:drawcheck .5s ease forwards .8s; }
  @keyframes drawcircle{ to{ stroke-dashoffset:0; } }
  @keyframes drawcheck{ to{ stroke-dashoffset:0; } }
  .thanks h1{ font-size:clamp(28px,4.4vw,42px); }
  .thanks .lede{ color:var(--ink-dim); font-size:16px; margin:18px 0 30px; }

  /* ---------- POLICY (readable legal doc, still designed) ---------- */
  .policy{ padding:150px 0 100px; }
  .policy-grid{ display:grid; gap:56px; }
  @media(min-width:900px){ .policy-grid{ grid-template-columns:220px 1fr; } }
  .policy-toc{ position:sticky; top:110px; align-self:start; display:none; }
  @media(min-width:900px){ .policy-toc{ display:block; } }
  .policy-toc h5{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin:0 0 14px; }
  .policy-toc ol{ list-style:none; margin:0; padding:0; counter-reset:toc; display:grid; gap:10px; }
  .policy-toc li{ counter-increment:toc; }
  .policy-toc a{
    display:flex; gap:8px; text-decoration:none; color:var(--ink-dim); font-size:13px; line-height:1.4;
    transition:color .2s ease;
  }
  .policy-toc a::before{ content:counter(toc); font-family:'Space Mono',monospace; color:var(--teal-soft); flex:none; }
  .policy-toc a:hover{ color:var(--ink); }
  .policy-body h2{ font-size:clamp(26px,3.6vw,38px); max-width:20ch; }
  .policy-body .updated{ font-family:'Space Mono',monospace; font-size:12px; color:var(--muted); margin-top:10px; display:block; }
  .policy-body section{ padding-top:44px; margin-top:44px; border-top:1px solid var(--line); }
  .policy-body section:first-of-type{ border-top:none; margin-top:36px; padding-top:0; }
  .policy-body h3{ font-family:'Fraunces',serif; font-weight:600; font-size:21px; margin-bottom:14px; scroll-margin-top:110px; }
  .policy-body h3 .n{ color:var(--teal-soft); font-family:'Space Mono',monospace; font-size:15px; margin-right:10px; }
  .policy-body p{ color:var(--ink-dim); font-size:15px; margin:0 0 14px; max-width:70ch; }
  .policy-body ul{ margin:0 0 14px; padding-left:20px; color:var(--ink-dim); font-size:15px; display:grid; gap:6px; }
  .policy-body a{ color:var(--teal-soft); }
  .policy-contact{ margin-top:16px; padding:20px 22px; background:var(--bg-raised); border:1px solid var(--line-strong); border-radius:14px; font-size:14.5px; color:var(--ink-dim); }
  .policy-contact strong{ color:var(--ink); }

  /* ---------- CONTACT (split photo / form, its own layout) ---------- */
  .contact-split{ display:grid; grid-template-columns:1fr; }
  @media(min-width:980px){ .contact-split{ grid-template-columns:0.95fr 1.05fr; min-height:calc(100vh - 86px); } }
  .contact-photo{ position:relative; min-height:420px; }
  .contact-photo img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:58% 14%;
    filter:saturate(.88) brightness(.86) contrast(1.06);
  }
  .contact-photo::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,15,13,.1) 0%, transparent 40%, rgba(10,15,13,.85) 100%);
  }
  @media(min-width:980px){
    .contact-photo::after{
      background:
        linear-gradient(90deg, transparent 55%, var(--bg) 100%),
        linear-gradient(180deg, rgba(10,15,13,.15) 0%, transparent 35%, rgba(10,15,13,.75) 100%);
    }
  }
  .contact-photo .cap{ position:relative; z-index:1; height:100%; min-height:420px; display:flex; flex-direction:column; justify-content:flex-end; padding:44px 40px 48px; }
  .contact-photo .cap .eyebrow{ margin-bottom:16px; }
  .contact-photo .cap .eyebrow::before{ box-shadow:0 0 0 3px rgba(190,245,70,.35); }
  .contact-photo .cap h1{ font-size:clamp(28px,4vw,42px); max-width:13ch; color:#fff; }
  .contact-photo .cap p{ color:rgba(255,255,255,.8); margin-top:14px; max-width:36ch; font-size:15px; }

  .contact-form-panel{ padding:64px 28px; display:flex; align-items:center; background:var(--bg); }
  @media(min-width:600px){ .contact-form-panel{ padding:72px 48px; } }
  .contact-form-panel .inner{ max-width:480px; width:100%; margin:0 auto; }
  .contact-form-panel .lede{ color:var(--ink-dim); font-size:15px; margin-bottom:30px; }

  .f-field{ margin-bottom:18px; }
  .f-field label.f-label{ display:block; font-family:'Space Mono',monospace; font-size:11px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase; margin-bottom:8px; }
  .f-field input[type="text"], .f-field input[type="email"], .f-field textarea{
    width:100%; background:var(--bg-raised); border:1px solid var(--line-strong); border-radius:10px;
    padding:12px 14px; color:var(--ink); font-family:'Archivo',sans-serif; font-size:14.5px; resize:vertical;
    transition:border-color .2s ease, box-shadow .2s ease;
  }
  .f-field input:focus, .f-field textarea:focus{ outline:none; border-color:var(--teal-soft); box-shadow:0 0 0 3px rgba(63,219,195,.18); }
  .f-field textarea{ min-height:100px; }

  .chip-select{ display:flex; flex-wrap:wrap; gap:9px; }
  .chip-select input{ position:absolute; opacity:0; width:1px; height:1px; }
  .chip-select label{
    font-family:'Space Mono',monospace; font-size:12px; color:var(--ink-dim); border:1px solid var(--line-strong);
    padding:9px 14px; border-radius:999px; cursor:pointer; transition:border-color .2s ease, background .2s ease, color .2s ease;
  }
  .chip-select input:checked + label{ background:var(--lime); color:var(--lime-ink); border-color:var(--lime); font-weight:600; }
  .chip-select input:focus-visible + label{ outline:2px solid var(--teal-soft); outline-offset:2px; }

  .f-submit{ margin-top:10px; width:100%; justify-content:center; }
  .f-note{ margin-top:16px; font-size:12px; color:var(--muted); text-align:center; }
  .f-error{
    margin-bottom:22px; padding:13px 16px; border-radius:10px; font-size:13.5px; line-height:1.5;
    background:rgba(220,80,80,.1); border:1px solid rgba(220,80,80,.4); color:#f3b3b3;
    scroll-margin-top:110px;
  }
  .f-error a{ color:inherit; text-decoration:underline; }
  .f-hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

  /* ---------- STORY VISUAL (framed illustration, clean & integrated) ---------- */
  .story-grid{ display:grid; gap:40px; align-items:center; }
  @media(min-width:980px){ .story-grid{ grid-template-columns:0.85fr 1.15fr; gap:56px; } }
  .story-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
  .story-visual .aura{
    position:absolute; inset:6%; border-radius:28px;
    background:radial-gradient(circle, rgba(0,186,147,.3), transparent 70%);
    filter:blur(24px); animation:auraPulse 5s ease-in-out infinite;
  }
  .story-visual .frame{
    position:relative; z-index:1; width:100%; max-width:400px; padding:16px;
    background:var(--bg-raised); border:1px solid var(--line-strong); border-radius:22px;
    box-shadow:0 40px 80px -28px rgba(0,0,0,.75);
    animation:float1 11s ease-in-out infinite;
  }
  .story-visual .frame img{ width:100%; display:block; border-radius:14px; }

  /* ---------- CHECKLIST (para quién es / qué construimos) ---------- */
  .checklist{ list-style:none; margin:22px 0 0; padding:0; display:grid; gap:14px; max-width:640px; }
  .checklist li{ display:flex; gap:12px; align-items:flex-start; color:var(--ink-dim); font-size:15.5px; }
  .checklist li::before{ content:'✓'; color:var(--lime); flex:none; font-family:'Space Mono',monospace; margin-top:1px; }

  /* ---------- TWO COL (text | text, generic) ---------- */
  .split{ display:grid; gap:40px; }
  @media(min-width:900px){ .split{ grid-template-columns:1fr 1fr; } }
  .split h2{ font-size:clamp(24px,3.2vw,34px); }
  .split p{ color:var(--ink-dim); font-size:15.5px; margin-top:14px; }
