:root {
  --navy-1000: #031427;
  --navy-950: #041c36;
  --navy-900: #062b52;
  --navy-850: #073b76;
  --navy-800: #0a477f;
  --blue-700: #075ecf;
  --blue-600: #0878e8;
  --blue-500: #12a0f5;
  --blue-200: #baddfb;
  --blue-100: #e5f2ff;
  --blue-050: #f4f9ff;
  --cyan-400: #18c7e8;
  --green-700: #08794f;
  --green-600: #0d9962;
  --green-100: #e4f7ef;
  --ink: #102846;
  --text: #314a66;
  --muted: #637a94;
  --line: #d8e5f2;
  --line-strong: #bcd2e8;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --shadow-xs: 0 8px 22px rgba(5, 43, 82, .06);
  --shadow-sm: 0 14px 34px rgba(5, 43, 82, .09);
  --shadow-md: 0 24px 58px rgba(5, 43, 82, .14);
  --shadow-lg: 0 38px 90px rgba(5, 43, 82, .2);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --shell: 1220px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 108px 0; }

.utility-bar {
  min-height: 36px;
  color: #dcecff;
  background: var(--navy-950);
  font-size: 12px;
}
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.utility-inner p { margin: 0; font-weight: 700; letter-spacing: .02em; }
.utility-contact { display: flex; align-items: center; gap: 22px; }
.utility-contact a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 650; }
.utility-contact svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 229, 242, .8);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.98); box-shadow: 0 10px 30px rgba(5,43,82,.09); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { width: 264px; flex: 0 0 264px; display: flex; align-items: center; }
.brand img { width: 100%; height: 74px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-left: auto; }
.desktop-nav a { position: relative; color: #29435f; font-size: 13px; font-weight: 750; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; border-radius: 99px; background: var(--blue-600); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.nav-cta { white-space: nowrap; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 99px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; left: 0; right: 0; top: calc(var(--header-height) + 36px); max-height: calc(100vh - var(--header-height) - 36px); overflow: auto; padding: 20px 24px 28px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
.mobile-nav.open { display: grid; gap: 4px; }
.mobile-nav > a:not(.button) { padding: 14px 8px; border-bottom: 1px solid #edf3f8; font-weight: 750; color: #29435f; }
.mobile-nav .button { margin-top: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(8,120,232,.25); outline-offset: 3px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 12px 27px rgba(7,94,207,.25); }
.button-primary:hover { box-shadow: 0 17px 34px rgba(7,94,207,.32); }
.button-secondary { color: var(--navy-850); background: #fff; border-color: #a9c7e4; box-shadow: var(--shadow-xs); }
.button-secondary:hover { border-color: var(--blue-600); box-shadow: var(--shadow-sm); }
.button-white { color: var(--navy-850); background: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.16); }
.button-large { min-height: 56px; padding: 16px 23px; border-radius: 14px; font-size: 14px; }
.button-block { width: 100%; margin-top: auto; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 99px; }
.eyebrow-centered { justify-content: center; }
.eyebrow-light { color: #78ceff; }

.hero { position: relative; overflow: hidden; padding: 80px 0 112px; background: radial-gradient(circle at 78% 15%, rgba(179,218,255,.65) 0, rgba(221,239,255,.32) 24%, transparent 48%), linear-gradient(180deg, #f9fcff 0, #fff 92%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, #c7ddef, transparent); }
.hero-orb { position: absolute; border: 1px solid rgba(8,120,232,.11); border-radius: 50%; pointer-events: none; }
.hero-orb-one { width: 620px; height: 620px; right: -270px; top: 10px; box-shadow: 0 0 0 65px rgba(8,120,232,.025), 0 0 0 130px rgba(8,120,232,.018); }
.hero-orb-two { width: 260px; height: 260px; left: -155px; bottom: -90px; box-shadow: 0 0 0 45px rgba(8,120,232,.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.hero-copy h1 { max-width: 620px; margin: 19px 0 24px; color: var(--navy-950); font-size: clamp(46px, 5vw, 70px); line-height: 1.01; letter-spacing: -.055em; }
.hero-copy h1 em { color: var(--blue-700); font-style: normal; }
.hero-copy > p { max-width: 630px; margin: 0; color: #506981; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 29px; }
.hero-fineprint { margin-top: 13px !important; color: #71859a !important; font-size: 11px !important; }
.hero-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 31px; }
.hero-checks > div { display: flex; align-items: flex-start; gap: 8px; color: #405b75; font-size: 12px; font-weight: 650; line-height: 1.45; }
.check-icon { display: grid; place-items: center; width: 20px; height: 20px; flex: 0 0 20px; color: var(--green-700); background: var(--green-100); border-radius: 50%; font-size: 11px; font-weight: 900; }

.hero-product { position: relative; min-height: 560px; }
.browser-frame { position: absolute; top: 14px; left: 0; width: 670px; overflow: hidden; background: #fff; border: 1px solid #bfd3e7; border-radius: 22px; box-shadow: var(--shadow-lg); transform: rotate(-.3deg); }
.browser-top { height: 42px; display: flex; align-items: center; gap: 8px; padding: 0 14px; background: #f3f7fb; border-bottom: 1px solid #d8e4ef; }
.browser-top > span { width: 9px; height: 9px; background: #bac8d4; border-radius: 50%; }
.browser-url { flex: 1; height: 24px; margin-left: 5px; display: flex; align-items: center; padding: 0 11px; color: #718399; background: #fff; border: 1px solid #d5e0eb; border-radius: 8px; font-size: 9px; }
.browser-screen { height: 388px; overflow: hidden; background: #eef5fb; }
.screen-link { display: block; width: 100%; height: 100%; }
.browser-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .35s ease; }
.screen-link:hover img { transform: scale(1.012); }
.product-float { position: absolute; right: 8px; bottom: -4px; width: 232px; padding: 8px; background: #fff; border: 1px solid #b8cee2; border-radius: 30px; box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.product-float::before { content: ""; display: block; width: 54px; height: 5px; margin: 2px auto 7px; background: #d4dfE9; border-radius: 999px; }
.phone-screen-link { display: block; overflow: hidden; border: 1px solid #d9e5f0; border-radius: 22px; background: #edf5fb; }
.product-float img { width: 100%; height: 410px; display: block; object-fit: cover; object-position: top; border: 0; border-radius: 21px; transition: transform .35s ease; }
.phone-screen-link:hover img { transform: scale(1.018); }
.product-float-label { position: absolute; top: -21px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: #fff; background: var(--navy-950); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: 10px; font-weight: 850; white-space: nowrap; }
.status-dot { width: 8px; height: 8px; background: #40df9e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(64,223,158,.15); }
.live-screen-note { position: absolute; right: 4px; top: 4px; padding: 8px 12px; color: var(--navy-850); background: rgba(255,255,255,.92); border: 1px solid #cfe0ef; border-radius: 10px; box-shadow: var(--shadow-xs); font-size: 10px; font-weight: 800; }

.metric-band { color: #fff; background: linear-gradient(90deg, var(--navy-950), #063e75 55%, #075a9f); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 112px; align-items: center; }
.metric { min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding: 0 32px; border-right: 1px solid rgba(255,255,255,.18); }
.metric:first-child { padding-left: 0; }
.metric:last-child { padding-right: 0; border-right: 0; }
.metric strong { font-size: 28px; line-height: 1.05; letter-spacing: -.04em; }
.metric span { margin-top: 5px; color: #bcd7ed; font-size: 12px; }

.section-heading { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { margin: 13px 0 14px; color: var(--navy-950); font-size: clamp(35px, 4vw, 48px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-heading-light h2 { color: #fff; }
.section-heading-light p { color: #c6dced; }

.platform-section { background: #fff; }
.platform-tabs { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px; background: #f2f7fc; border-bottom: 1px solid var(--line); }
.tab-button { display: flex; align-items: center; gap: 13px; min-height: 76px; padding: 12px 18px; color: #536b84; background: transparent; border: 0; border-radius: 18px; text-align: left; cursor: pointer; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.tab-button:hover { color: var(--navy-850); background: rgba(255,255,255,.68); }
.tab-button.active { color: var(--navy-850); background: #fff; box-shadow: var(--shadow-xs); }
.tab-icon { display: grid; place-items: center; width: 43px; height: 43px; flex: 0 0 43px; color: #fff; background: linear-gradient(145deg, var(--blue-700), var(--blue-500)); border-radius: 13px; font-size: 13px; font-weight: 900; box-shadow: 0 8px 20px rgba(7,94,207,.18); }
.tab-button > span:last-child { display: grid; font-weight: 850; line-height: 1.2; }
.tab-button small { margin-bottom: 3px; color: #7790a7; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tab-panel { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; min-height: 530px; }
.tab-panel[hidden] { display: none; }
.product-shot { min-height: 530px; padding: 32px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(circle at 15% 5%, #dfeeff, transparent 40%), linear-gradient(145deg, #edf6ff, #f8fbff); border-right: 1px solid var(--line); }
.product-shot > a { display: block; width: 100%; }
.product-shot img { width: 100%; max-height: 440px; object-fit: cover; object-position: top; border: 1px solid #c9dcea; border-radius: 18px; box-shadow: var(--shadow-md); transition: transform .25s ease, box-shadow .25s ease; }
.product-shot > a:hover img { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-shot-os img { object-fit: contain; background: #fff; }
.inline-product-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 11px 15px; color: var(--blue-700); background: #eef7ff; border: 1px solid #c8e0f4; border-radius: 10px; font-size: 12px; font-weight: 850; text-decoration: none; }
.inline-product-link:hover { color: #fff; background: var(--blue-700); border-color: var(--blue-700); }
.product-copy { padding: 54px 48px; display: flex; flex-direction: column; justify-content: center; }
.product-label { color: var(--blue-700); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.product-copy h3 { margin: 9px 0 13px; color: var(--navy-950); font-size: 31px; line-height: 1.18; letter-spacing: -.035em; }
.product-copy > p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.feature-check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.feature-check-list li { position: relative; padding-left: 28px; color: #3d566f; font-size: 13px; line-height: 1.55; }
.feature-check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 19px; height: 19px; color: var(--green-700); background: var(--green-100); border-radius: 50%; font-size: 10px; font-weight: 900; }

.features-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-1000), var(--navy-850) 62%, #075a9e); }
.feature-glow { position: absolute; width: 700px; height: 700px; right: -330px; top: -360px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.feature-columns { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-column { padding: 0 38px; border-right: 1px solid rgba(255,255,255,.17); }
.feature-column:first-child { padding-left: 0; }
.feature-column:last-child { padding-right: 0; border-right: 0; }
.feature-column-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.round-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; color: #8bd5ff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); border-radius: 15px; font-weight: 900; }
.feature-column-heading small { display: block; color: #83cfff; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.feature-column h3 { margin: 2px 0 0; font-size: 21px; }
.feature-column ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.feature-column li { position: relative; padding-left: 25px; color: #d3e4f1; font-size: 12.5px; line-height: 1.45; }
.feature-column li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #6de8ad; font-weight: 900; }

.markets-section { background: linear-gradient(180deg, #fff, #f6faff); }
.market-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.market-card { min-height: 290px; padding: 27px 20px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.market-card:hover { transform: translateY(-5px); border-color: #b4d2ee; box-shadow: var(--shadow-sm); }
.market-card-connected { background: linear-gradient(180deg, #fff, #f7fbff); border-style: dashed; }
.market-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 18px; color: var(--blue-700); background: linear-gradient(145deg, #e7f3ff, #fff); border: 1px solid #cfe2f4; border-radius: 19px; }
.market-icon svg { width: 39px; height: 39px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.market-card > span { color: var(--blue-700); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.market-card h3 { margin: 8px 0 9px; color: var(--navy-950); font-size: 20px; line-height: 1.2; }
.market-card p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.market-note { max-width: 920px; margin: 27px auto 0; padding: 16px 19px; color: #48627c; background: #eef6fe; border: 1px solid #cde1f3; border-radius: 14px; font-size: 12px; text-align: center; }
.market-note strong { color: var(--navy-850); }

.about-section { overflow: hidden; background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.about-copy h2 { margin: 14px 0 18px; color: var(--navy-950); font-size: clamp(36px, 4vw, 50px); line-height: 1.1; letter-spacing: -.045em; }
.about-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-points { display: grid; gap: 0; margin-top: 31px; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 45px 90px 1fr; align-items: baseline; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.about-points span { color: var(--blue-600); font-size: 12px; font-weight: 900; }
.about-points h3 { margin: 0; color: var(--navy-900); font-size: 15px; }
.about-points p { margin: 0; color: #667d94; font-size: 12.5px; }
.about-visual { position: relative; min-height: 500px; }
.about-visual::before { content: ""; position: absolute; width: 470px; height: 470px; right: -140px; top: -20px; background: radial-gradient(circle, rgba(9,122,232,.12), transparent 68%); border-radius: 50%; }
.about-screen { position: absolute; overflow: hidden; padding: 8px; background: #fff; border: 1px solid #bed3e7; border-radius: 20px; box-shadow: var(--shadow-lg); }
.about-screen img { width: 100%; border-radius: 13px; }
.about-screen-back { width: 520px; right: 20px; top: 0; transform: rotate(2deg); }
.about-screen-front { width: 570px; left: 0; bottom: 0; transform: rotate(-1.5deg); }

.pricing-section { background: var(--blue-050); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; max-width: 1120px; margin: 0 auto; }
.price-card { position: relative; padding: 33px 28px 28px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 23px; box-shadow: var(--shadow-sm); }
.price-card-featured { border: 2px solid var(--blue-600); box-shadow: 0 25px 60px rgba(7,94,207,.17); transform: translateY(-9px); }
.popular-badge { position: absolute; left: 24px; right: 24px; top: -16px; padding: 8px 12px; color: #fff; background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); border-radius: 999px; text-align: center; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.plan-label { color: var(--blue-700); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.price-card h3 { margin: 7px 0 8px; color: var(--navy-950); font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.price-card-top > p { min-height: 68px; margin: 0; color: var(--muted); font-size: 12.5px; }
.price { display: flex; align-items: flex-start; margin: 21px 0 18px; color: var(--navy-950); }
.price > span { margin-top: 7px; font-size: 19px; font-weight: 800; }
.price strong { font-size: 49px; line-height: 1; letter-spacing: -.05em; }
.price small { align-self: flex-end; margin: 0 0 5px 6px; color: var(--muted); font-size: 12px; font-weight: 800; }
.price-card > ul { display: grid; gap: 10px; margin: 0 0 26px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card > ul li { position: relative; padding-left: 25px; color: #435d77; font-size: 12.5px; line-height: 1.45; }
.price-card > ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue-700); font-weight: 900; }
.pricing-note { max-width: 940px; margin: 28px auto 0; color: #71869b; font-size: 11px; text-align: center; }
.comparison-wrap { margin-top: 70px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.comparison-heading { padding: 30px 32px 24px; border-bottom: 1px solid var(--line); }
.comparison-heading h3 { margin: 7px 0 0; color: var(--navy-950); font-size: 27px; letter-spacing: -.03em; }
.table-scroll { overflow-x: auto; }
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 15px 18px; border-bottom: 1px solid #e6eef6; text-align: center; font-size: 12.5px; }
.comparison-table thead th { color: var(--navy-850); background: #f3f8fd; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.comparison-table thead th:first-child, .comparison-table tbody th { text-align: left; }
.comparison-table tbody th { color: #3d5770; font-weight: 750; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.table-check { display: inline-grid; place-items: center; width: 25px; height: 25px; color: var(--green-700); background: var(--green-100); border-radius: 50%; font-weight: 900; }
.table-dash { color: #9aabbc; font-weight: 800; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 75px; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { margin: 14px 0 17px; color: var(--navy-950); font-size: 43px; line-height: 1.1; letter-spacing: -.045em; }
.faq-intro p { margin: 0 0 25px; color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-xs); }
.faq-list summary { position: relative; padding: 20px 58px 20px 22px; color: var(--navy-900); font-size: 14px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; right: 23px; top: 50%; width: 15px; height: 2px; background: var(--blue-600); border-radius: 99px; transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: 0; padding: 0 22px 21px; color: #607891; font-size: 13px; }
.faq-list details[open] { border-color: #bcd8ef; box-shadow: var(--shadow-sm); }

.final-cta { padding: 42px 0; color: #fff; background: linear-gradient(105deg, var(--blue-700), var(--blue-500)); }
.final-cta-inner { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 23px; }
.cta-icon { display: grid; place-items: center; width: 65px; height: 65px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); border-radius: 19px; }
.cta-icon svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.final-cta span { display: block; margin-bottom: 3px; color: #cceeff; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.final-cta h2 { max-width: 720px; margin: 0; font-size: 25px; line-height: 1.25; letter-spacing: -.025em; }

.site-footer { color: #d1e3f1; background: var(--navy-1000); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, .72fr); gap: 60px; padding: 70px 0 50px; }
.footer-brand img { width: 330px; max-height: 180px; object-fit: contain; object-position: left center; }
.footer-brand > p { max-width: 440px; margin: 10px 0 19px; color: #a9c3d7; font-size: 12.5px; }
.footer-contact-links { display: grid; gap: 5px; }
.footer-contact-links a { color: #fff; font-size: 12.5px; font-weight: 750; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column h3 { margin: 8px 0 8px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { color: #b9cede; font-size: 12.5px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 36px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.12); color: #8facbf; font-size: 10.5px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { max-width: 760px; text-align: right; }

.mobile-sticky-cta { display: none; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 950; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--navy-850); border: 0; border-radius: 13px; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(12px); pointer-events: none; cursor: pointer; transition: opacity .2s ease, transform .2s ease; }
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Legal and error pages */
.internal-hero { padding: 70px 0 58px; background: linear-gradient(180deg, #f2f8ff, #fff); border-bottom: 1px solid var(--line); }
.internal-hero h1 { margin: 13px 0 10px; color: var(--navy-950); font-size: 46px; letter-spacing: -.045em; }
.internal-hero p { max-width: 720px; margin: 0; color: var(--muted); }
.legal-content { padding: 72px 0 100px; }
.legal-card { max-width: 900px; padding: 44px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.legal-card h2 { margin: 34px 0 10px; color: var(--navy-900); font-size: 23px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #536d85; font-size: 14px; }
.legal-card a { color: var(--blue-700); font-weight: 750; }
.error-page { min-height: calc(100vh - 86px); display: grid; place-items: center; padding: 60px 24px; background: radial-gradient(circle at 50% 20%, #dfeeff, transparent 45%), #f7fbff; text-align: center; }
.error-card { max-width: 650px; padding: 52px; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-md); }
.error-code { color: var(--blue-600); font-size: 88px; font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.error-card h1 { margin: 10px 0; color: var(--navy-950); font-size: 34px; }
.error-card p { margin: 0 0 24px; color: var(--muted); }

@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .brand { width: 225px; flex-basis: 225px; }
  .nav-cta { padding-inline: 15px; }
  .hero-grid { gap: 45px; }
  .browser-frame { width: 620px; }
  .product-float { width: 218px; }
  .market-grid { grid-template-columns: repeat(3, 1fr); }
  .market-card:nth-child(4), .market-card:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 1020px) {
  :root { --header-height: 78px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .brand { width: 235px; flex-basis: 235px; }
  .brand img { height: 68px; }
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-product { min-height: 610px; max-width: 760px; width: 100%; margin-inline: auto; }
  .browser-frame { width: 680px; }
  .product-float { right: 18px; }
  .tab-panel { grid-template-columns: 1fr; }
  .product-shot { min-height: 430px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-columns { grid-template-columns: 1fr; gap: 38px; }
  .feature-column, .feature-column:first-child, .feature-column:last-child { padding: 0 0 38px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .feature-column:last-child { padding-bottom: 0; border-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 530px; max-width: 760px; width: 100%; margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; max-width: 720px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 32px, var(--shell)); }
  .section { padding: 82px 0; }
  .utility-inner { justify-content: center; }
  .utility-inner > p { display: none; }
  .utility-contact { width: 100%; justify-content: space-between; gap: 12px; }
  .utility-contact a { font-size: 10px; }
  .mobile-nav { top: calc(var(--header-height) + 36px); }
  .hero { padding: 54px 0 84px; }
  .hero-copy h1 { font-size: 49px; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-product { min-height: 495px; }
  .browser-frame { width: 100%; }
  .browser-screen { height: 330px; }
  .product-float { width: 215px; right: 12px; bottom: -8px; }
  .product-float img { height: 375px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); padding: 16px 0; }
  .metric { min-height: 80px; padding: 14px 18px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
  .metric:first-child { padding-left: 18px; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(3), .metric:nth-child(4) { border-bottom: 0; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-button { min-height: 64px; }
  .product-shot { min-height: 340px; padding: 22px; }
  .product-copy { padding: 36px 28px 40px; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .market-card { min-height: 260px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 570px; }
  .price-card-featured { transform: none; margin-top: 15px; }
  .about-points > div { grid-template-columns: 40px 88px 1fr; }
  .final-cta-inner { grid-template-columns: 60px 1fr; }
  .final-cta-inner .button { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 560px) {
  body { padding-bottom: 62px; }
  .utility-contact a:first-child { display: none; }
  .utility-contact { justify-content: center; }
  .brand { width: 205px; flex-basis: 205px; }
  .brand img { height: 62px; }
  .hero-copy h1 { font-size: 41px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-product { min-height: 400px; }
  .browser-top { height: 34px; }
  .browser-screen { height: 275px; }
  .product-float { width: 168px; right: 5px; padding: 6px; border-radius: 23px; }
  .product-float::before { width: 42px; height: 4px; margin-bottom: 5px; }
  .product-float img { height: 292px; border-radius: 16px; }
  .phone-screen-link { border-radius: 17px; }
  .product-float-label { left: 50%; top: -15px; padding: 7px 10px; font-size: 8px; }
  .live-screen-note { display: none; }
  .metric strong { font-size: 23px; }
  .section-heading h2 { font-size: 35px; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card { min-height: auto; }
  .about-points > div { grid-template-columns: 35px 1fr; gap: 8px; }
  .about-points p { grid-column: 2; }
  .about-visual { min-height: 370px; }
  .about-screen-back { width: 88%; right: 0; }
  .about-screen-front { width: 92%; }
  .faq-intro h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { width: 270px; }
  .mobile-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 990; display: flex; align-items: center; justify-content: center; height: 62px; color: #fff; background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); box-shadow: 0 -10px 30px rgba(5,43,82,.18); font-size: 14px; font-weight: 900; }
  .back-to-top { bottom: 78px; }
  .legal-card { padding: 30px 22px; }
  .internal-hero h1 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
