  :root{
    --ink:#080B14;
    --ink-2:#10151F;
    --ink-3:#161C29;
    --cyan:#2ED573;
    --cyan-dim:#0E2C1A;
    --amber:#3B82F6;
    --paper:#EEF2F6;
    --slate:#8A93A6;
    --line:rgba(238,242,246,0.09);
    --line-strong:rgba(238,242,246,0.16);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--ink);
    color:var(--paper);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }
  h1,h2,h3,.display{font-family:'Space Grotesk',sans-serif;}
  .mono{font-family:'IBM Plex Mono',monospace;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 32px;}
  ::selection{background:var(--cyan);color:var(--ink);}

  /* focus visibility */
  a:focus-visible, button:focus-visible, input:focus-visible{
    outline:2px solid var(--cyan);
    outline-offset:3px;
    border-radius:4px;
  }

  /* ---------- NAV ---------- */
  /* ---------- TOP UTILITY BAR ---------- */
  .topbar{
    background:#05070C; border-bottom:1px solid var(--line);
    font-size:12.5px;
  }
  .topbar-inner{
    display:flex; justify-content:space-between; align-items:center; gap:18px;
    padding:8px 32px; max-width:1180px; margin:0 auto; flex-wrap:wrap;
  }
  .topbar-left, .topbar-right{
    display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  }
  .topbar-inner a{
    display:inline-flex; align-items:center; gap:6px; color:var(--slate);
    font-weight:600; letter-spacing:.01em; transition:color .2s;
  }
  .topbar-inner a:hover{color:var(--cyan);}
  .topbar-inner a.partner-link:hover{color:var(--amber);}
  .topbar-inner .sep{color:var(--line-strong); font-size:11px;}
  .topbar-inner svg{width:13px; height:13px; flex-shrink:0;}
  .topbar-phone{color:var(--paper) !important;}
  .topbar-social{display:flex; align-items:center; gap:12px;}
  .topbar-social a{
    color:var(--slate); padding:2px; border-radius:4px;
  }
  .topbar-social a:hover{color:var(--cyan);}
  .topbar-social svg{width:14px; height:14px;}
  @media (max-width:700px){
    .topbar-inner{padding:8px 20px; gap:10px; justify-content:center;}
    .topbar-left, .topbar-right{justify-content:center; width:100%;}
  }

  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(10,14,20,0.08);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 32px; max-width:1180px; margin:0 auto;
  }
  .logo{
    display:flex; align-items:center; gap:10px;
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:20px;
    letter-spacing:-0.02em;
  }
  .logo img{height:36px; width:auto; display:block;}
  .footer-brand .logo img{height:34px;}
  .logo-badge{
    display:inline-flex; align-items:center; background:#FFFFFF;
    border-radius:10px; padding:6px 12px; box-shadow:0 6px 18px rgba(0,0,0,0.25);
  }
  .logo .dot{
    width:9px;height:9px;border-radius:50%;background:var(--cyan);
    box-shadow:0 0 12px 2px var(--cyan);
  }
  .logo .ok{color:var(--amber);}
  .nav-links{display:flex; gap:36px; font-size:14.5px; color:var(--slate); font-weight:600;}
  .nav-links a{
    position:relative; transition:color .2s; padding-bottom:4px;
  }
  .nav-links a::after{
    content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
    background:currentColor; border-radius:2px;
    transition:right .25s cubic-bezier(.4,0,.2,1);
  }
  .nav-links a:hover::after, .nav-links a.active::after{right:0;}
  .nav-links a:hover{color:var(--paper);}

  /* header now has a white background — override text/border colors that were
     tuned for the dark nav so everything stays readable. Scoped to `header`
     so the footer (which reuses .logo/.nav-links-style classes) is unaffected. */
  header .logo .dot{box-shadow:0 0 12px 2px var(--cyan);}
  header .nav-links{color:#5B6472;}
  header .nav-links a:hover{color:#0B1220;}
  header .nav-links a.active{color:#189951 !important;}
  header .nav-drop-btn{color:#5B6472;}
  header .nav-drop-btn:hover, header .nav-drop:focus-within .nav-drop-btn{color:#0B1220;}
  header .nav-drop-btn.active{color:#189951 !important;}
  header .btn-ghost{border-color:rgba(10,14,20,0.16); color:#0B1220;}
  header .btn-ghost:hover{border-color:#189951; color:#189951;}
  .nav-cta{
    display:flex; align-items:center; gap:20px;
  }
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:11px 22px; border-radius:8px; font-size:14px; font-weight:600;
    border:1px solid transparent; cursor:pointer; transition:all .2s; white-space:nowrap;
  }
  .btn-primary{background:var(--amber); color:#F5F9FF;}
  .btn-primary:hover{background:#5B95F7; transform:translateY(-1px);}
  .btn-ghost{border-color:var(--line-strong); color:var(--paper);}
  .btn-ghost:hover{border-color:var(--cyan); color:var(--cyan);}
  .menu-toggle{display:none;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative; padding:96px 0 70px; overflow:hidden;
    border-bottom:1px solid var(--line);
  }
  .hero-grid{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'IBM Plex Mono',monospace; font-size:12.5px; letter-spacing:.06em;
    color:var(--cyan); background:var(--cyan-dim); border:1px solid rgba(46,213,115,0.35);
    padding:6px 12px; border-radius:20px; margin-bottom:24px;
  }
  .hero h1{
    font-size:clamp(38px,5.2vw,64px); line-height:1.03; letter-spacing:-0.03em;
    font-weight:700; margin-bottom:22px;
  }
  .hero h1 .stroke{
    -webkit-text-stroke:1px var(--paper); color:transparent;
  }
  .hero p.lead{
    font-size:18px; line-height:1.6; color:var(--slate); max-width:480px; margin-bottom:34px;
  }
  .check-form{
    display:flex; gap:10px; max-width:460px; margin-bottom:20px;
  }
  .check-form input{
    flex:1; background:var(--ink-2); border:1px solid var(--line-strong);
    border-radius:8px; padding:14px 16px; color:var(--paper); font-size:15px;
    font-family:'IBM Plex Mono',monospace;
  }
  .check-form input::placeholder{color:#586074;}
  .check-form input:focus{outline:none; border-color:var(--cyan);}
  .hint{font-size:13px; color:#586074;}
  .hero-stats{
    display:flex; gap:34px; margin-top:44px; flex-wrap:wrap;
  }
  .hero-stats div .num{
    font-family:'Space Grotesk',sans-serif; font-size:26px; font-weight:700; color:var(--paper);
  }
  .hero-stats div .lbl{font-size:12.5px; color:var(--slate); margin-top:2px;}

  /* fiber pulse signature visual */
  .fiber-panel{
    position:relative; background:var(--ink-2); border:1px solid var(--line);
    border-radius:20px; padding:34px; min-height:420px;
    display:flex; flex-direction:column; justify-content:space-between;
    overflow:hidden;
  }
  .fiber-panel::before{
    content:""; position:absolute; inset:0;
    background:radial-gradient(circle at 80% 10%, rgba(46,213,115,0.12), transparent 55%);
  }
  .speed-readout{position:relative; z-index:2;}
  .speed-readout .label{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--slate); letter-spacing:.08em; text-transform:uppercase;}
  .speed-readout .value{
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:56px; color:var(--cyan);
    line-height:1; margin-top:8px; display:flex; align-items:baseline; gap:8px;
  }
  .speed-readout .value span{font-size:20px; color:var(--paper); font-weight:500;}
  .fiber-svg{position:relative; z-index:2; width:100%; height:150px;}
  .fiber-svg path.track{fill:none; stroke:var(--line-strong); stroke-width:2;}
  .fiber-svg path.pulse{
    fill:none; stroke:var(--cyan); stroke-width:2.5; stroke-linecap:round;
    stroke-dasharray:40 900; filter:drop-shadow(0 0 6px var(--cyan));
    animation:travel 3.2s linear infinite;
  }
  @keyframes travel{ to{ stroke-dashoffset:-940; } }
  .fiber-legend{
    position:relative; z-index:2; display:flex; justify-content:space-between;
    font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--slate);
  }

  /* ---------- SPEED TEST WIDGET ---------- */
  .st-head{
    position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between;
    margin-bottom:8px;
  }
  .st-node{font-size:11.5px; color:var(--slate);}
  .gauge-wrap{
    position:relative; z-index:2; width:210px; height:210px; margin:6px auto 4px;
  }
  .gauge{width:100%; height:100%; transform:rotate(-90deg);}
  .gauge-track{fill:none; stroke:var(--line-strong); stroke-width:10;}
  .gauge-fill{
    fill:none; stroke:var(--cyan); stroke-width:10; stroke-linecap:round;
    stroke-dasharray:540.35; stroke-dashoffset:540.35;
    filter:drop-shadow(0 0 6px rgba(46,213,115,0.6));
    transition:stroke-dashoffset .35s linear, stroke .3s;
  }
  .gauge-center{
    position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  }
  .gauge-value{font-size:44px; font-weight:500; color:var(--paper); line-height:1;}
  .gauge-unit{font-size:12px; color:var(--slate); margin-top:6px; letter-spacing:.04em;}
  .st-btn{
    position:relative; z-index:2; width:100%; margin-top:14px; margin-bottom:22px;
  }
  .st-btn[disabled]{opacity:.6; cursor:progress;}
  .st-results{
    position:relative; z-index:2; display:grid; grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line); padding-top:18px;
  }
  .st-results > div{text-align:center;}
  .st-num{font-size:19px; color:var(--paper); font-weight:500;}
  .st-lbl{font-size:11.5px; color:var(--slate); margin-top:4px;}

  /* ---------- MARQUEE STRIP ---------- */
  .strip{
    border-bottom:1px solid var(--line); background:var(--ink-2);
    padding:22px 0;
  }
  .strip .wrap{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:18px;
  }
  .strip-item{display:flex; align-items:center; gap:10px; font-size:14px; color:var(--slate);}
  .strip-item b{color:var(--paper); font-weight:600;}
  .strip-item .ic{color:var(--cyan);}

  /* ---------- SECTION SHARED ---------- */
  section{padding:96px 0;}
  .section-head{max-width:620px; margin-bottom:56px;}
  .section-head .eyebrow{margin-bottom:18px;}
  .section-head h2{font-size:clamp(28px,3.4vw,40px); letter-spacing:-0.02em; line-height:1.15; margin-bottom:14px;}
  .section-head p{color:var(--slate); font-size:16px; line-height:1.6;}

  /* ---------- PLANS ---------- */
  .plans{border-bottom:1px solid var(--line);}

  /* ---------- WHAT WE OFFER ---------- */
  .offer{border-bottom:1px solid var(--line);}
  .offer-row{
    display:flex; flex-wrap:wrap; gap:36px 44px;
    border-bottom:1px solid var(--line-strong); padding-bottom:28px;
  }
  .offer-item{
    flex:1 1 200px; position:relative; padding-bottom:16px; text-decoration:none;
  }
  .offer-item h3{
    font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:15.5px; color:var(--paper);
    margin-bottom:8px; line-height:1.3; transition:color .2s;
  }
  .offer-item p{font-size:13px; color:var(--slate); line-height:1.55;}
  .offer-item::after{
    content:""; position:absolute; left:0; bottom:-1px; width:56px; height:3px;
    background:var(--amber); border-radius:2px;
    transform:scaleX(0); transform-origin:left; transition:transform .25s cubic-bezier(.4,0,.2,1);
  }
  .offer-item:hover h3{color:var(--cyan);}
  .offer-item:hover::after, .offer-item.active::after{transform:scaleX(1);}
  @media (max-width:900px){
    .offer-row{gap:28px 32px;}
    .offer-item{flex:1 1 45%;}
  }
  @media (max-width:560px){
    .offer-item{flex:1 1 100%;}
  }
  .plan-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
  .plan-card{
    background:var(--ink-2); border:1px solid var(--line); border-radius:16px;
    padding:28px 24px; display:flex; flex-direction:column; position:relative;
    transition:border-color .2s, transform .2s;
  }
  .plan-card:hover{border-color:var(--line-strong); transform:translateY(-3px);}
  .plan-card.featured{border-color:var(--cyan); background:linear-gradient(180deg, rgba(46,213,115,0.07), var(--ink-2) 40%);}
  .plan-tag{
    position:absolute; top:-12px; right:24px; background:var(--amber); color:#F5F9FF;
    font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px; letter-spacing:.03em;
  }
  .plan-name{font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin-bottom:6px;}
  .plan-speed{font-family:'IBM Plex Mono',monospace; color:var(--cyan); font-size:13px; margin-bottom:20px;}
  .plan-price{display:flex; align-items:baseline; gap:4px; margin-bottom:22px;}
  .plan-price.plan-quote{
    font-family:'Space Grotesk',sans-serif; font-size:17px; font-weight:600; color:var(--cyan);
    background:var(--cyan-dim); border:1px solid rgba(46,213,115,0.3); border-radius:8px;
    padding:9px 14px; display:inline-flex; width:fit-content;
  }
  .plan-price .amt{font-family:'Space Grotesk',sans-serif; font-size:34px; font-weight:700;}
  .plan-price .per{font-size:13px; color:var(--slate);}
  .plan-feats{list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:26px; flex:1;}
  .plan-feats li{font-size:13.5px; color:var(--slate); display:flex; gap:9px; align-items:flex-start;}
  .plan-feats li::before{content:"—"; color:var(--cyan); flex-shrink:0;}
  .plan-card .btn{width:100%;}

  /* ---------- COVERAGE ---------- */
  .coverage{background:var(--ink-2); border-bottom:1px solid var(--line);}
  .coverage-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
  .city-list{display:grid; grid-template-columns:1fr 1fr; gap:14px 30px;}
  .city-list div{
    display:flex; align-items:center; gap:10px; padding:12px 0; border-bottom:1px solid var(--line);
    font-size:15px;
  }
  .city-list .pulse-dot{
    width:7px;height:7px;border-radius:50%;background:var(--cyan); flex-shrink:0;
    box-shadow:0 0 8px 1px var(--cyan); animation:blink 2.4s ease-in-out infinite;
  }
  .city-list div:nth-child(3n) .pulse-dot{animation-delay:.5s;}
  .city-list div:nth-child(4n) .pulse-dot{animation-delay:1.1s;}
  @keyframes blink{ 0%,100%{opacity:.4;} 50%{opacity:1;} }
  .map-visual{
    background:var(--ink); border:1px solid var(--line); border-radius:18px; padding:20px;
    aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  }

  /* ---------- FEATURES ---------- */
  .features-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:16px; overflow:hidden;}
  .feature-card{background:var(--ink); padding:32px 28px;}
  .feature-card .fnum{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--cyan); margin-bottom:16px;}
  .feature-card h3{font-size:17px; font-weight:600; margin-bottom:10px; font-family:'Space Grotesk',sans-serif;}
  .feature-card p{font-size:14px; color:var(--slate); line-height:1.6;}

  /* ---------- INSTALL STEPS ---------- */
  .install{border-bottom:1px solid var(--line);}
  .steps{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative;}
  .step{background:var(--ink-2); border:1px solid var(--line); border-radius:16px; padding:30px;}
  .step .snum{font-family:'Space Grotesk',sans-serif; font-size:34px; font-weight:700; color:var(--cyan); margin-bottom:18px;}
  .step h3{font-size:17px; margin-bottom:10px; font-weight:600;}
  .step p{font-size:14px; color:var(--slate); line-height:1.6;}

  /* ---------- TESTIMONIALS ---------- */
  .testimonials{background:var(--ink-2); border-bottom:1px solid var(--line);}
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .testi-card{background:var(--ink); border:1px solid var(--line); border-radius:16px; padding:28px;}
  .testi-card p.quote{font-size:15px; line-height:1.7; color:var(--paper); margin-bottom:22px;}
  .testi-who{display:flex; align-items:center; gap:12px;}
  .avatar{width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg, var(--cyan), var(--amber)); flex-shrink:0;}
  .testi-who .name{font-size:14px; font-weight:600;}
  .testi-who .loc{font-size:12.5px; color:var(--slate);}

  /* ---------- CTA BAND ---------- */
  .cta-band{
    padding:80px 0; text-align:center; position:relative; overflow:hidden;
  }
  .cta-band h2{font-size:clamp(28px,4vw,44px); margin-bottom:18px; letter-spacing:-0.02em;}
  .cta-band p{color:var(--slate); margin-bottom:34px; font-size:16px;}
  .cta-actions{display:flex; gap:14px; justify-content:center;}

  /* ---------- FOOTER ---------- */
  footer{border-top:1px solid var(--line); padding:64px 0 32px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:56px;}
  .footer-brand p{color:var(--slate); font-size:14px; line-height:1.6; margin-top:14px; max-width:280px;}
  .footer-col h4{font-size:13px; color:var(--slate); letter-spacing:.05em; text-transform:uppercase; margin-bottom:16px;}
  .footer-col a{display:block; font-size:14px; color:var(--paper); margin-bottom:11px; opacity:.85;}
  .footer-col a:hover{color:var(--cyan);}
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; padding-top:26px;
    border-top:1px solid var(--line); font-size:13px; color:#586074; flex-wrap:wrap; gap:12px;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:900px){
    .nav-links{display:none;}
    .hero-grid{grid-template-columns:1fr;}
    .plan-grid{grid-template-columns:repeat(2,1fr);}
    .coverage-grid{grid-template-columns:1fr;}
    .features-grid{grid-template-columns:repeat(2,1fr);}
    .steps{grid-template-columns:1fr;}
    .testi-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    .wrap{padding:0 20px;}
    .plan-grid{grid-template-columns:1fr;}
    .features-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .check-form{flex-direction:column;}
    .strip .wrap{flex-direction:column;}
  }

/* ================= MULTI-PAGE ADDITIONS ================= */

/* nav dropdown */
.nav-drop{position:relative;}
.nav-drop-btn{
  background:none; border:none; color:var(--slate); font:inherit; font-size:14.5px; font-weight:600;
  cursor:pointer; display:inline-flex; align-items:center; gap:5px; padding:0 0 4px;
  position:relative; transition:color .2s;
}
.nav-drop-btn::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:currentColor; border-radius:2px;
  transition:right .25s cubic-bezier(.4,0,.2,1);
}
.nav-drop-btn:hover::after, .nav-drop:focus-within .nav-drop-btn::after, .nav-drop-btn.active::after{right:0;}
.nav-drop-btn:hover, .nav-drop:focus-within .nav-drop-btn{color:var(--paper);}
.nav-drop-btn .caret{font-size:10px; transform:translateY(1px);}
.nav-drop-menu{
  position:absolute; top:calc(100% + 18px); left:50%; transform:translateX(-50%) translateY(-6px);
  background:var(--ink-2); border:1px solid var(--line-strong); border-radius:12px;
  padding:8px; min-width:210px; opacity:0; visibility:hidden;
  transition:opacity .18s, transform .18s, visibility .18s;
  box-shadow:0 24px 48px rgba(0,0,0,.45); z-index:60;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.nav-drop-menu a{
  display:flex; flex-direction:column; gap:2px; padding:10px 12px; border-radius:8px;
  font-size:13.5px; color:var(--paper); margin-bottom:0;
}
.nav-drop-menu a:hover{background:var(--ink-3);}
.nav-drop-menu a .dsub{font-size:11.5px; color:var(--slate);}
.nav-drop-menu a:hover .dsub{color:var(--cyan);}

header .nav-drop-menu{
  background:#FFFFFF; border:1px solid rgba(10,14,20,0.08);
  box-shadow:0 24px 48px rgba(10,14,20,0.14);
}
header .nav-drop-menu a{color:#0B1220;}
header .nav-drop-menu a:hover{background:#F2F5F8;}
header .nav-drop-menu a .dsub{color:#6B7280;}
header .nav-drop-menu a:hover .dsub{color:#189951;}

/* active nav state */
.nav-links a.active, .nav-drop-btn.active{color:var(--cyan) !important;}

/* breadcrumb / sub-hero for internal pages */
.subhero{
  position:relative; padding:64px 0 60px; border-bottom:1px solid var(--line); overflow:hidden;
}
.subhero .crumb{
  font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--slate); margin-bottom:20px;
  display:flex; align-items:center; gap:8px;
}
.subhero .crumb a{color:var(--slate);}
.subhero .crumb a:hover{color:var(--cyan);}
.subhero h1{
  font-size:clamp(32px,4.6vw,52px); line-height:1.06; letter-spacing:-0.03em; font-weight:700;
  max-width:720px; margin-bottom:20px;
}
.subhero p.lead{font-size:17px; line-height:1.65; color:var(--slate); max-width:560px; margin-bottom:30px;}
.subhero-actions{display:flex; gap:14px; flex-wrap:wrap;}
.subhero-stats{display:flex; gap:36px; margin-top:44px; flex-wrap:wrap;}
.subhero-stats div .num{font-family:'Space Grotesk',sans-serif; font-size:25px; font-weight:700;}
.subhero-stats div .lbl{font-size:12.5px; color:var(--slate); margin-top:2px;}

/* generic two-col content block */
.split{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.split.reverse{direction:rtl;}
.split.reverse > *{direction:ltr;}
.mini-panel{
  background:var(--ink-2); border:1px solid var(--line); border-radius:18px; padding:32px;
}

/* rate / comparison table */
.rate-table-wrap{
  border:1px solid var(--line); border-radius:16px; overflow:hidden; background:var(--ink-2);
}
table.rate-table{width:100%; border-collapse:collapse;}
table.rate-table th, table.rate-table td{padding:16px 20px; text-align:left; font-size:14px; border-bottom:1px solid var(--line);}
table.rate-table th{
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--slate); text-transform:uppercase;
  letter-spacing:.06em; font-weight:500; background:var(--ink-3);
}
table.rate-table tr:last-child td{border-bottom:none;}
table.rate-table td.hl{color:var(--cyan); font-family:'IBM Plex Mono',monospace;}
table.rate-table tbody tr:hover{background:rgba(255,255,255,0.02);}

/* use-case chips */
.chip-row{display:flex; flex-wrap:wrap; gap:10px;}
.chip{
  font-size:13px; color:var(--paper); border:1px solid var(--line-strong); border-radius:20px;
  padding:8px 16px; background:var(--ink-2);
}

/* numbered process (kept for genuine sequences only) */
.process-list{display:flex; flex-direction:column;}
.process-item{
  display:grid; grid-template-columns:60px 1fr; gap:24px; padding:28px 0; border-bottom:1px solid var(--line);
}
.process-item:last-child{border-bottom:none;}
.process-item .pn{font-family:'Space Grotesk',sans-serif; font-size:22px; font-weight:700; color:var(--cyan);}
.process-item h3{font-size:17px; margin-bottom:8px; font-weight:600;}
.process-item p{font-size:14.5px; color:var(--slate); line-height:1.6; max-width:520px;}

/* partner tier badge reuse of plan-card, add ribbon variants */
.tier-badge{
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:.03em; color:var(--cyan);
  border:1px solid rgba(46,213,115,0.35); background:var(--cyan-dim); padding:4px 10px; border-radius:20px;
  margin-bottom:14px;
}

/* ================= ENQUIRY FORM ================= */
.enquiry-layout{display:grid; grid-template-columns:1.3fr 0.9fr; gap:32px; align-items:start;}
.form-card{
  background:var(--ink-2); border:1px solid var(--line); border-radius:18px; padding:38px;
  position:relative;
}
.field{margin-bottom:20px;}
.field label{display:block; font-size:13px; color:var(--slate); margin-bottom:8px;}
.field input, .field select, .field textarea{
  width:100%; background:var(--ink); border:1px solid var(--line-strong); border-radius:8px;
  padding:13px 14px; color:var(--paper); font-size:14.5px; font-family:'Inter',sans-serif;
}
.field select{appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%238A93A6' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat:no-repeat; background-position:right 14px center;
}
.field input:focus, .field select:focus, .field textarea:focus{outline:none; border-color:var(--cyan);}
.field textarea{resize:vertical; min-height:120px;}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.form-note{font-size:12.5px; color:#586074; margin-top:16px; line-height:1.6;}
.form-error{
  background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.35); color:#FCA5A5;
  border-radius:8px; padding:12px 14px; font-size:13.5px; margin-bottom:18px; line-height:1.5;
}
.form-submit{width:100%; margin-top:6px;}

.success-box{display:none; text-align:center; padding:50px 20px;}
.success-box.show{display:block;}
.success-box .check-icon{
  width:56px; height:56px; border-radius:50%; background:var(--cyan-dim); border:1px solid var(--cyan);
  display:flex; align-items:center; justify-content:center; margin:0 auto 22px; color:var(--cyan); font-size:24px;
}
.success-box h3{font-size:20px; margin-bottom:10px; font-family:'Space Grotesk',sans-serif;}
.success-box p{color:var(--slate); font-size:14.5px; max-width:340px; margin:0 auto;}

.contact-side{display:flex; flex-direction:column; gap:16px;}
.contact-card{
  background:var(--ink-2); border:1px solid var(--line); border-radius:16px; padding:26px;
}
.contact-card h4{font-size:13px; color:var(--slate); text-transform:uppercase; letter-spacing:.05em; margin-bottom:16px;}
.contact-row{display:flex; gap:12px; align-items:flex-start; margin-bottom:16px;}
.contact-row:last-child{margin-bottom:0;}
.contact-row .ic{color:var(--cyan); font-size:15px; margin-top:1px;}
.contact-row .ct{font-size:14px;}
.contact-row .ct .cl{color:var(--slate); font-size:12px; display:block; margin-bottom:2px;}

/* footer 5-col */
.footer-grid.wide{grid-template-columns:1.1fr 0.85fr 0.85fr 0.85fr 0.85fr 0.85fr;}

@media (max-width:900px){
  .split{grid-template-columns:1fr;}
  .split.reverse{direction:ltr;}
  .enquiry-layout{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
  .footer-grid.wide{grid-template-columns:1fr 1fr;}
}
@media (max-width:560px){
  .footer-grid.wide{grid-template-columns:1fr;}
  .process-item{grid-template-columns:1fr; gap:8px;}
}

/* ================= LEGAL PAGES ================= */
.legal-meta{
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--slate); margin-bottom:8px;
}
.legal-content{max-width:760px;}
.legal-content h2{
  font-family:'Space Grotesk',sans-serif; font-size:22px; font-weight:600; letter-spacing:-0.01em;
  margin:44px 0 16px;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content h3{
  font-family:'Space Grotesk',sans-serif; font-size:16.5px; font-weight:600; margin:26px 0 10px;
}
.legal-content p{font-size:15px; line-height:1.75; color:var(--slate); margin-bottom:14px;}
.legal-content p strong{color:var(--paper);}
.legal-content ul, .legal-content ol{margin:0 0 16px 22px; color:var(--slate); font-size:15px; line-height:1.75;}
.legal-content li{margin-bottom:8px;}
.legal-content li::marker{color:var(--cyan);}
.legal-content a{color:var(--cyan);}
.legal-content a:hover{text-decoration:underline;}
.legal-toc{
  background:var(--ink-2); border:1px solid var(--line); border-radius:14px; padding:22px 26px;
  margin-bottom:48px; max-width:760px;
}
.legal-toc h4{font-size:12.5px; color:var(--slate); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px;}
.legal-toc ol{margin:0; padding-left:20px; columns:2; column-gap:28px;}
.legal-toc li{font-size:13.5px; margin-bottom:8px; break-inside:avoid;}
.legal-toc a{color:var(--paper);}
.legal-toc a:hover{color:var(--cyan);}
@media (max-width:560px){
  .legal-toc ol{columns:1;}
}
