
  :root{
    --bg:#0A0E0D;
    --bg-elev:#0F1413;
    --bg-card:#111817;
    --line:rgba(255,255,255,0.08);
    --line-strong:rgba(255,255,255,0.14);
    --ink:#F2F5F4;
    --ink-muted:#9BA3A1;
    --ink-dim:#6B7370;

    --light-bg:#F4F1EA;
    --light-bg-2:#EDE8DC;
    --light-card:#FFFFFF;
    --light-line:rgba(10,14,13,0.09);
    --light-line-strong:rgba(10,14,13,0.16);
    --light-ink:#0A0E0D;
    --light-ink-muted:#5B625F;
    --light-ink-dim:#8A918E;

    --teal:#2DD4BF;
    --teal-bright:#5EEAD4;
    --teal-deep:#0D9488;
    --teal-glow:rgba(45,212,191,0.18);

    --radius:18px;
    --radius-sm:12px;
    --radius-lg:28px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--ink);
    font-family:'Geist',-apple-system,BlinkMacSystemFont,sans-serif;
    font-feature-settings:"ss01","cv11";
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    line-height:1.5;
  }
  ::selection{background:var(--teal);color:#061211;}

  body::before{
    content:"";
    position:fixed;inset:0;
    background:
      radial-gradient(900px 600px at 85% -10%,rgba(45,212,191,0.12),transparent 60%),
      radial-gradient(700px 500px at 10% 20%,rgba(13,148,136,0.08),transparent 55%);
    pointer-events:none;
    z-index:0;
  }

  .container{
    max-width:1280px;
    margin:0 auto;
    padding:0 32px;
    position:relative;
    z-index:2;
  }
  @media(max-width:768px){.container{padding:0 20px;}}

  /* NAV */
  .nav{position:fixed;top:16px;left:0;right:0;z-index:100;transition:top .3s;}
  .nav-inner{
    max-width:1280px;margin:0 auto;
    padding:12px 16px 12px 20px;
    display:flex;align-items:center;justify-content:space-between;
    background:rgba(15,20,19,0.72);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid var(--line);
    border-radius:999px;
  }
  .logo{display:flex;align-items:center;gap:10px;font-weight:700;font-size:15px;letter-spacing:-0.01em;color:var(--ink);text-decoration:none;}
  .logo-mark{
    width:28px;height:28px;
    border:1.5px solid var(--teal);
    border-radius:8px;
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,rgba(45,212,191,0.15),transparent);
    position:relative;overflow:hidden;
  }
  .logo-mark::before{
    content:"";position:absolute;inset:-2px;
    background:conic-gradient(from 0deg,transparent,var(--teal-glow),transparent);
    animation:spin 4s linear infinite;
  }
  .logo-mark svg{position:relative;z-index:1;}
  @keyframes spin{to{transform:rotate(360deg);}}

  .nav-links{display:flex;gap:4px;}
  .nav-links a{
    color:var(--ink-muted);text-decoration:none;
    font-size:16px;font-weight:500;
    padding:8px 14px;border-radius:999px;
    transition:all .2s;
  }
  .nav-links a:hover{color:var(--ink);background:rgba(255,255,255,0.04);}
  @media(max-width:860px){.nav-links{display:none;}}

  /* HAMBURGER */
  .nav-hamburger{
    display:none;
    flex-direction:column;justify-content:center;align-items:center;
    width:36px;height:36px;gap:5px;cursor:pointer;
    background:transparent;border:1px solid var(--line-strong);
    border-radius:8px;padding:0;
  }
  .nav-hamburger span{
    display:block;width:16px;height:1.5px;
    background:var(--ink);border-radius:2px;
    transition:all .3s;
  }
  .nav-hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
  .nav-hamburger.open span:nth-child(2){opacity:0;}
  .nav-hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}
  @media(max-width:860px){
    .nav-hamburger{display:flex;}
  }

  /* MOBILE NAV DRAWER */
  .mobile-nav{
    display:none;
    position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(10,14,13,0.97);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    z-index:99;
    flex-direction:column;align-items:center;justify-content:center;
    gap:8px;
    padding:80px 32px 40px;
  }
  .mobile-nav.open{display:flex;}
  .mobile-nav a{
    color:var(--ink);text-decoration:none;
    font-size:28px;font-weight:600;
    letter-spacing:-0.025em;
    padding:12px 0;width:100%;text-align:center;
    border-bottom:1px solid var(--line);
    transition:color .2s;
  }
  .mobile-nav a:last-of-type{border-bottom:none;}
  .mobile-nav a:hover{color:var(--teal);}
  .mobile-nav-ctas{
    display:flex;flex-direction:column;gap:12px;
    width:100%;margin-top:24px;
  }
  .mobile-nav-ctas .btn{justify-content:center;width:100%;}

  .nav-cta{display:flex;gap:8px;align-items:center;}
  @media(max-width:480px){
    .nav-cta .btn-ghost{display:none;}
  }
  .btn{
    display:inline-flex;align-items:center;gap:8px;
    padding:10px 18px;border-radius:999px;
    font-size:13.5px;font-weight:600;
    text-decoration:none;transition:all .2s;
    cursor:pointer;border:none;font-family:inherit;white-space:nowrap;
  }
  .btn-ghost{color:var(--ink);background:transparent;border:1px solid var(--line-strong);}
  .btn-ghost:hover{background:rgba(255,255,255,0.05);border-color:var(--ink-dim);}
  .btn-primary{color:#061211;background:var(--teal);}
  .btn-primary:hover{background:var(--teal-bright);box-shadow:0 0 0 6px rgba(45,212,191,0.12);transform:translateY(-1px);}
  .btn-primary svg{transition:transform .2s;}
  .btn-primary:hover svg{transform:translate(2px,-2px);}
  .btn-lg{padding:14px 24px;font-size:14.5px;}
  .light .btn-ghost{color:var(--light-ink);border-color:var(--light-line-strong);}
  .light .btn-ghost:hover{background:rgba(10,14,13,0.04);border-color:var(--light-ink-dim);}

  /* HERO */
  .hero{
    padding:180px 0 140px;
    position:relative;
    text-align:center;
  }
  @media(max-width:768px){
    .hero{padding:140px 0 80px;}
  }
  @media(max-width:480px){
    .hero{padding:120px 0 60px;}
  }
  .hero .container{max-width:1100px;}

  h1.hero-title{
    font-size:clamp(46px,8vw,104px);
    line-height:0.96;
    letter-spacing:-0.035em;
    font-weight:600;
    margin-bottom:32px;
  }
  h1.hero-title .serif{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-weight:400;
    letter-spacing:-0.02em;
    color:var(--teal-bright);
  }
  h1.hero-title .strike{position:relative;color:var(--ink-dim);}
  h1.hero-title .strike::after{
    content:"";
    position:absolute;left:-2%;right:-2%;
    top:52%;height:4px;
    background:var(--teal);
    transform:rotate(-2deg);
    border-radius:2px;
  }

  .hero-sub{
    font-size:clamp(17px,1.6vw,21px);
    color:var(--ink-muted);
    max-width:680px;margin:0 auto 48px;
    line-height:1.55;
  }
  .hero-ctas{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;}
  @media(max-width:480px){
    .hero-ctas{flex-direction:column;align-items:center;}
    .hero-ctas .btn{width:100%;justify-content:center;max-width:320px;}
  }

  .hero-orbit{
    position:absolute;top:50%;left:50%;
    transform:translate(-50%,-50%);
    width:1100px;height:1100px;
    border-radius:50%;
    border:1px solid var(--line);
    pointer-events:none;z-index:1;
    opacity:0.5;
  }
  .hero-orbit::before,.hero-orbit::after{
    content:"";position:absolute;inset:0;
    border-radius:50%;border:1px solid var(--line);
  }
  .hero-orbit::before{inset:120px;}
  .hero-orbit::after{inset:240px;}
  .hero-orbit-dot{
    position:absolute;width:10px;height:10px;
    border-radius:50%;background:var(--teal);
    box-shadow:0 0 20px var(--teal);
    top:0;left:50%;
    transform:translate(-50%,-50%);
    animation:orbit 20s linear infinite;
    transform-origin:50% 550px;
  }
  @keyframes orbit{to{transform:rotate(360deg) translate(-50%,-50%);}}
  @media(max-width:900px){
    .hero-orbit{width:700px;height:700px;}
    .hero-orbit::before{inset:80px;}
    .hero-orbit::after{inset:160px;}
    .hero-orbit-dot{transform-origin:50% 350px;}
  }

  /* MARQUEE */
  .marquee-section{
    padding:48px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    overflow:hidden;
  }
  @media(max-width:480px){.marquee-section{padding:36px 0;}}
  .marquee-label{
    text-align:center;font-size:11.5px;
    color:var(--ink-dim);
    text-transform:uppercase;letter-spacing:0.16em;
    margin-bottom:28px;font-weight:500;
  }
  .marquee{
    display:flex;overflow:hidden;
    mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 88%,transparent 100%);
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 88%,transparent 100%);
  }
  .marquee-track{
    display:flex;gap:72px;padding-right:72px;
    animation:scroll 34s linear infinite;
    flex-shrink:0;
  }
  @keyframes scroll{to{transform:translateX(calc(-100% - 72px));}}
  .logo-item{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-size:28px;
    color:var(--ink-muted);white-space:nowrap;
    display:flex;align-items:center;gap:12px;
  }
  .logo-item::before{
    content:"";width:6px;height:6px;
    background:var(--teal);border-radius:50%;
    opacity:0.6;
  }

  /* SECTION */
  section{position:relative;z-index:2;}
  .sec{padding:120px 0;}
  @media(max-width:768px){.sec{padding:80px 0;}}

  .light{
    background:var(--light-bg);
    color:var(--light-ink);
    position:relative;
  }
  .light::before{
    content:"";position:absolute;inset:0;
    background-image:radial-gradient(circle at 1px 1px,rgba(10,14,13,0.07) 1px,transparent 0);
    background-size:24px 24px;opacity:0.5;pointer-events:none;
  }
  .light > *{position:relative;z-index:1;}

  .sec-label{
    display:inline-flex;align-items:center;gap:8px;
    font-family:'Geist Mono',monospace;
    font-size:11.5px;color:var(--teal);
    text-transform:uppercase;letter-spacing:0.14em;
    margin-bottom:20px;font-weight:500;
  }
  .sec-label::before{content:"";width:24px;height:1px;background:var(--teal);}
  .light .sec-label{color:var(--teal-deep);}
  .light .sec-label::before{background:var(--teal-deep);}

  .sec-title{
    font-size:clamp(34px,5vw,58px);
    line-height:1.02;letter-spacing:-0.03em;
    font-weight:600;max-width:900px;margin-bottom:20px;
  }
  .sec-title .serif{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-weight:400;
    color:var(--teal-bright);
  }
  .light .sec-title .serif{color:var(--teal-deep);}

  .sec-sub{
    font-size:17px;color:var(--ink-muted);
    max-width:640px;line-height:1.55;
  }
  .light .sec-sub{color:var(--light-ink-muted);}
  .sec-head{margin-bottom:56px;}

  /* HOW WE THINK — 2 COLS LIGHT */
  .think-grid{
    display:grid;grid-template-columns:1fr 1fr;
    gap:80px;align-items:start;
  }
  @media(max-width:960px){.think-grid{grid-template-columns:1fr;gap:48px;}}

  .think-left{position:sticky;top:120px;}
  @media(max-width:960px){.think-left{position:static;}}

  .think-title{
    font-size:clamp(32px,4.2vw,52px);
    line-height:1.02;letter-spacing:-0.03em;
    font-weight:600;margin-bottom:24px;
  }
  .think-title .serif{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-weight:400;
    color:var(--teal-deep);
  }
  .think-sub{
    font-size:17px;color:var(--light-ink-muted);
    line-height:1.6;max-width:480px;margin-bottom:32px;
  }
  .think-quote{
    padding:24px 28px;
    background:var(--light-card);
    border:1px solid var(--light-line);
    border-radius:var(--radius);
    position:relative;max-width:480px;
  }
  @media(max-width:960px){.think-quote{max-width:100%;}}
  .think-quote::before{
    content:"";position:absolute;
    left:0;top:16px;bottom:16px;
    width:3px;background:var(--teal-deep);
    border-radius:3px;
  }
  .think-quote p{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-size:18px;
    line-height:1.4;color:var(--light-ink);
    padding-left:20px;letter-spacing:-0.005em;
  }

  .think-right{display:flex;flex-direction:column;gap:14px;}
  .think-item{
    padding:28px;
    background:var(--light-card);
    border:1px solid var(--light-line);
    border-radius:var(--radius);
    display:grid;grid-template-columns:auto 1fr;
    gap:20px;align-items:start;
    transition:all .3s;
  }
  .think-item:hover{
    border-color:var(--teal-deep);
    transform:translateX(4px);
  }
  .think-num{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-size:32px;
    color:var(--teal-deep);line-height:1;
    padding-top:2px;min-width:40px;
  }
  .think-item h3{
    font-size:18px;font-weight:600;
    letter-spacing:-0.015em;
    margin-bottom:6px;line-height:1.25;
  }
  .think-item p{
    font-size:14.5px;color:var(--light-ink-muted);
    line-height:1.55;
  }

  /* SERVICES — PILL TABS + 2-COL PANELS */
  .svc-tabs{
    display:flex;flex-wrap:wrap;gap:10px;
    justify-content:center;
    margin-bottom:48px;
  }
  @media(max-width:600px){
    .svc-tabs{
      flex-wrap:nowrap;
      overflow-x:auto;
      justify-content:flex-start;
      padding-bottom:8px;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
    }
    .svc-tabs::-webkit-scrollbar{display:none;}
    .svc-tab{flex-shrink:0;}
  }
  .svc-tab{
    padding:11px 22px;
    border-radius:100px;
    border:1.5px solid var(--line-strong);
    background:transparent;
    color:var(--ink-muted);
    font-family:inherit;
    font-size:14px;font-weight:600;letter-spacing:-0.005em;
    cursor:pointer;
    transition:all .2s;
  }
  .svc-tab:hover{
    border-color:var(--teal);
    color:var(--teal-bright);
  }
  .svc-tab.active{
    border-color:var(--teal);
    background:rgba(45,212,191,0.12);
    color:var(--teal-bright);
  }

  .svc-panel{display:none;}
  .svc-panel.active{
    display:block;
    animation:fadeUp .45s ease;
  }
  @keyframes fadeUp{
    from{opacity:0;transform:translateY(12px);}
    to{opacity:1;transform:translateY(0);}
  }


  .svc-hero{
    background:
      linear-gradient(135deg,rgba(45,212,191,0.12) 0%,rgba(94,234,212,0.04) 100%);
    border:1px solid rgba(45,212,191,0.2);
    border-radius:var(--radius-lg);
    padding:44px 40px;
    display:flex;flex-direction:column;justify-content:space-between;
    grid-row:span 2;
    position:relative;
    overflow:hidden;
  }
  @media(max-width:860px){
    .svc-hero{grid-row:span 1;padding:32px 24px;}
  }
  @media(max-width:480px){
    .svc-hero{padding:28px 20px;}
  }
  .svc-hero::before{
    content:"";
    position:absolute;
    top:-60px;right:-60px;
    width:280px;height:280px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(45,212,191,0.2),transparent 70%);
    pointer-events:none;
  }
  .svc-hero > *{position:relative;z-index:1;}
  .svc-badge{
    display:inline-block;
    padding:5px 12px;
    border-radius:100px;
    font-family:'Geist Mono',monospace;
    font-size:10.5px;font-weight:600;
    letter-spacing:0.12em;text-transform:uppercase;
    background:rgba(45,212,191,0.15);
    color:var(--teal-bright);
    border:1px solid rgba(45,212,191,0.3);
    margin-bottom:20px;
  }
  .svc-hero h3{
    font-size:clamp(32px,3.6vw,44px);
    font-weight:600;
    letter-spacing:-0.025em;
    line-height:1.05;
    margin-bottom:18px;
  }
  .svc-hero h3 .serif{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-weight:400;
    color:var(--teal-bright);
  }
  .svc-hero p{
    color:var(--ink-muted);
    font-size:15.5px;
    line-height:1.65;
    margin-bottom:28px;
  }
  .svc-tag-strip{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px;}
  .svc-tag{
    padding:6px 14px;
    border-radius:100px;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--line);
    font-size:12px;font-weight:500;
    color:var(--ink-muted);
  }
  .svc-hero-cta{
    align-self:flex-start;
  }
  @media(max-width:480px){}

  /* WHY NOT BUILD IN-HOUSE */
  .why-compare{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:56px;
  }
  @media(max-width:768px){.why-compare{grid-template-columns:1fr;}}

  .compare-card{
    padding:40px 36px;
    border-radius:var(--radius-lg);
    border:1px solid var(--light-line);
    background:var(--light-card);
    position:relative;
  }
  @media(max-width:480px){.compare-card{padding:28px 20px;}}
  .compare-card.bad{
    background:rgba(10,14,13,0.03);
  }
  .compare-card.good{
    background:linear-gradient(180deg,#FFFFFF,rgba(45,212,191,0.04));
    border-color:rgba(13,148,136,0.25);
    box-shadow:0 20px 60px -30px rgba(13,148,136,0.3);
  }
  .compare-label{
    display:inline-block;
    padding:5px 14px;
    border-radius:100px;
    font-family:'Geist Mono',monospace;
    font-size:10.5px;font-weight:600;
    letter-spacing:0.14em;text-transform:uppercase;
    margin-bottom:24px;
  }
  .compare-label.bad{
    background:rgba(10,14,13,0.06);
    color:var(--light-ink-muted);
    border:1px solid var(--light-line);
  }
  .compare-label.good{
    background:rgba(13,148,136,0.12);
    color:var(--teal-deep);
    border:1px solid rgba(13,148,136,0.3);
  }
  .compare-list{
    display:flex;flex-direction:column;gap:16px;
    list-style:none;padding:0;margin:0;
  }
  .compare-item{
    display:flex;align-items:flex-start;gap:12px;
    font-size:15px;
    line-height:1.5;
    color:var(--light-ink-muted);
  }
  .compare-item svg{
    width:20px;height:20px;flex-shrink:0;margin-top:1px;
  }
  .compare-item.neg svg{color:var(--light-ink-dim);}
  .compare-item.pos svg{color:var(--teal-deep);}
  .compare-item.pos{color:var(--light-ink);font-weight:500;}

  /* PROCESS HORIZONTAL LIGHT */
  .process-horizontal{
    display:grid;grid-template-columns:repeat(5,1fr);
    gap:0;margin-top:60px;position:relative;
  }
  .process-horizontal::before{
    content:"";position:absolute;
    top:32px;left:6%;right:6%;height:1px;
    background:repeating-linear-gradient(90deg,var(--teal-deep) 0 8px,transparent 8px 16px);
    opacity:0.5;z-index:0;
  }
  @media(max-width:1000px){
    .process-horizontal{grid-template-columns:repeat(2,1fr);gap:24px;}
    .process-horizontal::before{display:none;}
  }
  @media(max-width:560px){
    .process-horizontal{grid-template-columns:1fr;}
  }

  .pstep{position:relative;z-index:1;padding:0 16px;text-align:left;}
  @media(max-width:1000px){.pstep{padding:0;}}
  @media(max-width:560px){.pstep{padding:0;}}
  .pstep-circle{
    width:64px;height:64px;border-radius:50%;
    background:var(--light-card);
    border:1.5px solid var(--teal-deep);
    display:flex;align-items:center;justify-content:center;
    font-family:'Instrument Serif',serif;
    font-style:italic;font-size:26px;
    color:var(--teal-deep);
    margin-bottom:24px;transition:all .3s;position:relative;
  }
  .pstep:hover .pstep-circle{
    background:var(--teal-deep);color:var(--light-card);
    transform:scale(1.05);
  }
  .pstep-label{
    font-family:'Geist Mono',monospace;
    font-size:10.5px;letter-spacing:0.14em;
    color:var(--light-ink-dim);
    text-transform:uppercase;margin-bottom:10px;
  }
  .pstep h4{
    font-size:19px;font-weight:600;
    letter-spacing:-0.015em;
    margin-bottom:10px;line-height:1.2;
  }
  .pstep p{
    font-size:14px;color:var(--light-ink-muted);
    line-height:1.55;
  }

  /* TESTIMONIAL */
  .testimonial{
    padding:80px 48px;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    background:
      radial-gradient(800px 400px at 50% 0%,rgba(45,212,191,0.08),transparent 60%),
      var(--bg-card);
    text-align:center;position:relative;overflow:hidden;
  }
  .testimonial::before{
    content:"\201C";
    font-family:'Instrument Serif',serif;
    position:absolute;top:-40px;left:30px;
    font-size:240px;color:var(--teal);
    opacity:0.12;line-height:1;
  }
  .testimonial blockquote{
    font-family:'Instrument Serif',serif;
    font-size:clamp(20px,3.5vw,38px);
    line-height:1.25;font-style:italic;
    max-width:900px;margin:0 auto 32px;
    letter-spacing:-0.015em;position:relative;
  }
  .testimonial-author{display:inline-flex;align-items:center;gap:14px;}
  .ta-avatar{
    width:48px;height:48px;border-radius:50%;
    background:linear-gradient(135deg,var(--teal),var(--teal-deep));
    display:flex;align-items:center;justify-content:center;
    color:#061211;font-weight:700;
  }
  .ta-info{text-align:left;}
  .ta-info strong{display:block;font-weight:600;font-size:14.5px;}
  .ta-info span{color:var(--ink-muted);font-size:13px;}
  @media(max-width:640px){.testimonial{padding:60px 24px;}}

  /* FAQ LIGHT */
  .faq{max-width:860px;margin:0 auto;}
  .faq-item{
    border-bottom:1px solid var(--light-line);
    padding:24px 0;
  }
  .faq-item summary{
    display:flex;align-items:center;justify-content:space-between;
    cursor:pointer;list-style:none;
    font-size:18px;font-weight:500;
    letter-spacing:-0.01em;gap:20px;
    color:var(--light-ink);
  }
  @media(max-width:480px){
    .faq-item summary{font-size:15px;gap:12px;}
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary .plus{
    width:28px;height:28px;border-radius:50%;
    border:1px solid var(--light-line-strong);
    display:flex;align-items:center;justify-content:center;
    transition:all .3s;flex-shrink:0;
    color:var(--light-ink-muted);
  }
  .faq-item[open] summary .plus{
    background:var(--teal-deep);border-color:var(--teal-deep);
    color:#fff;transform:rotate(45deg);
  }
  .faq-item p{
    color:var(--light-ink-muted);
    margin-top:16px;font-size:15px;
    line-height:1.6;max-width:720px;
  }

  /* FINAL CTA */
  .final-cta{
    padding:100px 48px;
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    background:
      radial-gradient(600px 400px at 20% 30%,rgba(45,212,191,0.12),transparent 60%),
      radial-gradient(500px 400px at 80% 70%,rgba(13,148,136,0.08),transparent 60%),
      var(--bg-card);
    text-align:center;position:relative;overflow:hidden;
  }
  .final-cta::before{
    content:"";position:absolute;
    top:-2px;left:-2px;right:-2px;height:2px;
    background:linear-gradient(90deg,transparent,var(--teal),transparent);
    animation:shine 4s ease infinite;
  }
  @keyframes shine{0%,100%{opacity:0.4;}50%{opacity:1;}}
  .final-cta h2{
    font-size:clamp(34px,5vw,60px);
    line-height:1.02;letter-spacing:-0.03em;
    font-weight:600;margin-bottom:16px;
    max-width:820px;margin-left:auto;margin-right:auto;
  }
  .final-cta h2 .serif{
    font-family:'Instrument Serif',serif;
    font-style:italic;font-weight:400;
    color:var(--teal-bright);
  }
  .final-cta p{
    font-size:17px;color:var(--ink-muted);
    max-width:560px;margin:0 auto 40px;
    line-height:1.55;
  }
  @media(max-width:640px){.final-cta{padding:60px 24px;}}
  @media(max-width:480px){
    .final-cta > div[style]{flex-direction:column !important;align-items:center;}
    .final-cta > div[style] .btn{width:100%;max-width:320px;justify-content:center;}
  }

  /* FOOTER */
  footer{
    padding:80px 0 40px;
    border-top:1px solid var(--line);
    margin-top:120px;
  }
  @media(max-width:768px){footer{margin-top:60px;padding:60px 0 32px;}}
  .foot-top{
    display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;margin-bottom:60px;
  }
  @media(max-width:800px){.foot-top{grid-template-columns:1fr 1fr;gap:40px;}}
  @media(max-width:480px){.foot-top{grid-template-columns:1fr;gap:32px;}}
  .foot-brand p{
    color:var(--ink-muted);font-size:14.5px;
    line-height:1.55;max-width:340px;margin:20px 0;
  }
  .foot-col h5{
    font-size:12px;color:var(--ink-dim);
    text-transform:uppercase;letter-spacing:0.14em;
    font-weight:600;margin-bottom:20px;
  }
  .foot-col a{
    display:block;color:var(--ink-muted);
    text-decoration:none;font-size:14px;
    padding:6px 0;transition:color .2s;
  }
  .foot-col a:hover{color:var(--teal);}
  .foot-bottom{
    padding-top:32px;border-top:1px solid var(--line);
    display:flex;justify-content:space-between;align-items:center;
    flex-wrap:wrap;gap:20px;
    font-size:13px;color:var(--ink-dim);
  }
  @media(max-width:480px){
    .foot-bottom{flex-direction:column;align-items:flex-start;gap:16px;}
  }
  .foot-bottom .socials{display:flex;gap:10px;}
  .foot-bottom .socials a{
    width:34px;height:34px;
    border:1px solid var(--line);border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--ink-muted);transition:all .2s;
  }
  .foot-bottom .socials a:hover{border-color:var(--teal);color:var(--teal);}

  .giant-mark{
    font-family:'Instrument Serif',serif;
    font-style:italic;
    font-size:clamp(120px,22vw,260px);
    line-height:0.85;text-align:center;
    letter-spacing:-0.04em;
    background:linear-gradient(180deg,var(--teal) 0%,transparent 85%);
    -webkit-background-clip:text;
    background-clip:text;color:transparent;
    margin-top:40px;user-select:none;opacity:0.7;
  }

  .reveal{
    opacity:1;transform:translateY(0);
    transition:opacity .8s ease,transform .8s ease;
  }
  @media(prefers-reduced-motion:no-preference){
    .reveal{opacity:0;transform:translateY(20px);}
    .reveal.in{opacity:1;transform:translateY(0);}
  }

/* === CONTACT MODAL === */
.otb-modal{
  display:none;
  position:fixed;inset:0;z-index:200;
  background:rgba(10,14,13,0.88);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  align-items:center;justify-content:center;
  padding:24px;
  overflow-y:auto;
}
.otb-modal.open{display:flex;animation:fadeUp .3s ease;}

.otb-modal-inner{
  background:var(--bg-card);
  border:1px solid var(--line-strong);
  border-radius:var(--radius-lg);
  padding:48px;
  width:100%;max-width:560px;
  position:relative;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.6);
  margin:auto;
}
@media(max-width:600px){.otb-modal-inner{padding:32px 24px;}}

.otb-modal-close{
  position:absolute;top:20px;right:20px;
  width:36px;height:36px;border-radius:999px;
  background:transparent;border:1px solid var(--line-strong);
  color:var(--ink-muted);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.otb-modal-close:hover{background:rgba(255,255,255,0.06);color:var(--ink);}

.otb-modal-header{margin-bottom:28px;}
.otb-modal-title{
  font-size:clamp(28px,4vw,40px);
  font-weight:600;letter-spacing:-0.03em;
  line-height:1.05;margin-bottom:10px;
}
.otb-modal-title .serif{
  font-family:'Instrument Serif',serif;
  font-style:italic;font-weight:400;
  color:var(--teal-bright);
}
.otb-modal-sub{
  font-size:15px;color:var(--ink-muted);
  margin-bottom:0;line-height:1.55;
}

/* Override WPForms CSS variables at the modal scope */
.otb-modal .wpforms-container-full,
.otb-modal #wpforms-9,
.otb-modal #wpforms-form-9{
  --wpforms-label-color:#F2F5F4;
  --wpforms-label-sublabel-color:#9BA3A1;
  --wpforms-label-error-color:#FCA5A5;
  --wpforms-field-background-color:#0F1413;
  --wpforms-field-border-color:rgba(255,255,255,0.14);
  --wpforms-field-text-color:#F2F5F4;
  --wpforms-field-menu-color:#0F1413;
  --wpforms-field-border-radius:12;
  --wpforms-button-background-color:#2DD4BF;
  --wpforms-button-background-color-alt:#5EEAD4;
  --wpforms-button-text-color:#061211;
  --wpforms-button-border-radius:999;
  --wpforms-button-border-style:none;
}

/* Labels — main and sublabels (First / Last on name fields) */
.otb-modal .wpforms-field label:not(.wpforms-field-sublabel),
.otb-modal .wpforms-field .wpforms-label-hide + .wpforms-field-row label{
  color:#F2F5F4 !important;
  font-size:13px !important;font-weight:500 !important;
  letter-spacing:0.02em;margin-bottom:8px;display:block;
}
.otb-modal .wpforms-field .wpforms-field-sublabel{
  color:#9BA3A1 !important;
  font-size:11.5px !important;font-weight:500 !important;
  margin-top:6px;
}

/* All text inputs, email, number, textarea, select */
.otb-modal .wpforms-field input[type="text"],
.otb-modal .wpforms-field input[type="email"],
.otb-modal .wpforms-field input[type="number"],
.otb-modal .wpforms-field input[type="tel"],
.otb-modal .wpforms-field input[type="url"],
.otb-modal .wpforms-field-name .wpforms-field-row-block input[type="text"],
.otb-modal .wpforms-field-email .wpforms-field-row input[type="email"],
.otb-modal .wpforms-field-number input[type="number"],
.otb-modal .wpforms-field-phone input[type="tel"],
.otb-modal .wpforms-field-textarea textarea,
.otb-modal .wpforms-field textarea,
.otb-modal .wpforms-field select{
  background:#0F1413 !important;
  border:1px solid rgba(255,255,255,0.14) !important;
  border-radius:12px !important;
  color:#F2F5F4 !important;
  font-family:inherit !important;
  font-size:14.5px !important;
  padding:12px 16px !important;
  width:100% !important;
  transition:border-color .2s,box-shadow .2s;
  -webkit-appearance:none;appearance:none;
  box-shadow:none !important;
}
.otb-modal .wpforms-field input[type="text"]:focus,
.otb-modal .wpforms-field input[type="email"]:focus,
.otb-modal .wpforms-field input[type="number"]:focus,
.otb-modal .wpforms-field input[type="tel"]:focus,
.otb-modal .wpforms-field-name .wpforms-field-row-block input[type="text"]:focus,
.otb-modal .wpforms-field-email .wpforms-field-row input[type="email"]:focus,
.otb-modal .wpforms-field-number input[type="number"]:focus,
.otb-modal .wpforms-field-phone input[type="tel"]:focus,
.otb-modal .wpforms-field-textarea textarea:focus,
.otb-modal .wpforms-field textarea:focus,
.otb-modal .wpforms-field select:focus{
  outline:none !important;
  border-color:#2DD4BF !important;
  box-shadow:0 0 0 3px rgba(45,212,191,0.18) !important;
}
.otb-modal .wpforms-field input::placeholder,
.otb-modal .wpforms-field textarea::placeholder{color:#6B7370 !important;}
.otb-modal .wpforms-field textarea{min-height:120px !important;resize:vertical;}
.otb-modal .wpforms-field{margin-bottom:16px;}
.otb-modal .wpforms-container{margin:0;}

/* Submit button */
.otb-modal .wpforms-submit-container{margin-top:8px;}
.otb-modal .wpforms-submit-container button[type="submit"],
.otb-modal .wpforms-submit-container input[type="submit"]{
  width:100% !important;padding:14px 24px !important;
  background:#2DD4BF !important;color:#061211 !important;
  font-family:inherit !important;font-size:14.5px !important;
  font-weight:600 !important;border:none !important;
  border-radius:999px !important;cursor:pointer !important;
  transition:background .2s,box-shadow .2s,transform .2s !important;
  display:block !important;letter-spacing:-0.01em !important;
}
.otb-modal .wpforms-submit-container button[type="submit"]:hover,
.otb-modal .wpforms-submit-container input[type="submit"]:hover{
  background:#5EEAD4 !important;
  box-shadow:0 0 0 6px rgba(45,212,191,0.18) !important;
  transform:translateY(-1px) !important;
}

/* Confirmation & errors */
.otb-modal .wpforms-confirmation-container-full,
.otb-modal .wpforms-confirmation-container{
  background:rgba(45,212,191,0.08);
  border:1px solid rgba(45,212,191,0.25);
  border-radius:var(--radius);
  color:var(--ink);padding:24px;
  text-align:center;font-size:15px;
}
.otb-modal .wpforms-error-container,
.otb-modal .wpforms-error-container p{
  background:rgba(239,68,68,0.08);
  border:1px solid rgba(239,68,68,0.25);
  border-radius:var(--radius-sm);
  color:#FCA5A5 !important;padding:12px 16px;
  font-size:13.5px;margin-bottom:16px;
}
.otb-modal .wpforms-field .wpforms-error{
  color:#FCA5A5 !important;font-size:12.5px;margin-top:4px;
}
