  :root{
    --paper:#121110;
    --paper-card:#1C1A15;
    --ink:#0C0B09;
    --ink-card:#211E17;
    --text:#F7F6F2;
    --text-muted:#A8A296;
    --text-on-dark:#F7F6F2;
    --text-on-dark-muted:#A39E90;
    --mango:#F2994A;
    --mango-deep:#D97F2E;
    --mango-tint:rgba(242,153,74,0.16);
    --chat-green:#3DAA7C;
    --line-light:rgba(247,246,242,0.10);
    --line-dark:rgba(247,246,242,0.12);
    --shadow-soft:0 24px 60px -18px rgba(0,0,0,0.55);
    --glow-mango:0 0 60px -12px rgba(242,153,74,0.35);
    --paper-light:#F7F6F2;
    --surface-light:#FFFFFF;
    --text-on-light:#1A1812;
    --text-on-light-muted:#726E64;
    --mango-tint-light:#FCE9D4;
    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:9px;
    --ff-display:'Space Grotesk', sans-serif;
    --ff-body:'Inter', sans-serif;
    --ff-mono:'IBM Plex Mono', monospace;
  }

  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.01ms !important; animation-delay:0s !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
  }

  body{
    font-family:var(--ff-body);
    background:var(--paper);
    color:var(--text);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  a{color:inherit; text-decoration:none;}
  img,svg{display:block;}
  button{font:inherit; cursor:pointer; border:none; background:none;}
  ul{list-style:none;}

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  h1,h2,h3{
    font-family:var(--ff-display);
    font-weight:600;
    letter-spacing:-0.02em;
    line-height:1.1;
  }

  .eyebrow{
    font-family:var(--ff-mono);
    font-size:12.5px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--mango-deep);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:16px;
    height:1px;
    background:var(--mango-deep);
    display:inline-block;
  }
  .eyebrow.on-dark{color:var(--mango);}
  .eyebrow.on-dark::before{background:var(--mango);}

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    border-radius:100px;
    font-family:var(--ff-body);
    font-weight:600;
    font-size:15px;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--mango);
    color:#1A1200;
    box-shadow:0 12px 28px -10px rgba(242,153,74,0.55);
  }
  .btn-primary:hover{background:var(--mango-deep); transform:translateY(-2px); box-shadow:0 16px 32px -10px rgba(217,127,46,0.6);}
  .btn-ghost{
    color:var(--text);
    padding:14px 6px;
    border-bottom:1px solid var(--line-light);
    border-radius:0;
  }
  .btn-ghost:hover{border-color:var(--text);}
  .btn-ghost .arrow{transition:transform .25s ease;}
  .btn-ghost:hover .arrow{transform:translateX(4px);}
  .btn-outline-dark{
    background:transparent;
    color:var(--text-on-dark);
    border:1px solid var(--line-dark);
    padding:13px 25px;
  }
  .btn-outline-dark:hover{border-color:var(--mango); color:var(--mango);}

  /* ---------- NAV ---------- */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    background:rgba(18,17,16,0.78);
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid transparent;
    transition:border-color .3s ease;
  }
  header.scrolled{border-bottom-color:var(--line-light);}
  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 32px;
    max-width:1180px;
    margin:0 auto;
  }
  .logo{
    font-family:var(--ff-display);
    font-weight:700;
    font-size:20px;
    letter-spacing:-0.01em;
    display:flex;
    align-items:center;
    gap:9px;
  }
  .logo-dot{
    width:9px; height:9px;
    border-radius:50%;
    background:var(--mango);
    display:inline-block;
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
    font-size:14.5px;
    font-weight:500;
    color:var(--text-muted);
  }
  .nav-links a{transition:color .2s ease;}
  .nav-links a:hover{color:var(--text);}
  .nav-right{display:flex; align-items:center; gap:22px;}
  .nav-cta{padding:11px 22px; font-size:14px;}

  @media (max-width:860px){
    .nav-links{display:none;}
  }

  /* ---------- HERO ---------- */
  .hero{
    padding:168px 0 110px;
    position:relative;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:64px;
    align-items:center;
  }
  .hero-copy h1{
    font-size:clamp(40px,5.4vw,66px);
    margin-bottom:22px;
  }
  .hero-copy h1 .accent{color:var(--mango);}
  .hero-copy p.lead{
    font-size:18px;
    color:var(--text-muted);
    max-width:480px;
    margin-bottom:36px;
  }
  .hero-ctas{
    display:flex;
    align-items:center;
    gap:28px;
    margin-bottom:28px;
    flex-wrap:wrap;
  }
  .hero-note{
    font-size:13.5px;
    color:var(--text-muted);
    display:flex;
    align-items:center;
    gap:8px;
  }
  .hero-note svg{flex-shrink:0;}

  /* Phone / chat mockup */
  .phone-stage{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .phone{
    width:340px;
    background:var(--ink);
    border-radius:32px;
    padding:14px;
    box-shadow:var(--shadow-soft);
    position:relative;
  }
  .phone::before{
    content:"";
    position:absolute;
    top:14px; left:50%;
    transform:translateX(-50%);
    width:70px; height:5px;
    border-radius:4px;
    background:rgba(247,246,242,0.16);
  }
  .phone-screen{
    --paper:var(--paper-light);
    --paper-card:var(--surface-light);
    --text:var(--text-on-light);
    --text-muted:var(--text-on-light-muted);
    --mango-tint:var(--mango-tint-light);
    --line-light:rgba(26,24,18,0.10);
    background:var(--paper-light);
    color:var(--text-on-light);
    border-radius:22px;
    padding:20px 16px 16px;
    min-height:430px;
    display:flex;
    flex-direction:column;
    gap:10px;
    overflow:hidden;
  }
  .chat-header{
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom:14px;
    border-bottom:1px solid var(--line-light);
    margin-bottom:6px;
  }
  .chat-avatar{
    width:34px; height:34px;
    border-radius:50%;
    background:var(--mango-tint);
    display:flex; align-items:center; justify-content:center;
    color:var(--mango-deep);
    font-family:var(--ff-display);
    font-weight:700;
    font-size:13px;
  }
  .chat-title{font-size:14px; font-weight:600;}
  .chat-sub{font-size:11.5px; color:var(--chat-green); display:flex; align-items:center; gap:5px;}
  .chat-sub::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--chat-green);}

  .bubble{
    max-width:84%;
    padding:10px 14px;
    border-radius:16px;
    font-size:13.5px;
    line-height:1.4;
    opacity:0;
    transform:translateY(8px);
    animation:bubbleIn .5s ease forwards;
  }
  .bubble.customer{
    align-self:flex-start;
    background:#EFEEE9;
    color:var(--text-on-light);
    border-bottom-left-radius:5px;
  }
  .bubble.mango{
    align-self:flex-end;
    background:var(--chat-green);
    color:#fff;
    border-bottom-right-radius:5px;
  }
  @keyframes bubbleIn{
    to{opacity:1; transform:translateY(0);}
  }
  .typing{
    align-self:flex-end;
    display:flex;
    gap:4px;
    padding:11px 14px;
    background:var(--chat-green);
    border-radius:16px;
    border-bottom-right-radius:5px;
    opacity:0;
    animation:typingInOut .8s ease forwards;
  }
  @keyframes typingInOut{
    0%{opacity:0; transform:translateY(8px);}
    18%{opacity:1; transform:translateY(0);}
    82%{opacity:1; transform:translateY(0);}
    100%{opacity:0; transform:translateY(-6px);}
  }
  .typing span{
    width:5px; height:5px; border-radius:50%;
    background:rgba(255,255,255,0.85);
    animation:blink 1.1s infinite ease-in-out;
  }
  .typing span:nth-child(2){animation-delay:.15s;}
  .typing span:nth-child(3){animation-delay:.3s;}
  @keyframes blink{0%,80%,100%{opacity:.35; transform:translateY(0);} 40%{opacity:1; transform:translateY(-2px);}}

  .confirm-badge{
    opacity:0;
    animation:bubbleIn .5s ease forwards;
    align-self:flex-end;
    display:flex;
    align-items:center;
    gap:6px;
    font-family:var(--ff-mono);
    font-size:10.5px;
    color:var(--text-muted);
    background:var(--paper);
    border:1px solid var(--line-light);
    padding:6px 10px;
    border-radius:20px;
    margin-top:2px;
  }

  .system-confirm{
    align-self:center;
    display:flex;
    align-items:center;
    gap:7px;
    background:rgba(61,170,124,0.12);
    color:#2E8F63;
    border:1px solid rgba(61,170,124,0.35);
    padding:9px 16px;
    border-radius:20px;
    font-size:12.5px;
    font-weight:600;
    opacity:0;
    transform:translateY(6px);
    animation:bubbleIn .45s ease forwards;
    margin-top:4px;
  }

  .bubble[data-d="1"]{animation-delay:.3s;}
  .typing[data-d="2"]{animation-delay:1.0s;}
  .bubble[data-d="3"]{animation-delay:1.8s;}
  .bubble[data-d="4"]{animation-delay:2.7s;}
  .typing[data-d="5"]{animation-delay:3.4s;}
  .system-confirm[data-d="6"]{animation-delay:4.2s;}

  .float-card{
    position:absolute;
    background:var(--paper-card);
    border-radius:14px;
    box-shadow:var(--shadow-soft);
    padding:12px 14px;
    font-family:var(--ff-mono);
    font-size:11px;
    display:flex;
    align-items:center;
    gap:9px;
    color:var(--text);
    border:1px solid var(--line-light);
    z-index:5;
    opacity:0;
    transform:translateY(14px) scale(0.94);
    animation:floatCardIn .6s cubic-bezier(.2,.8,.3,1) forwards;
  }
  .float-card.calendar{
    top:12%; left:-58px;
    animation-delay:4.8s;
  }
  @keyframes floatCardIn{ to{opacity:1; transform:translateY(0) scale(1);} }
  @media (max-width:1040px){
    .float-card{display:none;}
  }

  /* ---------- SECTION SHELL ---------- */
  .section-light{padding:120px 0;}
  .section-dark{
    padding:120px 0;
    background:var(--ink);
    color:var(--text-on-dark);
  }
  .section-head{
    max-width:600px;
    margin-bottom:64px;
  }
  .section-head h2{
    font-size:clamp(28px,3.4vw,42px);
    margin-bottom:16px;
  }
  .section-head p{
    font-size:16.5px;
    color:var(--text-muted);
  }
  .section-dark .section-head p{color:var(--text-on-dark-muted);}

  .reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.in{opacity:1; transform:translateY(0);}

  /* ---------- HANDLES GRID ---------- */
  .handles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line-light);
    border:1px solid var(--line-light);
    border-radius:var(--radius-lg);
    overflow:hidden;
  }
  .handle-card{
    background:var(--paper-card);
    padding:34px 28px;
    transition:background .25s ease;
  }
  .handle-card:hover{background:var(--ink-card);}
  .handle-icon{
    width:38px; height:38px;
    border-radius:10px;
    background:var(--mango-tint);
    color:var(--mango-deep);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:20px;
  }
  .handle-card h3{
    font-size:16.5px;
    font-weight:600;
    margin-bottom:8px;
  }
  .handle-card p{
    font-size:14px;
    color:var(--text-muted);
    line-height:1.55;
  }
  @media (max-width:860px){
    .handles-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    .handles-grid{grid-template-columns:1fr;}
  }

  /* ---------- HOW IT WORKS ---------- */
  .steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    position:relative;
  }
  .steps::before{
    content:"";
    position:absolute;
    top:23px; left:0; right:0;
    height:1px;
    background:var(--line-light);
  }
  .step{position:relative;}
  .step-num{
    width:46px; height:46px;
    border-radius:50%;
    background:var(--paper);
    border:1px solid var(--line-light);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--ff-mono);
    font-size:14px;
    color:var(--mango-deep);
    margin-bottom:22px;
    position:relative;
    z-index:1;
  }
  .step h3{font-size:16px; font-weight:600; margin-bottom:8px; line-height:1.35;}
  .step p{font-size:13.5px; color:var(--text-muted); line-height:1.55;}
  @media (max-width:860px){
    .steps{grid-template-columns:1fr 1fr; row-gap:44px;}
    .steps::before{display:none;}
  }
  @media (max-width:560px){
    .steps{grid-template-columns:1fr;}
  }

  /* ---------- 24/7 STATEMENT BAND ---------- */
  .open-band{position:relative; overflow:hidden;}
  .open-band-inner{
    max-width:620px;
    margin:0 auto;
    text-align:center;
    position:relative;
    padding:20px 0;
  }
  .open-band-inner::before{
    content:"";
    position:absolute;
    width:440px; height:440px;
    background:radial-gradient(circle, rgba(242,153,74,0.14), transparent 70%);
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
    pointer-events:none;
  }
  .open-band-inner .eyebrow{justify-content:center;}
  .open-band-inner h2{
    font-size:clamp(28px,3.6vw,44px);
    margin-bottom:16px;
  }
  .open-band-inner p{
    font-size:16.5px;
    color:var(--text-muted);
    max-width:440px;
    margin:0 auto;
  }

  /* ---------- WHATSAPP BAND ---------- */
  .whatsapp-band-inner{
    display:flex;
    align-items:flex-start;
    gap:26px;
    max-width:640px;
    margin:0 auto;
    padding:36px;
    background:var(--paper-card);
    border:1px solid var(--line-light);
    border-radius:var(--radius-lg);
  }
  .whatsapp-icon{
    width:52px; height:52px;
    border-radius:14px;
    background:rgba(61,170,124,0.12);
    color:var(--chat-green);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .whatsapp-band-inner h2{
    font-size:clamp(22px,2.8vw,30px);
    margin-bottom:10px;
  }
  .whatsapp-band-inner p{
    font-size:15px;
    color:var(--text-muted);
    max-width:460px;
  }
  @media (max-width:640px){
    .whatsapp-band-inner{flex-direction:column; padding:26px 22px; gap:16px;}
  }

  /* ---------- BUILT AROUND ---------- */
  .built-grid{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:64px;
    align-items:center;
  }
  .built-copy p{
    color:var(--text-on-dark-muted);
    font-size:16px;
    max-width:440px;
    margin-bottom:8px;
  }
  .panel{
    background:var(--ink-card);
    border:1px solid var(--line-dark);
    border-radius:var(--radius-lg);
    padding:8px;
  }
  .panel-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-radius:var(--radius-md);
    transition:background .2s ease;
  }
  .panel-row:hover{background:rgba(247,246,242,0.04);}
  .panel-row + .panel-row{border-top:1px solid var(--line-dark);}
  .panel-left{display:flex; align-items:center; gap:14px;}
  .panel-icon{
    width:34px; height:34px;
    border-radius:9px;
    background:rgba(242,153,74,0.12);
    color:var(--mango);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .panel-label{font-size:14.5px; font-weight:500;}
  .panel-sub{font-size:12px; color:var(--text-on-dark-muted); font-family:var(--ff-mono); margin-top:2px;}
  .toggle{
    width:36px; height:20px;
    border-radius:20px;
    background:var(--mango);
    position:relative;
    flex-shrink:0;
  }
  .toggle::after{
    content:"";
    position:absolute;
    top:2px; right:2px;
    width:16px; height:16px;
    border-radius:50%;
    background:#1A1200;
  }
  @media (max-width:900px){
    .built-grid{grid-template-columns:1fr; gap:44px;}
  }

  /* ---------- BENEFITS ---------- */
  .benefits-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
  }
  .benefit-list li{
    display:flex;
    gap:16px;
    padding:20px 0;
    border-top:1px solid var(--line-light);
  }
  .benefit-list li:last-child{border-bottom:1px solid var(--line-light);}
  .benefit-check{
    width:22px; height:22px;
    border-radius:50%;
    background:var(--mango-tint);
    color:var(--mango-deep);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    margin-top:2px;
  }
  .benefit-list h3{font-size:15.5px; font-weight:600; margin-bottom:4px;}
  .benefit-list p{font-size:13.5px; color:var(--text-muted);}

  .benefit-strip{
    display:flex;
    flex-wrap:wrap;
    gap:14px 32px;
    padding-top:8px;
  }
  .benefit-strip-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:500;
    color:var(--text);
  }
  .benefit-strip-check{
    width:22px; height:22px;
    border-radius:50%;
    background:var(--mango-tint);
    color:var(--mango);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }

  .today-card{
    background:var(--paper-card);
    border:1px solid var(--line-light);
    border-radius:var(--radius-lg);
    padding:24px;
    box-shadow:var(--shadow-soft);
  }
  .today-card-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    padding-bottom:16px;
    border-bottom:1px solid var(--line-light);
  }
  .today-card-title{font-family:var(--ff-display); font-size:16px; font-weight:600;}
  .today-card-live{
    display:flex;
    align-items:center;
    gap:7px;
    font-family:var(--ff-mono);
    font-size:10.5px;
    text-transform:uppercase;
    letter-spacing:.07em;
    color:var(--mango);
    background:var(--mango-tint);
    padding:6px 11px;
    border-radius:20px;
  }
  .today-card-list{display:flex; flex-direction:column;}
  .today-slot{
    display:flex;
    align-items:center;
    gap:16px;
    padding:14px 4px;
    border-bottom:1px solid var(--line-light);
  }
  .today-slot:last-child{border-bottom:none;}
  .today-slot-time{
    font-family:var(--ff-mono);
    font-size:12.5px;
    color:var(--text-muted);
    width:44px;
    flex-shrink:0;
  }
  .today-slot-info{display:flex; flex-direction:column; gap:1px; flex:1;}
  .today-slot-name{font-size:14px; font-weight:600;}
  .today-slot-service{font-size:12px; color:var(--text-muted);}
  .today-slot-open-label{font-size:13px; color:var(--text-muted); font-style:italic;}
  .today-slot.is-open{opacity:.55;}
  .today-slot-badge{
    display:flex;
    align-items:center;
    gap:5px;
    font-family:var(--ff-mono);
    font-size:10px;
    color:var(--mango);
    background:var(--mango-tint);
    padding:5px 10px;
    border-radius:20px;
    flex-shrink:0;
    white-space:nowrap;
  }
  .today-slot.is-new{
    background:rgba(242,153,74,0.06);
    margin:0 -14px;
    padding:14px;
    border-radius:12px;
    border-bottom:1px solid transparent;
    opacity:0;
    transform:translateY(6px);
    animation:bubbleIn .5s ease forwards;
    animation-delay:.3s;
  }

  @media (max-width:520px){
    .today-card{padding:20px 18px;}
    .today-slot-badge span{display:none;}
    .today-slot-badge{padding:6px; width:22px; height:22px; justify-content:center;}
  }


  /* ---------- CTA BAND ---------- */
  .cta-band{
    background:var(--ink);
    color:var(--text-on-dark);
    padding:110px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .cta-band::before{
    content:"";
    position:absolute;
    width:600px; height:600px;
    background:radial-gradient(circle, rgba(242,153,74,0.16), transparent 70%);
    top:-260px; left:50%;
    transform:translateX(-50%);
  }
  .cta-band h2{
    font-size:clamp(28px,4vw,44px);
    max-width:640px;
    margin:0 auto 34px;
    position:relative;
  }
  .cta-band .btn{position:relative;}

  /* ---------- FOOTER ---------- */
  footer{
    padding:56px 0 40px;
    border-top:1px solid var(--line-light);
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:32px;
    margin-bottom:36px;
  }
  .footer-brand p{
    font-size:13.5px;
    color:var(--text-muted);
    margin-top:10px;
    max-width:280px;
  }
  .footer-links{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
  }
  .footer-col h4{
    font-family:var(--ff-mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--text-muted);
    margin-bottom:14px;
  }
  .footer-col a{
    display:block;
    font-size:14px;
    color:var(--text);
    margin-bottom:10px;
    transition:color .2s ease;
  }
  .footer-col a:hover{color:var(--mango-deep);}
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    font-size:12.5px;
    color:var(--text-muted);
    padding-top:24px;
    border-top:1px solid var(--line-light);
    font-family:var(--ff-mono);
  }

  /* ---------- LEGAL PAGES ---------- */
  .page-hero{
    padding:158px 0 56px;
    border-bottom:1px solid var(--line-light);
  }
  .page-hero h1{
    font-size:clamp(30px,4.4vw,44px);
    margin-bottom:14px;
  }
  .page-meta{
    font-family:var(--ff-mono);
    font-size:12.5px;
    color:var(--text-muted);
  }
  .legal-body{
    padding:64px 0 120px;
  }
  .legal-body .wrap{
    max-width:760px;
  }
  .legal-body h2{
    font-size:20px;
    margin:44px 0 14px;
    letter-spacing:-0.01em;
  }
  .legal-body h2:first-of-type{margin-top:0;}
  .legal-body p{
    font-size:15.5px;
    color:var(--text-muted);
    margin-bottom:14px;
    line-height:1.7;
  }
  .legal-body ul{
    margin:0 0 14px 0;
    padding-left:0;
  }
  .legal-body ul li{
    font-size:15.5px;
    color:var(--text-muted);
    line-height:1.7;
    padding-left:22px;
    position:relative;
    margin-bottom:8px;
  }
  .legal-body ul li::before{
    content:"";
    position:absolute;
    left:4px; top:11px;
    width:5px; height:5px;
    border-radius:50%;
    background:var(--mango);
  }
  .legal-body strong{color:var(--text); font-weight:600;}
  .legal-note{
    margin-top:48px;
    padding:20px 22px;
    background:rgba(247,246,242,0.05);
    border-radius:var(--radius-md);
    font-size:13.5px;
    color:var(--text-muted);
    font-style:italic;
    line-height:1.6;
  }

  /* ---------- CONTACT PAGE ---------- */
  .contact-hero{
    padding:190px 0 120px;
    background:var(--ink);
    color:var(--text-on-dark);
    text-align:center;
    position:relative;
    overflow:hidden;
    min-height:calc(100vh - 60px);
    display:flex;
    align-items:center;
  }
  .contact-hero::before{
    content:"";
    position:absolute;
    width:600px; height:600px;
    background:radial-gradient(circle, rgba(242,153,74,0.14), transparent 70%);
    top:-260px; left:50%;
    transform:translateX(-50%);
  }
  .contact-hero .wrap{position:relative; max-width:560px;}
  .contact-hero h1{
    font-size:clamp(32px,5vw,48px);
    color:var(--text-on-dark);
    margin-bottom:18px;
  }
  .contact-hero p.lead{
    font-size:17px;
    color:var(--text-on-dark-muted);
    max-width:440px;
    margin:0 auto 40px;
  }
  .contact-card{
    background:var(--ink-card);
    border:1px solid var(--line-dark);
    border-radius:var(--radius-lg);
    padding:32px;
    text-align:left;
    margin-bottom:36px;
  }
  .contact-row{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 0;
  }
  .contact-row + .contact-row{border-top:1px solid var(--line-dark);}
  .contact-row .panel-icon{background:rgba(242,153,74,0.12); color:var(--mango);}
  .contact-row-label{font-size:11.5px; font-family:var(--ff-mono); color:var(--text-on-dark-muted); text-transform:uppercase; letter-spacing:.06em; margin-bottom:3px;}
  .contact-row-value{font-size:15px; font-weight:500; color:var(--text-on-dark);}
  .contact-row a.contact-row-value:hover{color:var(--mango);}

  @media (max-width:640px){
    .wrap{padding:0 22px;}
    .hero{padding:130px 0 70px;}
    .hero .wrap{grid-template-columns:1fr; gap:56px;}
    .phone{width:100%; max-width:340px;}
    .section-light, .section-dark{padding:80px 0;}
    .built-grid, .benefits-grid{grid-template-columns:1fr;}
    nav{padding:16px 22px;}
    .page-hero{padding:130px 0 44px;}
    .legal-body{padding:44px 0 80px;}
    .contact-hero{padding:150px 0 90px;}
    .contact-card{padding:24px;}
  }

/* ================= SEE MANGO IN ACTION ================= */
.demo-section{padding-top:100px;}

.flow-diagram{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:52px;
  padding:20px;
  background:var(--paper-card);
  border:1px solid var(--line-light);
  border-radius:var(--radius-lg);
}
.flow-node{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:9px;
  min-width:84px;
}
.flow-icon{
  width:42px; height:42px;
  border-radius:12px;
  background:rgba(247,246,242,0.06);
  color:var(--text-muted);
  display:flex; align-items:center; justify-content:center;
}
.flow-node span{
  font-family:var(--ff-mono);
  font-size:11.5px;
  color:var(--text-muted);
}
.flow-node-brand .flow-icon-brand{
  background:var(--ink);
}
.flow-node-brand span{color:var(--mango-deep); font-weight:600;}
.flow-arrow{color:var(--line-light); flex-shrink:0;}
.flow-arrow svg{color:rgba(247,246,242,0.28);}
@media (max-width:640px){
  .flow-diagram{gap:8px; padding:16px 10px;}
  .flow-node{min-width:58px;}
  .flow-icon{width:34px; height:34px; border-radius:10px;}
  .flow-node span{font-size:9.5px;}
  .flow-arrow svg{width:14px; height:10px;}
}

.demo-progress{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
  margin-bottom:36px;
}
.demo-progress-step{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--ff-mono);
  font-size:11.5px;
  color:var(--text-muted);
  padding:0 16px;
  position:relative;
}
.demo-progress-step:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-1px; top:50%;
  transform:translateY(-50%);
  width:16px; height:1px;
  background:var(--line-light);
}
.demo-progress-num{
  width:20px; height:20px;
  border-radius:50%;
  background:rgba(247,246,242,0.08);
  color:var(--text-muted);
  display:flex; align-items:center; justify-content:center;
  font-size:10.5px;
  transition:background .3s ease, color .3s ease;
  flex-shrink:0;
}
.demo-progress-step.is-active .demo-progress-num,
.demo-progress-step.is-done .demo-progress-num{
  background:var(--mango);
  color:#1A1200;
}
.demo-progress-step.is-active{color:var(--text);}
.demo-progress-step.is-done{color:var(--text);}
@media (max-width:760px){
  .demo-progress{justify-content:flex-start; overflow-x:auto; -webkit-overflow-scrolling:touch; padding-bottom:4px; margin:0 -22px 32px; padding-left:22px; padding-right:22px;}
  .demo-progress-step{padding:0 12px 0 0; white-space:nowrap;}
  .demo-progress-step:not(:last-child)::after{right:2px;}
}

.demo-widget{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:44px;
  align-items:start;
  justify-content:center;
  max-width:760px;
  margin:0 auto;
}
.demo-phone{margin:0;}
.demo-phone .phone-screen{min-height:400px;}
.demo-thread{
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.demo-thread .bubble{opacity:0; transform:translateY(8px); animation:bubbleIn .45s ease forwards;}

.demo-time-row{
  align-self:flex-end;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  max-width:88%;
  opacity:0;
  transform:translateY(8px);
  animation:bubbleIn .45s ease forwards;
}
.demo-time-chip{
  font-family:var(--ff-mono);
  font-size:12.5px;
  font-weight:500;
  color:var(--chat-green);
  background:#fff;
  border:1.5px solid var(--chat-green);
  padding:8px 14px;
  border-radius:20px;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}
.demo-time-chip:hover{background:var(--chat-green); color:#fff;}
.demo-time-chip:active{transform:scale(0.96);}
.demo-time-chip[disabled]{
  opacity:.4;
  border-color:var(--line-light);
  color:var(--text-muted);
  pointer-events:none;
}
.demo-time-chip.is-selected{background:var(--chat-green); color:#fff;}

.demo-side{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding-top:6px;
}
.demo-card{
  background:var(--paper-card);
  border:1px solid var(--line-light);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-soft);
  min-height:150px;
}
.demo-card-label{
  font-family:var(--ff-mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.07em;
  color:var(--text-muted);
  margin-bottom:16px;
}
.demo-card-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:rgba(247,246,242,0.25);
  padding:22px 10px;
  text-align:center;
  font-size:13px;
}
.demo-card-filled{
  display:flex;
  flex-direction:column;
  gap:4px;
  opacity:0;
  animation:bubbleIn .5s ease forwards;
}
.demo-card-service{font-family:var(--ff-display); font-size:17px; font-weight:600;}
.demo-card-meta{font-size:13px; color:var(--text-muted);}
.demo-card-badge{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:var(--ff-mono);
  font-size:11px;
  color:var(--chat-green);
  background:rgba(61,170,124,0.1);
  padding:6px 11px;
  border-radius:20px;
  width:fit-content;
}
.demo-restart{align-self:center; font-size:14px;}

@media (max-width:760px){
  .demo-widget{grid-template-columns:1fr; max-width:380px;}
  .demo-side{padding-top:0;}
}

/* ================= WHAT HAPPENS WHEN ================= */
.scenarios{max-width:640px;}
.scenario-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:4px;
}
.scenario-tab{
  font-family:var(--ff-body);
  font-size:13.5px;
  font-weight:500;
  color:var(--text-muted);
  background:rgba(247,246,242,0.06);
  padding:10px 16px;
  border-radius:20px;
  transition:background .2s ease, color .2s ease;
}
.scenario-tab:hover{color:var(--text);}
.scenario-tab.is-active{background:var(--mango); color:#1A1200;}

.scenario-panel{
  margin-top:22px;
  background:var(--paper-card);
  border:1px solid var(--line-light);
  border-radius:var(--radius-lg);
  padding:26px 24px;
  min-height:150px;
}
.scenario-exchange{
  display:none;
  flex-direction:column;
  gap:10px;
}
.scenario-exchange.is-active{display:flex;}
.bubble.static{opacity:1; transform:none; animation:none;}

/* ================= MODAL / DEMO FORM ================= */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(21,20,15,0.6);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:300;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  animation:overlayIn .25s ease forwards;
}
.modal-overlay[hidden]{display:none;}
@keyframes overlayIn{to{opacity:1;}}

.modal-card{
  background:var(--paper-card);
  border-radius:var(--radius-lg);
  box-shadow:0 30px 70px -20px rgba(0,0,0,0.35);
  padding:32px;
  width:100%;
  max-width:440px;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
  transform:translateY(14px) scale(0.98);
  opacity:0;
  animation:modalIn .3s cubic-bezier(.2,.8,.3,1) forwards;
}
@keyframes modalIn{to{transform:translateY(0) scale(1); opacity:1;}}

.modal-close{
  position:absolute;
  top:18px; right:18px;
  width:32px; height:32px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
  transition:background .2s ease, color .2s ease;
}
.modal-close:hover{background:rgba(247,246,242,0.08); color:var(--text);}

.form-row{margin-bottom:16px;}
.form-row label{
  display:block;
  font-family:var(--ff-mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text-muted);
  margin-bottom:7px;
}
.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  font-family:var(--ff-body);
  font-size:15px;
  color:var(--text);
  background:rgba(247,246,242,0.05);
  border:1px solid var(--line-light);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  transition:border-color .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--mango);
  background:rgba(247,246,242,0.08);
}
.form-row textarea{resize:vertical; min-height:70px;}
.form-row select{appearance:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A296' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center;}
.form-row-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form-row-split .form-row{margin-bottom:0;}

.modal-alt-contact{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--line-light);
  font-size:13px;
  color:var(--text-muted);
  text-align:center;
}
.modal-alt-contact a{color:var(--mango-deep); font-weight:600;}

.modal-success-icon{
  width:52px; height:52px;
  border-radius:50%;
  background:var(--mango-tint);
  color:var(--mango-deep);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
}

@media (max-width:480px){
  .modal-card{padding:24px 20px; border-radius:16px;}
  .form-row-split{grid-template-columns:1fr;}
}

/* ================= 390px MOBILE PRIORITY PASS ================= */
@media (max-width:420px){
  .hero-break{display:none;}
  .wrap{padding:0 18px;}
  nav{padding:14px 18px;}
  .logo{font-size:18px;}
  .nav-cta{padding:10px 16px; font-size:13px;}
  .hero{padding:118px 0 56px;}
  .hero-copy h1{font-size:34px;}
  .hero-copy p.lead{font-size:16px;}
  .hero-ctas{gap:16px 22px;}
  .hero-note{font-size:12.5px;}
  .phone{padding:11px; border-radius:26px;}
  .phone-screen{min-height:auto; padding:16px 12px 12px; border-radius:18px;}
  .bubble{font-size:13px; padding:9px 12px;}
  .section-light, .section-dark, .demo-section{padding:64px 0;}
  .section-head{margin-bottom:40px;}
  .section-head h2{font-size:26px;}
  .handle-card{padding:26px 20px;}
  .step h3{font-size:15px;}
  .week-card{padding:18px 16px 14px;}
  .week-title{font-size:14px;}
  .built-copy p{font-size:14.5px;}
  .panel-row{padding:13px 14px;}
  .panel-label{font-size:13.5px;}
  .benefit-list li{padding:16px 0;}
  .cta-band{padding:80px 0;}
  .cta-band h2{font-size:26px;}
  .footer-top{gap:28px;}
  .footer-links{gap:28px;}
  .demo-time-chip{font-size:12px; padding:7px 12px;}
  .scenario-tab{font-size:12.5px; padding:8px 13px;}
  .scenario-panel{padding:20px 18px;}
  .contact-hero{padding:130px 0 70px;}
  .contact-card{padding:20px;}
  .page-hero{padding:118px 0 36px;}
  .page-hero h1{font-size:28px;}
  .legal-body h2{font-size:18px;}
  .legal-body p, .legal-body ul li{font-size:14.5px;}
}
