:root{--navy:#0F1C2C;--navy-2:#1a2e3a;--teal:#2A6767;--teal-light:#D0ECE8;--mint:#EFFCF9;--white:#FFFFFF;--border:#E9F6F3;--muted:#4A6B65;--warning:#B45309;--danger:#B91C1C;--f:'Manrope',sans-serif /* @kind font */}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--f);background:var(--white);color:var(--navy);-webkit-font-smoothing:antialiased}
a{color:var(--teal);text-decoration:none}
a:hover{color:var(--navy)}
img{max-width:100%;display:block}
.wrap{max-width:1120px;margin:0 auto;padding:0 24px}
section{padding:88px 24px}
@media (max-width:768px){section{padding:56px 20px}}

/* announcement bar */
.announce{background:var(--navy);color:rgba(255,255,255,.85);text-align:center;font-size:13px;font-weight:600;padding:9px 16px;letter-spacing:.01em}

/* nav */
nav{position:sticky;top:0;background:rgba(255,255,255,.96);backdrop-filter:blur(8px);border-bottom:1px solid var(--border);z-index:50}
.nav-inner{max-width:1120px;margin:0 auto;padding:14px 24px;display:flex;align-items:center;justify-content:space-between}
.nav-brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-logo{height:34px;width:auto;display:block}
.nav-brand-name{font-size:16px;font-weight:800;color:var(--navy);letter-spacing:-.01em;line-height:1.2}
.nav-brand-name small{display:block;font-size:10.5px;font-weight:600;color:var(--muted);letter-spacing:.03em;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:24px;list-style:none}
.nav-links a{font-size:14px;font-weight:500;color:var(--navy);opacity:.75;transition:opacity .15s}
.nav-links a:hover{opacity:1;color:var(--navy)}
.nav-dropdown{position:relative}
.nav-dropdown>a{display:flex;align-items:center;gap:4px;cursor:pointer}
.nav-dropdown>a::after{content:'▾';font-size:9px;opacity:.6;transition:transform .15s}
.nav-dropdown.open>a::after{transform:rotate(180deg)}
.nav-dropdown-menu{list-style:none!important;display:none;position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%);background:var(--white);border:1px solid var(--border);border-radius:10px;box-shadow:0 12px 28px -8px rgba(15,28,44,.2);padding:6px;margin:0;min-width:180px;z-index:60}
.nav-dropdown.open .nav-dropdown-menu{display:block}
.nav-dropdown-menu li a{display:block;padding:9px 12px;font-size:13.5px;opacity:1;border-radius:6px;white-space:nowrap}
.nav-dropdown-menu li a:hover{background:var(--mint)}
@media (max-width:1040px){
  .nav-dropdown-menu{display:none;position:static;transform:none;border:none;box-shadow:none;margin:0;padding:0 0 0 14px;background:transparent}
  .nav-dropdown.open .nav-dropdown-menu{display:block}
  .nav-dropdown>a::after{display:none}
  .nav-dropdown-menu li a{border-bottom:1px solid var(--border);padding:10px 0}
}
.nav-ctas{display:flex;align-items:center;gap:10px}
.btn-nav{background:var(--teal);color:var(--white)!important;padding:9px 16px;border-radius:8px;font-weight:600;font-size:13.5px;white-space:nowrap}
.btn-nav:hover{background:var(--navy)!important}
.btn-nav-ghost{border:1px solid var(--border);color:var(--navy)!important;padding:8px 15px;border-radius:8px;font-weight:600;font-size:13.5px;white-space:nowrap}
.btn-nav-ghost:hover{background:var(--mint)}
.hamburger{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:6px}
.hamburger span{width:22px;height:2px;background:var(--navy);display:block;border-radius:2px}
@media (max-width:1080px) and (min-width:1041px){
  .nav-links{gap:16px}
  .nav-links a{font-size:13px}
}
@media (max-width:1040px){
  .nav-links{display:none;position:absolute;top:64px;left:0;right:0;background:var(--white);flex-direction:column;align-items:flex-start;gap:0;border-bottom:1px solid var(--border);padding:8px 24px}
  .nav-links.open{display:flex}
  .nav-links a{padding:12px 0;width:100%;border-bottom:1px solid var(--border);opacity:1}
  .hamburger{display:flex}
  .nav-ctas .btn-nav-ghost{display:none}
}

/* buttons */
.btn-primary{background:var(--teal);color:var(--white)!important;padding:14px 26px;border-radius:10px;font-weight:600;font-size:15px;display:inline-block;transition:background .15s}
.btn-primary:hover{background:#235656}
.btn-secondary{background:rgba(255,255,255,.1);color:var(--white)!important;border:1px solid rgba(255,255,255,.24);padding:14px 26px;border-radius:10px;font-weight:600;font-size:15px;display:inline-block}
.btn-secondary:hover{background:rgba(255,255,255,.18)}
.btn-outline{background:var(--white);color:var(--teal)!important;border:1px solid var(--border);padding:13px 24px;border-radius:10px;font-weight:600;font-size:15px;display:inline-block}
.btn-outline:hover{background:var(--mint)}

/* hero */
.hero{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%);padding:96px 24px 76px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-60px;right:-80px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(45,196,191,.14),transparent 70%);pointer-events:none}
.hero-inner{max-width:1120px;margin:0 auto;position:relative;z-index:1}
.eyebrow{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal);margin-bottom:12px;display:block}
.eyebrow-light{color:#7fd8d2}
h1{font-size:clamp(32px,4.6vw,50px);font-weight:700;color:var(--white);line-height:1.15;letter-spacing:-.02em;margin-bottom:20px;max-width:760px}
.hero-sub{font-size:17px;color:rgba(255,255,255,.72);line-height:1.65;max-width:600px;margin-bottom:32px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:8px}

/* trust strip */
.trust-strip{background:var(--mint);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:20px 24px}
.trust-inner{max-width:1120px;margin:0 auto;display:flex;flex-wrap:wrap;gap:12px 28px;justify-content:center;align-items:center}
.trust-item{font-size:13px;font-weight:600;color:var(--muted);display:flex;align-items:center;gap:7px}
.trust-item::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--teal);flex-shrink:0}

/* section heads */
.section-head{max-width:640px;margin:0 auto 52px}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto}
.section-title{font-size:clamp(26px,3vw,34px);font-weight:700;letter-spacing:-.01em;color:var(--navy);margin-bottom:14px}
.section-desc{font-size:16px;color:var(--muted);line-height:1.65}

/* generic grids/cards */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media (max-width:1080px){.grid-4{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:700px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}
.card{background:var(--mint);border:1px solid var(--border);border-radius:14px;padding:28px 24px}
.card-white{background:var(--white);border:1px solid var(--border);border-radius:14px;padding:26px 22px}
.card h3{font-size:17px;font-weight:600;color:var(--navy);margin-bottom:10px;letter-spacing:-.01em}
.card p{font-size:14px;color:var(--muted);line-height:1.65}
.tag-num{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;color:var(--teal);margin-bottom:14px}
.tag-num::before{content:'';display:inline-block;width:18px;height:2px;background:var(--teal);vertical-align:middle;margin-right:8px;transform:translateY(-1px)}

/* screenshot placeholder frame */
.screen-frame{background:var(--navy);border-radius:16px;padding:10px;box-shadow:0 30px 60px -20px rgba(15,28,44,.35)}
.screen-placeholder{background:var(--mint);border:2px dashed var(--border);border-radius:10px;aspect-ratio:16/10;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--muted);text-align:center;padding:20px}
.screen-placeholder .icon{width:44px;height:44px;border-radius:10px;background:var(--teal-light);display:flex;align-items:center;justify-content:center;color:var(--teal);font-size:20px;font-weight:700}
.screen-placeholder .label{font-size:13px;font-weight:600}
.screen-placeholder .path{font-size:11px;font-family:monospace;color:var(--muted);opacity:.8}

/* comparison table */
.compare-table{width:100%;border-collapse:collapse;background:var(--white);border:1px solid var(--border);border-radius:14px;overflow:hidden}
.compare-table th,.compare-table td{padding:14px 18px;text-align:left;font-size:14px;border-bottom:1px solid var(--border)}
.compare-table th{background:var(--navy);color:var(--white);font-weight:700;font-size:13px}
.compare-table td{color:var(--muted)}
.compare-table tr:last-child td{border-bottom:none}
.compare-table td:first-child{color:var(--navy);font-weight:600}

/* module spotlight sections */
.module-block{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;padding:56px 0}
.module-block.reverse{direction:rtl}
.module-block.reverse>*{direction:ltr}
@media (max-width:900px){.module-block{grid-template-columns:1fr}.module-block.reverse{direction:ltr}}
.module-list{display:flex;flex-direction:column;gap:12px;margin:18px 0 22px}
.module-list li{list-style:none;font-size:14.5px;color:var(--muted);display:flex;gap:10px;align-items:flex-start;line-height:1.55}
.module-list li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--teal);margin-top:8px;flex-shrink:0}

/* network diagram */
.net-diagram{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;padding:32px;background:var(--mint);border:1px solid var(--border);border-radius:16px}
.net-node{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:16px 18px;text-align:center;min-width:120px;box-shadow:0 4px 14px -6px rgba(15,28,44,.1)}
.net-node .net-icon{width:34px;height:34px;border-radius:8px;background:var(--teal-light);color:var(--teal);display:flex;align-items:center;justify-content:center;margin:0 auto 8px;font-weight:700}
.net-node .net-label{font-size:12.5px;font-weight:600;color:var(--navy)}
.net-line{flex:0 0 auto;width:40px;height:2px;background:var(--teal);position:relative}
@media (max-width:700px){.net-line{width:2px;height:24px}}

/* pricing */
.pricing-card{background:var(--white);border:2px solid var(--teal);border-radius:20px;padding:40px 36px;max-width:460px;margin:0 auto;position:relative;box-shadow:0 30px 60px -30px rgba(15,28,44,.25)}
.pricing-price{font-size:44px;font-weight:800;color:var(--navy);letter-spacing:-.02em;margin:6px 0 4px}
.pricing-price span{font-size:16px;font-weight:600;color:var(--muted)}
.pricing-list{margin:24px 0;display:flex;flex-direction:column;gap:11px}
.pricing-list li{list-style:none;font-size:14.5px;color:var(--muted);display:flex;gap:10px;align-items:flex-start}
.pricing-list li::before{content:'✓';color:var(--teal);font-weight:700;flex-shrink:0}
.pricing-note{background:var(--mint);border:1px solid var(--border);border-radius:10px;padding:14px 16px;font-size:12.5px;color:var(--muted);margin-top:20px;line-height:1.6}

/* faq accordion */
.faq-item{border-bottom:1px solid var(--border)}
.faq-item:last-child{border-bottom:none}
.faq-q{width:100%;text-align:left;background:var(--white);border:none;padding:20px 24px;font-family:var(--f);font-size:15px;font-weight:600;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq-q:hover{background:var(--mint)}
.faq-q .faq-arrow{font-size:18px;color:var(--teal);transition:transform .2s;flex-shrink:0}
.faq-item.open .faq-arrow{transform:rotate(45deg)}
.faq-a{display:none;padding:0 24px 20px;font-size:14px;color:var(--muted);line-height:1.7;background:var(--white)}
.faq-item.open .faq-a{display:block}
.faq-wrap{border:1px solid var(--border);border-radius:14px;overflow:hidden}

/* spotlight/cta */
.section-cta{background:var(--navy);text-align:center}
.section-cta h2{font-size:clamp(26px,3.4vw,36px);font-weight:700;color:var(--white);margin-bottom:16px;letter-spacing:-.01em}
.section-cta p{font-size:16px;color:rgba(255,255,255,.65);margin-bottom:32px;max-width:480px;margin-left:auto;margin-right:auto}
.cta-btns{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}

/* footer */
footer{background:var(--navy);padding:52px 24px 28px}
.footer-inner{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:28px}
@media (max-width:700px){.footer-inner{grid-template-columns:1fr}}
.error-wrap{max-width:600px;margin:0 auto;padding:100px 24px;text-align:center}
.error-code{font-size:clamp(64px,10vw,110px);font-weight:800;color:var(--teal);letter-spacing:-.03em;line-height:1}
.timeline-item{display:flex;gap:18px;padding:18px 0;border-bottom:1px solid var(--border)}
.timeline-item:last-child{border-bottom:none}
.timeline-tag{flex-shrink:0;font-size:11px;font-weight:700;color:var(--white);background:var(--teal);border-radius:6px;padding:5px 10px;height:fit-content;white-space:nowrap}
.step-num{width:32px;height:32px;border-radius:50%;background:var(--teal);color:var(--white);font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.step-row{display:flex;gap:16px;margin-bottom:24px;align-items:flex-start}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-logo{height:28px;filter:brightness(0) invert(1);opacity:.9}
.footer-brand-name{color:var(--white);font-weight:700;font-size:15px}
.footer-desc{font-size:13px;color:rgba(255,255,255,.45);line-height:1.6;max-width:260px}
.footer-col h4{font-size:12px;font-weight:700;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.08em;margin-bottom:14px}
.footer-links{display:flex;flex-direction:column;gap:9px;list-style:none}
.footer-links a{font-size:13.5px;color:rgba(255,255,255,.65)}
.footer-links a:hover{color:var(--white)}
.footer-copy{font-size:12px;color:rgba(255,255,255,.3);max-width:1120px;margin:32px auto 0;padding-top:22px;border-top:1px solid rgba(255,255,255,.08);text-align:center}

/* legal pages */
.legal-hero{background:var(--mint);padding:64px 24px 40px;text-align:center}
.legal-hero h1{font-size:clamp(28px,3.6vw,38px);font-weight:700;color:var(--navy);margin-bottom:10px;max-width:none}
.legal-hero p{font-size:14px;color:var(--muted)}
.legal-body{max-width:740px;margin:0 auto;padding:56px 24px 96px}
.legal-body h2{font-size:19px;font-weight:700;color:var(--navy);margin:36px 0 12px}
.legal-body h2:first-of-type{margin-top:0}
.legal-body p{font-size:15px;line-height:1.75;color:var(--muted);margin-bottom:14px}
.legal-body ul{margin:0 0 14px 20px;color:var(--muted);font-size:15px;line-height:1.75}
.legal-body li{margin-bottom:6px}
.legal-body strong{color:var(--navy)}
.contact-box{background:var(--mint);border:1px solid var(--border);border-radius:12px;padding:20px 24px;margin-top:32px}

/* badges */
.badge{display:inline-block;background:var(--teal-light);color:var(--teal);font-size:11px;font-weight:700;padding:4px 10px;border-radius:20px;letter-spacing:.03em}

/* toggle (pricing/billing) */
.dev-note{background:#FEF3E7;border:1px dashed var(--warning);border-radius:10px;padding:14px 16px;font-size:12.5px;color:#92400E;margin:16px 0}
