:root {
  --bg: #f3f7fd;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --surface-dark: #0b1633;
  --surface-dark-2: #13254f;
  --text: #10203f;
  --muted: #5f6f93;
  --border: rgba(16, 32, 63, 0.1);
  --border-strong: rgba(16, 32, 63, 0.18);
  --blue: #2264ff;
  --blue-2: #4d86ff;
  --teal: #0bb8b6;
  --green: #1ea972;
  --orange: #ff8d4d;
  --shadow: 0 30px 60px rgba(15, 32, 63, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5f8ff 0%, #eef4fc 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--light { background: rgba(255,255,255,.7); backdrop-filter: blur(12px); }
.section--dark { background: linear-gradient(135deg, #0d1838 0%, #112553 100%); color: #fff; }
.section-header { max-width: 760px; margin-bottom: 40px; }
.eyebrow { display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; background:rgba(34,100,255,.1); color:var(--blue); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.eyebrow--dark { background: rgba(255,255,255,.14); color: #d8e7ff; }
.section h1, .section h2, .section h3, .hero h1, .hero h2, .footer-grid h4, .site-header {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.section h2, .section-header h2 { margin: 16px 0 14px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.03em; }
.section-header p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.lead { font-size: 1.1rem; line-height: 1.75; color: var(--muted); }
.announcement-bar { background: #091228; color: rgba(255,255,255,.82); font-size: 14px; }
.announcement-bar__inner { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.84); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(16,32,63,.06); }
.site-header__inner { min-height: 84px; display:flex; align-items:center; gap:24px; }
.brand img { width: 170px; }
.site-nav { flex: 1; display:flex; align-items:center; justify-content:flex-end; gap: 18px; }
.nav-links { display:flex; align-items:center; gap: 6px; }
.nav-link, .nav-group__trigger { border: 0; background: transparent; padding: 12px 14px; border-radius: 12px; font-weight: 700; color: #20345f; cursor: pointer; }
.nav-link:hover, .nav-group:hover .nav-group__trigger, .nav-group.is-active .nav-group__trigger { background: rgba(34,100,255,.08); color: var(--blue); }
.nav-group { position: relative; }
.nav-group__panel { position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px; padding: 14px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--border); display: none; }
.nav-group__panel a { display:block; padding: 12px 14px; border-radius: 14px; color: #21345d; }
.nav-group__panel a:hover { background: #f4f8ff; color: var(--blue); }
.nav-group:hover .nav-group__panel { display:block; }
.header-actions { display:flex; align-items:center; gap: 12px; margin-left: 10px; }
.btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; min-height: 48px; padding: 0 20px; border-radius: 14px; font-weight: 800; transition: .2s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--blue) 0%, #2f78ff 100%); color: #fff; box-shadow: 0 12px 25px rgba(34,100,255,.22); }
.btn-primary:hover { box-shadow: 0 20px 34px rgba(34,100,255,.28); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: #f8fbff; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.16); }
.btn-block { width: 100%; }
.menu-toggle { display:none; width:52px; height:52px; border-radius:16px; border:1px solid var(--border); background:#fff; padding:14px; }
.menu-toggle span { display:block; height:2px; background:#0c1a38; margin:6px 0; border-radius:999px; }
.hero { position: relative; overflow: hidden; padding: 80px 0 64px; }
.hero::before { content:''; position:absolute; inset: 0; background: radial-gradient(circle at top left, rgba(77,134,255,.17), transparent 34%), radial-gradient(circle at right 15% top 20%, rgba(11,184,182,.16), transparent 28%); pointer-events:none; }
.hero__grid { position:relative; display:grid; grid-template-columns: 1.08fr .92fr; gap: 42px; align-items:center; }
.hero__content h1 { margin: 18px 0; font-size: clamp(2.8rem, 6vw, 5rem); line-height: .98; letter-spacing: -0.05em; }
.hero__content p { margin:0; max-width: 680px; font-size:1.12rem; line-height: 1.8; color: var(--muted); }
.hero__actions { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 30px; }
.hero__bullets { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 18px; margin-top: 30px; padding:0; list-style:none; }
.hero__bullets li { display:flex; gap:10px; align-items:flex-start; color:#27406e; }
.hero__bullets i { color: var(--green); margin-top: 4px; }
.hero-card {
  position:relative; padding: 28px; border-radius: var(--radius-xl); background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); border:1px solid rgba(34,100,255,.1); box-shadow: var(--shadow);
}
.hero-card--dark { background: linear-gradient(135deg, #0d1838, #132a5c); color:#fff; border:0; }
.hero-stack { display:grid; gap:18px; }
.dashboard-window { border-radius: 24px; background: linear-gradient(180deg, #fefefe 0%, #f0f5ff 100%); border:1px solid rgba(16,32,63,.08); padding: 18px; box-shadow: var(--shadow); }
.dashboard-top { display:flex; justify-content:space-between; align-items:center; margin-bottom: 18px; }
.dashboard-dots { display:flex; gap:8px; }
.dashboard-dots span { width:10px; height:10px; border-radius:999px; background:rgba(16,32,63,.15); }
.signal-list { display:grid; gap:14px; }
.signal { padding:16px; border-radius:18px; background:#fff; border:1px solid rgba(16,32,63,.08); display:flex; justify-content:space-between; align-items:center; gap:16px; }
.signal strong { display:block; font-size: 1rem; }
.signal span { color: var(--muted); font-size: .92rem; }
.signal-badge { min-width: 82px; text-align:center; padding:10px 12px; border-radius: 14px; font-weight: 800; color:#0d1736; background: #eaf2ff; }
.metric-strip { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:16px; margin-top: 34px; }
.metric-card { padding: 20px 22px; border-radius: 22px; background: rgba(255,255,255,.82); border:1px solid rgba(16,32,63,.08); box-shadow: 0 16px 40px rgba(15,32,63,.06); }
.metric-card strong { display:block; font-size: 2rem; line-height:1; letter-spacing:-.03em; }
.metric-card span { color: var(--muted); font-size: .96rem; }
.grid-2, .grid-3, .grid-4 { display:grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { position:relative; padding:28px; border-radius: var(--radius-lg); background: var(--surface); border:1px solid var(--border); box-shadow: 0 16px 40px rgba(15,32,63,.05); }
.card--dark { background: linear-gradient(135deg, #0d1838, #17306a); color: #fff; border: 0; }
.card--split { display:flex; flex-direction:column; gap:18px; }
.card-icon { width: 56px; height: 56px; border-radius: 18px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(34,100,255,.15), rgba(11,184,182,.15)); color: var(--blue); font-size: 22px; }
.card h3 { margin: 0; font-size: 1.4rem; letter-spacing: -.03em; }
.card p { margin: 0; color: var(--muted); line-height: 1.75; }
.card--dark p { color: rgba(255,255,255,.82); }
.card-list { padding:0; margin:0; list-style:none; display:grid; gap: 10px; }
.card-list li { display:flex; gap: 10px; color: #263f6d; }
.card-list li::before { content:'✓'; color: var(--green); font-weight: 700; }
.product-split { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-pane { padding: 34px; border-radius: var(--radius-xl); background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); border:1px solid rgba(16,32,63,.08); box-shadow: var(--shadow); }
.product-pane__head { display:flex; justify-content:space-between; gap:18px; align-items:center; margin-bottom: 20px; }
.product-pane__head .icon-badge { width: 64px; height: 64px; border-radius: 20px; display:grid; place-items:center; background: rgba(34,100,255,.12); color: var(--blue); font-size: 26px; }
.tabs { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 16px; }
.tab-button { min-height: 44px; padding: 0 16px; border-radius: 999px; border:1px solid var(--border-strong); background: #fff; color: #324772; cursor:pointer; font-weight: 700; }
.tab-button.is-active { background: #112452; color: #fff; border-color: transparent; }
.tab-panels { margin-top: 22px; }
.tab-panel { display:none; }
.tab-panel.is-active { display:block; }
.plan-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.plan-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.plan-grid--five { grid-template-columns: repeat(5, minmax(0,1fr)); }
.plan-card { position:relative; padding: 26px; border-radius: 28px; background:#fff; border:1px solid rgba(16,32,63,.1); box-shadow: var(--shadow); display:flex; flex-direction:column; gap: 18px; }
.plan-card--featured { background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%); border-color: rgba(34,100,255,.24); transform: translateY(-6px); }
.plan-badge { align-self:flex-start; padding:8px 12px; border-radius:999px; background:#e7f0ff; color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.plan-card h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.03em; }
.plan-blurb { margin: 0; color: var(--muted); line-height: 1.7; min-height: 72px; }
.plan-price { display:flex; align-items:flex-end; gap: 6px; }
.plan-price__currency { font-size: 1.3rem; font-weight: 800; padding-bottom: 10px; }
.plan-price__value { font-size: 2.8rem; line-height: 1; font-weight: 800; letter-spacing: -.05em; }
.plan-price__suffix { color: var(--muted); padding-bottom: 8px; font-weight: 700; }
.plan-features { list-style:none; padding:0; margin:0; display:grid; gap: 10px; flex:1; }
.plan-features li { display:flex; gap: 10px; color: #253d69; line-height: 1.55; }
.plan-features li::before { content:'•'; color: var(--blue); font-size: 22px; line-height: 1; margin-top: -2px; }
.plan-actions { display:grid; gap: 10px; }
.plan-note { color: var(--muted); font-size: .88rem; line-height: 1.55; border-top: 1px solid var(--border); padding-top: 14px; }
.highlight-bar { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.highlight { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); }
.highlight strong { display:block; font-size: 1.15rem; margin-bottom: 8px; }
.compare-table { overflow:auto; background:#fff; border:1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); }
.compare-table table { width:100%; border-collapse: collapse; min-width: 740px; }
.compare-table th, .compare-table td { padding: 18px 20px; text-align:left; border-bottom:1px solid rgba(16,32,63,.08); }
.compare-table th { font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: #f8fbff; }
.compare-table tr:last-child td { border-bottom:0; }
.quote-card { padding: 34px; border-radius: var(--radius-xl); background: linear-gradient(135deg, #0f1d43, #17326f); color:#fff; box-shadow: var(--shadow); }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.35rem; line-height: 1.7; letter-spacing: -.01em; }
.quote-card cite { font-style: normal; color: rgba(255,255,255,.76); }
.location-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.location-map { padding: 34px; border-radius: var(--radius-xl); background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%); border:1px solid var(--border); box-shadow: var(--shadow); min-height: 420px; position:relative; overflow:hidden; }
.world-lines { position:absolute; inset:0; opacity:.42; background-image: radial-gradient(circle at 20% 30%, rgba(34,100,255,.35) 0 3px, transparent 4px), radial-gradient(circle at 55% 42%, rgba(11,184,182,.4) 0 3px, transparent 4px), radial-gradient(circle at 70% 28%, rgba(34,100,255,.35) 0 3px, transparent 4px), linear-gradient(120deg, transparent 45%, rgba(34,100,255,.2) 45.4%, transparent 46%), linear-gradient(20deg, transparent 55%, rgba(11,184,182,.18) 55.4%, transparent 56%); }
.location-list { display:grid; gap: 16px; }
.location-card { padding: 22px; border-radius: 22px; background:#fff; border:1px solid rgba(16,32,63,.08); box-shadow: 0 12px 28px rgba(15,32,63,.05); }
.location-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.location-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.steps { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; counter-reset: steps; }
.step { position:relative; padding: 28px; border-radius: 26px; background:#fff; border:1px solid rgba(16,32,63,.08); box-shadow: var(--shadow); }
.step::before { counter-increment: steps; content: counter(steps); width: 48px; height: 48px; border-radius: 16px; display:grid; place-items:center; font-weight:800; color:#fff; background: linear-gradient(135deg, var(--blue), var(--teal)); margin-bottom: 18px; }
.step h3 { margin: 0 0 10px; font-size: 1.18rem; }
.step p { margin:0; color: var(--muted); line-height: 1.75; }
.faq-list { display:grid; gap: 16px; }
.faq-item { background:#fff; border:1px solid rgba(16,32,63,.08); border-radius: 20px; box-shadow: 0 12px 28px rgba(15,32,63,.05); padding: 0 22px; }
.faq-item summary { list-style:none; cursor:pointer; padding: 22px 36px 22px 0; font-weight: 800; position:relative; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; position:absolute; right:0; top:18px; font-size: 28px; line-height:1; color: var(--blue); }
.faq-item[open] summary::after { content:'–'; }
.faq-body { padding: 0 0 22px; color: var(--muted); line-height: 1.75; }
.cta-band { padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #0b1633, #16326b); color:#fff; display:flex; align-items:center; justify-content:space-between; gap: 24px; box-shadow: var(--shadow); }
.cta-band p { margin: 10px 0 0; color: rgba(255,255,255,.78); }
.cta-band__actions { display:flex; flex-wrap:wrap; gap: 12px; }
.content-page { padding: 64px 0 90px; }
.content-shell { max-width: 980px; margin: 0 auto; padding: 40px; border-radius: 30px; background:#fff; border:1px solid var(--border); box-shadow: var(--shadow); }
.content-shell h1 { margin:0 0 10px; font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing:-.04em; }
.content-shell h2 { margin-top: 38px; margin-bottom: 14px; font-size: 1.4rem; letter-spacing:-.03em; }
.content-shell p, .content-shell li { color: var(--muted); line-height: 1.85; }
.content-shell ul { padding-left: 20px; }
.subnav { display:flex; gap: 12px; margin-bottom: 24px; flex-wrap:wrap; }
.subnav a { padding: 10px 14px; border-radius: 999px; border:1px solid var(--border-strong); font-weight: 700; }
.subnav a.is-active { background:#0f2148; color:#fff; border-color: transparent; }
.site-footer { background: #0a1531; color: rgba(255,255,255,.78); padding-top: 72px; margin-top: 90px; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .8fr .8fr .9fr; gap: 28px; }
.footer-grid h4 { margin: 0 0 16px; color:#fff; font-size: 1rem; }
.footer-grid ul { list-style:none; padding:0; margin:0; display:grid; gap: 12px; }
.footer-grid a:hover { color:#fff; }
.footer-branding img { width: 170px; margin-bottom: 18px; }
.footer-branding p { margin: 0 0 18px; line-height: 1.8; max-width: 430px; }
.footer-meta { color: rgba(255,255,255,.58); }
.footer-bottom { margin-top: 36px; padding: 22px 0 30px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap: 20px; align-items:center; }
.footer-social { display:flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 14px; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#fff; }
.footer-social a:hover { background: rgba(255,255,255,.16); }
.empty-state { padding: 100px 0; text-align:center; }
.empty-state h1 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.05em; margin: 0 0 16px; }
.empty-state p { max-width: 560px; margin: 0 auto 28px; color: var(--muted); line-height: 1.8; }
@media (max-width: 1180px) {
  .hero__grid, .product-split, .location-grid, .grid-4, .plan-grid, .footer-grid, .highlight-bar, .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .plan-grid--five { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .metric-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 1024px) {
  .announcement-bar__right { display:none; }
  .menu-toggle { display:block; margin-left:auto; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); padding: 20px; border-radius: 28px; background:#fff; box-shadow: var(--shadow); border:1px solid var(--border); display:none; flex-direction:column; align-items:stretch; }
  .site-nav.is-open { display:flex; }
  .header-actions, .nav-links { width: 100%; flex-direction:column; align-items:stretch; }
  .nav-link, .nav-group__trigger { width:100%; text-align:left; }
  .nav-group { width: 100%; }
  .nav-group__panel { position: static; display: none; padding: 10px 0 0; box-shadow:none; border:0; }
  .nav-group.is-open .nav-group__panel { display:block; }
  .nav-group:hover .nav-group__panel { display:none; }
}
@media (max-width: 820px) {
  .hero { padding-top: 56px; }
  .hero__grid, .grid-2, .grid-3, .grid-4, .product-split, .plan-grid, .plan-grid--three, .plan-grid--five, .highlight-bar, .metric-strip, .location-grid, .footer-grid, .steps { grid-template-columns: 1fr; }
  .hero__bullets { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items:flex-start; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .content-shell { padding: 30px 22px; }
}
@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .site-header__inner { min-height: 74px; }
  .brand img { width: 150px; }
  .hero__content h1 { font-size: 2.4rem; }
  .section { padding: 72px 0; }
  .hero-card, .card, .product-pane, .location-map, .content-shell, .plan-card, .quote-card { padding: 22px; }
}
