
:root {
  --bg: #080d14;
  --bg-soft: #0d141e;
  --panel: #111a26;
  --panel-2: #162131;
  --text: #f4f7fb;
  --muted: #9aa8b9;
  --line: rgba(255,255,255,.09);
  --red: #ef313d;
  --red-bright: #ff4450;
  --red-dark: #b91824;
  --max: 1180px;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,13,20,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:850; font-size:1.12rem; letter-spacing:-.03em; }
.brand > span:last-child > span { color: var(--red); }
.brand-mark { width: 34px; height: 34px; color: var(--red); display:block; }
.brand-mark svg { width:100%; height:100%; }
.mark-cut { fill: var(--bg); }
.main-nav { display:flex; align-items:center; gap:28px; color:#c9d2de; font-size:.92rem; font-weight:650; }
.main-nav > a:not(.button) { transition:color .2s ease; }
.main-nav > a:not(.button):hover { color:#fff; }
.nav-toggle { display:none; padding:8px; border:0; background:transparent; }
.nav-toggle span:not(.sr-only) { width:24px; height:2px; background:#fff; display:block; margin:5px 0; }

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:8px;
  border:1px solid var(--red);
  background:linear-gradient(180deg,var(--red-bright),var(--red-dark));
  color:#fff;
  font-weight:800;
  font-size:.94rem;
  box-shadow:0 10px 26px rgba(239,49,61,.18);
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
  cursor:pointer;
}
.button:hover { transform:translateY(-2px); filter:brightness(1.07); }
.button-small { min-height:42px; padding:0 17px; border-radius:7px; }
.button-secondary { background:rgba(255,255,255,.035); border-color:rgba(255,255,255,.18); box-shadow:none; }
.button-full { width:100%; }

.hero {
  position:relative;
  overflow:hidden;
  padding:105px 0 44px;
  background:
    radial-gradient(circle at 75% 25%, rgba(239,49,61,.14), transparent 25%),
    radial-gradient(circle at 50% -20%, rgba(71,100,136,.15), transparent 36%),
    linear-gradient(180deg,#0a1018 0%,#080d14 100%);
}
.hero-grid {
  position:absolute; inset:0;
  opacity:.15;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.07) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,black,transparent 85%);
}
.hero-layout { position:relative; display:grid; grid-template-columns:.88fr 1.12fr; gap:66px; align-items:center; }
.eyebrow {
  display:inline-flex; align-items:center; gap:9px;
  color:#ff7078; text-transform:uppercase; font-size:.76rem; font-weight:850; letter-spacing:.15em;
  margin-bottom:18px;
}
.status-dot { width:7px; height:7px; background:var(--red); border-radius:50%; box-shadow:0 0 0 5px rgba(239,49,61,.12); }
h1,h2,h3,p { margin-top:0; }
h1 { font-size:clamp(3rem,6vw,5.65rem); line-height:.95; letter-spacing:-.065em; margin-bottom:28px; }
h1 span { color:#ff515b; }
.hero-lead { color:#b7c2d0; font-size:1.13rem; max-width:650px; margin-bottom:30px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; }
.hero-note { margin-top:18px; color:#8290a1; font-size:.9rem; }
.hero-note strong { color:#fff; }

.dashboard-shell {
  position:relative;
  padding:1px;
  border-radius:16px;
  background:linear-gradient(145deg,rgba(255,255,255,.2),rgba(255,255,255,.025));
  box-shadow:var(--shadow);
  transform:perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.dashboard-shell::before {
  content:""; position:absolute; width:170px; height:170px; background:rgba(239,49,61,.25); filter:blur(75px); right:-35px; top:-25px; z-index:-1;
}
.dash-topbar { height:52px; background:#0c131d; border-radius:15px 15px 0 0; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; padding:0 18px; }
.dash-brand { font-size:.72rem; font-weight:900; letter-spacing:.05em; }
.dash-brand span { color:var(--red); }
.live-pill { display:flex; align-items:center; gap:6px; color:#8fc8a0; font-size:.55rem; font-weight:850; letter-spacing:.11em; }
.live-pill span { width:6px; height:6px; background:#4fd176; border-radius:50%; box-shadow:0 0 8px #4fd176; }
.dash-body { padding:16px; background:#0a111a; border-radius:0 0 15px 15px; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.metric-card,.chart-card,.map-card { background:#101a27; border:1px solid rgba(255,255,255,.065); border-radius:9px; }
.metric-card { padding:14px; min-height:100px; }
.metric-card span { display:block; color:#8290a1; font-size:.6rem; text-transform:uppercase; letter-spacing:.08em; }
.metric-card strong { display:block; font-size:1.45rem; line-height:1.15; margin:9px 0 7px; letter-spacing:-.04em; }
.metric-card small { color:#6e7c8d; font-size:.56rem; }
.metric-primary { background:linear-gradient(145deg,rgba(239,49,61,.18),#111b28 72%); }
.metric-primary strong { color:#ff5963; }
.chart-card { grid-column:span 2; padding:15px; }
.map-card { grid-column:span 2; padding:15px; }
.card-heading { display:flex; justify-content:space-between; align-items:center; font-size:.64rem; font-weight:800; }
.card-heading small { color:#667587; font-weight:600; }
.bars { height:125px; display:flex; align-items:flex-end; gap:6px; padding-top:15px; }
.bars i { flex:1; height:var(--h); background:linear-gradient(180deg,#ef3d48,#8d222b); border-radius:3px 3px 1px 1px; opacity:.8; }
.fake-map { height:125px; margin-top:15px; overflow:hidden; border-radius:5px; position:relative; background:#0c1621; }
.road { position:absolute; height:1px; background:#344152; transform-origin:left; opacity:.85; }
.r1 { width:120%; left:-5%; top:38%; transform:rotate(14deg); }
.r2 { width:100%; left:4%; top:72%; transform:rotate(-18deg); }
.r3 { width:80%; left:27%; top:5%; transform:rotate(71deg); }
.r4 { width:70%; left:3%; top:90%; transform:rotate(-58deg); }
.heat { position:absolute; width:35px; height:35px; border-radius:50%; background:rgba(239,49,61,.24); filter:blur(5px); box-shadow:0 0 20px rgba(239,49,61,.5); }
.h1{left:15%;top:24%}.h2{left:48%;top:38%;width:50px;height:50px}.h3{right:9%;bottom:8%}.h4{left:34%;bottom:0}
.map-pin { position:absolute; width:7px; height:7px; background:#ff6069; border:2px solid #fff; border-radius:50%; box-shadow:0 0 0 3px rgba(239,49,61,.25); }
.p1{left:25%;top:49%}.p2{left:60%;top:31%}.p3{right:18%;bottom:24%}
.trust-row { position:relative; margin-top:65px; padding-top:26px; border-top:1px solid var(--line); display:flex; justify-content:center; align-items:center; gap:22px; color:#586779; font-size:.62rem; letter-spacing:.16em; font-weight:800; }
.trust-row i { width:3px; height:3px; background:#7e8996; border-radius:50%; }

.section { padding:105px 0; }
.section-dark { background:#0b121b; border-block:1px solid var(--line); }
.section-heading { max-width:720px; margin-bottom:48px; }
.section-heading.centered { text-align:center; margin-inline:auto; }
.section-heading h2,.section-copy h2 { font-size:clamp(2.3rem,4vw,4rem); line-height:1.03; letter-spacing:-.05em; margin-bottom:21px; }
.section-heading p,.section-copy p { color:var(--muted); font-size:1.04rem; }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; }
.feature-card { background:linear-gradient(145deg,#111a26,#0d151f); border:1px solid var(--line); padding:29px; border-radius:12px; transition:transform .25s ease,border-color .25s ease; }
.feature-card:hover { transform:translateY(-4px); border-color:rgba(239,49,61,.35); }
.feature-icon { color:var(--red); font-size:.7rem; letter-spacing:.12em; font-weight:900; margin-bottom:35px; }
.feature-card h3 { font-size:1.16rem; margin-bottom:12px; }
.feature-card p { color:#8594a6; font-size:.92rem; margin:0; }

.split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.check-list { list-style:none; padding:0; margin:31px 0 0; display:grid; gap:13px; color:#c9d3de; }
.check-list li { position:relative; padding-left:28px; }
.check-list li::before { content:""; position:absolute; left:0; top:.52em; width:12px; height:7px; border-left:2px solid var(--red); border-bottom:2px solid var(--red); transform:rotate(-45deg); }
.insight-panel { background:linear-gradient(145deg,#151f2c,#0c141e); border:1px solid var(--line); border-radius:15px; padding:30px; box-shadow:var(--shadow); }
.insight-label { color:#ff616b; font-size:.68rem; letter-spacing:.15em; font-weight:900; }
.insight-question { font-size:1.65rem; letter-spacing:-.04em; font-weight:800; margin:10px 0 28px; }
.week-chart { height:190px; display:flex; align-items:flex-end; gap:10px; border-bottom:1px solid var(--line); }
.week-chart > div { flex:1; height:100%; display:flex; flex-direction:column; justify-content:flex-end; gap:10px; align-items:center; }
.week-chart span { width:100%; height:var(--v); max-width:40px; background:#263344; border-radius:4px 4px 0 0; }
.week-chart .active span { background:linear-gradient(#f54a55,#ae202a); }
.week-chart small { font-size:.55rem; color:#708095; padding-bottom:8px; }
.insight-answer { display:flex; align-items:center; gap:15px; margin-top:19px; }
.insight-answer strong { font-size:1.4rem; color:#fff; }
.insight-answer span { color:#76869a; font-size:.78rem; }

.workflow-section { background:linear-gradient(180deg,#080d14,#0a1018); }
.workflow { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.workflow-step { padding:28px 28px 0 0; position:relative; }
.workflow-step::before { content:""; position:absolute; top:-4px; left:0; width:8px; height:8px; background:var(--red); border-radius:50%; box-shadow:0 0 0 5px rgba(239,49,61,.12); }
.workflow-step > span { color:#5f6d7f; font-size:.65rem; font-weight:900; letter-spacing:.12em; }
.workflow-step h3 { margin:13px 0 9px; font-size:1rem; }
.workflow-step p { color:#8290a1; font-size:.86rem; }

.pricing-section { background:radial-gradient(circle at 72% 45%,rgba(239,49,61,.08),transparent 28%),#0b1119; }
.pricing-layout { display:grid; grid-template-columns:.95fr 1.05fr; gap:80px; align-items:center; }
.pricing-card { background:#111a26; border:1px solid rgba(255,255,255,.11); border-radius:15px; padding:36px; box-shadow:var(--shadow); }
.pricing-top { border-bottom:1px solid var(--line); padding-bottom:28px; margin-bottom:27px; }
.pricing-top > span { color:#ff6069; font-size:.67rem; font-weight:900; letter-spacing:.13em; }
.price { display:flex; align-items:baseline; gap:7px; margin-top:17px; }
.price small { align-self:flex-start; margin-top:13px; color:#8392a4; font-size:.72rem; }
.price strong { font-size:4rem; line-height:1; letter-spacing:-.07em; }
.price > span { color:#8796a9; }
.annual { color:#8c9bad; margin-top:12px; }
.annual strong { color:#fff; }
.annual span { color:#70bd86; font-size:.83rem; }
.pricing-card ul { list-style:none; padding:0; margin:0 0 27px; display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; color:#c1ccd8; font-size:.88rem; }
.pricing-card li { position:relative; padding-left:20px; }
.pricing-card li::before { content:"+"; position:absolute; left:0; color:var(--red); font-weight:900; }
.pricing-footnote,.pricing-disclaimer { color:#657487 !important; font-size:.78rem !important; }
.pricing-footnote { text-align:center; margin:15px 0 0; }

.about-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:90px; align-items:center; }
.about-badge { border:1px solid rgba(239,49,61,.35); border-radius:14px; padding:38px; min-height:310px; display:flex; flex-direction:column; justify-content:center; background:linear-gradient(145deg,rgba(239,49,61,.1),rgba(255,255,255,.015)); }
.about-badge > span { color:#ff5c66; font-size:.68rem; letter-spacing:.18em; font-weight:900; margin-bottom:13px; }
.about-badge strong { font-size:2.6rem; line-height:.98; letter-spacing:-.05em; }
.about-badge small { color:#7d8ca0; margin-top:30px; max-width:230px; }

.demo-section { padding-top:70px; padding-bottom:70px; }
.demo-box { display:flex; align-items:center; justify-content:space-between; gap:50px; padding:45px 50px; border-radius:15px; background:linear-gradient(110deg,#131e2b,#121923); border:1px solid var(--line); }
.demo-box h2 { font-size:clamp(2rem,4vw,3.25rem); letter-spacing:-.05em; line-height:1.04; margin-bottom:12px; }
.demo-box p { color:#8e9cae; max-width:680px; margin-bottom:0; }

.contact-section { background:#0c131d; border-top:1px solid var(--line); }
.contact-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.contact-note { margin-top:30px; padding:18px; border-left:2px solid var(--red); background:rgba(255,255,255,.025); color:#7d8b9d; font-size:.8rem; }
.contact-note strong { display:block; color:#fff; margin-bottom:4px; }
.contact-note code { color:#c7d0dc; }
.contact-form { background:#111a26; border:1px solid var(--line); padding:30px; border-radius:13px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:15px; }
label { display:block; color:#aebaca; font-size:.75rem; font-weight:750; margin-bottom:15px; }
input,textarea,select { width:100%; margin-top:7px; border:1px solid rgba(255,255,255,.1); background:#0b121b; color:#fff; border-radius:7px; padding:13px 14px; outline:none; transition:border-color .2s ease; }
input:focus,textarea:focus,select:focus { border-color:var(--red); }
textarea { resize:vertical; }
.form-note { display:block; margin-top:13px; color:#667587; line-height:1.4; }

footer { background:#070b11; padding:55px 0 24px; border-top:1px solid rgba(255,255,255,.05); }
.footer-grid { display:flex; align-items:flex-start; justify-content:space-between; gap:40px; }
.footer-grid p { color:#657386; font-size:.84rem; max-width:390px; margin:16px 0 0; }
.footer-links { display:flex; flex-wrap:wrap; gap:22px; color:#8190a3; font-size:.82rem; font-weight:700; }
.footer-links a:hover { color:#fff; }
.footer-bottom { border-top:1px solid var(--line); margin-top:40px; padding-top:20px; display:flex; justify-content:space-between; gap:30px; color:#4e5c6c; font-size:.72rem; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
}

@media (max-width: 900px) {
  .nav-toggle { display:block; }
  .main-nav {
    position:absolute; top:74px; left:0; right:0; padding:22px;
    background:#0a111a; border-bottom:1px solid var(--line);
    flex-direction:column; align-items:stretch; gap:5px;
    display:none;
  }
  .main-nav.open { display:flex; }
  .main-nav a { padding:10px; }
  .hero { padding-top:78px; }
  .hero-layout,.split,.pricing-layout,.about-layout,.contact-layout { grid-template-columns:1fr; gap:50px; }
  .dashboard-shell { transform:none; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .workflow { grid-template-columns:1fr 1fr; gap:35px 0; }
  .demo-box { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 620px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .hero { padding-top:62px; }
  .hero-layout { gap:38px; }
  h1 { font-size:3.15rem; }
  .section { padding:78px 0; }
  .feature-grid { grid-template-columns:1fr; }
  .dash-body { grid-template-columns:1fr 1fr; }
  .chart-card,.map-card { grid-column:span 2; }
  .trust-row { flex-wrap:wrap; gap:10px 15px; }
  .workflow { grid-template-columns:1fr; border-top:0; }
  .workflow-step { border-top:1px solid var(--line); padding-top:25px; }
  .pricing-card ul { grid-template-columns:1fr; }
  .price { flex-wrap:wrap; }
  .price strong { font-size:3.4rem; }
  .field-row { grid-template-columns:1fr; gap:0; }
  .demo-box { padding:32px 26px; }
  .footer-grid,.footer-bottom { flex-direction:column; }
}

.footer-bottom a { color:#7f8fa2; font-weight:700; transition:color .2s ease; }
.footer-bottom a:hover { color:#fff; }

.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-status{min-height:1.4em;margin-top:12px;font-size:.82rem;font-weight:700}
.form-status.success{color:#70bd86}.form-status.error{color:#ff6b74}
.contact-form button:disabled{opacity:.7;cursor:wait;transform:none}


.license-callout {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(239,49,61,.24);
  border-radius: 9px;
  background: rgba(239,49,61,.06);
}
.license-callout strong { display:block; margin-bottom:5px; color:#fff; }
.license-callout p { margin:0; color:#92a1b3; font-size:.84rem; }

.home-product-section {
  background: radial-gradient(circle at 22% 30%, rgba(239,49,61,.08), transparent 28%), linear-gradient(180deg,#090f17,#0b121b);
  border-top:1px solid var(--line);
}
.home-product-layout { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.home-product-card h2 { font-size:clamp(2.4rem,4vw,4rem); line-height:1.03; letter-spacing:-.05em; margin-bottom:20px; }
.home-product-card > p { color:var(--muted); font-size:1.04rem; max-width:660px; }
.home-product-features { display:grid; gap:14px; margin:30px 0; }
.home-product-features div { padding:16px 18px; border-left:2px solid var(--red); background:rgba(255,255,255,.025); }
.home-product-features strong { display:block; font-size:.92rem; margin-bottom:3px; }
.home-product-features span { color:#8190a3; font-size:.82rem; }
.coming-soon-pill { display:inline-flex; padding:7px 10px; border-radius:999px; color:#ff7780; background:rgba(239,49,61,.09); border:1px solid rgba(239,49,61,.25); font-size:.62rem; font-weight:900; letter-spacing:.14em; }
.home-visual { padding:1px; border-radius:16px; background:linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.03)); box-shadow:var(--shadow); }
.home-room { min-height:380px; border-radius:15px; padding:32px; display:flex; flex-direction:column; justify-content:center; background:linear-gradient(145deg,#111b28,#0a111a); }
.home-screen { padding:18px; border:1px solid rgba(255,255,255,.1); background:#05090e; border-radius:10px; box-shadow:0 18px 50px rgba(0,0,0,.4); }
.screen-top { display:flex; justify-content:space-between; color:#dbe3ec; font-size:.67rem; font-weight:900; letter-spacing:.08em; padding-bottom:13px; border-bottom:1px solid var(--line); }
.screen-top b { color:var(--red); }
.screen-alert { padding:28px 10px 17px; }
.screen-alert small { display:block; color:#ff6670; font-weight:900; letter-spacing:.14em; margin-bottom:8px; }
.screen-alert strong { display:block; font-size:1.6rem; letter-spacing:-.03em; }
.screen-alert span { display:block; color:#728195; font-size:.72rem; margin-top:8px; }
.device-row { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:18px; }
.device-box { padding:15px 10px; background:#101a27; border:1px solid var(--line); border-radius:8px; text-align:center; }
.device-box span { display:block; color:#68788b; font-size:.55rem; letter-spacing:.11em; }
.device-box b { display:block; margin-top:5px; font-size:.68rem; color:#e9eef5; }
@media (max-width: 900px) { .home-product-layout { grid-template-columns:1fr; gap:45px; } }
@media (max-width: 620px) { .device-row { grid-template-columns:1fr; } }

/* StationCommand v5 plan cards */
.plan-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;align-items:stretch}
.plan-card{position:relative;display:flex;flex-direction:column;background:linear-gradient(155deg,#121c29,#0d151f);border:1px solid var(--line);border-radius:14px;padding:28px 24px 24px;min-width:0}
.plan-card.featured{border-color:rgba(239,49,61,.58);box-shadow:0 22px 55px rgba(239,49,61,.11);background:linear-gradient(155deg,rgba(239,49,61,.10),#111a26 35%,#0d151f)}
.popular{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--red);padding:5px 12px;border-radius:99px;font-size:.57rem;font-weight:900;letter-spacing:.12em;white-space:nowrap}
.plan-name{font-size:1.4rem;font-weight:900;letter-spacing:-.03em}
.plan-sub{color:#718095;font-size:.7rem;margin:7px 0 22px}
.plan-price{display:flex;align-items:baseline;gap:5px}.plan-price strong{font-size:3rem;line-height:1;letter-spacing:-.065em}.plan-price span{color:#8493a6;font-size:.85rem}.plan-price.custom strong{font-size:2.35rem}
.plan-year{color:#7d8ca0;font-size:.76rem;margin-top:10px;min-height:24px}.plan-year strong{color:#e0e6ed}
.add-station{margin:23px -24px 22px;padding:12px 24px;background:rgba(255,255,255,.025);border-block:1px solid rgba(255,255,255,.055);color:#77869a;font-size:.67rem}.add-station strong{color:#bac5d1}
.ent-title{font-size:.62rem;text-transform:uppercase;letter-spacing:.13em;margin:0 0 14px}
.ent-list{list-style:none;padding:0;margin:0 0 26px;display:grid;gap:10px;color:#adb9c6;font-size:.75rem;flex:1}.ent-list li{position:relative;padding-left:20px}.ent-list li:before{content:"✓";position:absolute;left:0;color:#68c982;font-weight:900}.ent-list strong{color:#fff}
.plan-card .button{min-height:44px;font-size:.78rem}
.pricing-note{margin-top:24px;text-align:center;color:#78879a;font-size:.8rem}.pricing-note strong{color:#cbd4de;margin-right:8px}
@media(max-width:1050px){.plan-grid{grid-template-columns:repeat(2,1fr);gap:22px 14px}}
@media(max-width:620px){.plan-grid{grid-template-columns:1fr;gap:22px}}


/* v6 pricing layout - closer to licensing portal */
.pricing-section {
  background:
    radial-gradient(circle at 55% 20%, rgba(43, 102, 169, .08), transparent 34%),
    #09111b;
}
.pricing-container-wide {
  width: min(calc(100% - 34px), 1420px);
}
.pricing-intro {
  margin-bottom: 22px;
}
.pricing-intro .eyebrow {
  margin-bottom: 8px;
}
.pricing-intro h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 10px;
}
.pricing-intro p {
  color: #88bfff;
  font-size: 1rem;
  margin: 0;
}
.pricing-grid-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 720px;
  padding: 28px 25px 24px;
  border-radius: 20px;
  border: 1px solid #243b59;
  background: #111d2f;
  box-shadow: none;
}
.pricing-plan-card h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.035em;
}
.pricing-plan-sub {
  color: #84baff;
  font-size: .98rem;
  margin: 0 0 28px;
}
.pricing-plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.pricing-plan-price strong {
  font-size: 3.5rem;
  line-height: .95;
  letter-spacing: -.055em;
  color: #fff;
}
.pricing-plan-price span {
  color: #82b8ff;
  font-weight: 800;
  font-size: .9rem;
}
.pricing-plan-year {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 20px;
}
.pricing-plan-year strong {
  color: #fff;
}
.pricing-plan-extra {
  color: #f5f8fc;
  font-size: .93rem;
  margin-bottom: 20px;
}
.pricing-plan-extra strong {
  color: #fff;
}
.pricing-plan-card h4 {
  font-size: 1.25rem;
  line-height: 1;
  margin: 0 0 24px;
}
.pricing-entitlements {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: .95rem;
}
.pricing-entitlements li {
  position: relative;
  padding-left: 22px;
  line-height: 1.24;
}
.pricing-entitlements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 900;
}
.pricing-entitlements strong {
  color: #fff;
}
.pricing-plan-card .button {
  margin-top: auto;
}
.pricing-plan-featured {
  border-color: #416b9b;
  box-shadow: 0 0 0 1px rgba(91, 151, 221, .10);
}
.pricing-featured-tag {
  position: absolute;
  right: 22px;
  top: 21px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1d3e64;
  color: #9ac7ff;
  border: 1px solid #345b87;
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.pricing-enterprise-card {
  min-height: auto;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.05fr 2fr auto;
  gap: 30px;
  align-items: start;
}
.pricing-enterprise-copy {
  display: grid;
  gap: 10px;
}
.pricing-enterprise-copy .pricing-plan-sub {
  margin-bottom: 10px;
}
.pricing-plan-custom strong {
  font-size: 2.55rem;
}
.enterprise-extra {
  margin: 0;
}
.pricing-enterprise-entitlements h4 {
  margin-top: 4px;
}
.pricing-entitlements-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  column-gap: 28px;
}
.enterprise-button {
  min-width: 180px;
  margin-top: 0 !important;
  align-self: end;
}
.pricing-bottom-note {
  text-align: center;
  margin-top: 20px;
  color: #8293a8;
  font-size: .82rem;
}
.pricing-bottom-note strong {
  color: #dce5ef;
}

@media (max-width: 1050px) {
  .pricing-grid-main {
    grid-template-columns: 1fr;
  }
  .pricing-plan-card {
    min-height: auto;
  }
  .pricing-enterprise-card {
    grid-template-columns: 1fr;
  }
  .pricing-entitlements-columns {
    grid-template-columns: 1fr;
  }
  .enterprise-button {
    width: 100%;
  }
}

/* v7: stronger, clearly visible pricing boxes */
.pricing-grid-main { gap: 20px; }
.pricing-plan-card {
  background: linear-gradient(180deg, #142238 0%, #111d30 100%) !important;
  border: 2px solid #2f4b70 !important;
  border-radius: 22px !important;
  padding: 30px 26px 26px !important;
  box-shadow:
    0 16px 40px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
  overflow: visible;
}
.pricing-plan-card:hover {
  border-color: #4d78aa !important;
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(0,0,0,.3),
    0 0 0 1px rgba(83,139,199,.10) !important;
}
.pricing-plan-featured {
  border: 2px solid #e13b48 !important;
  background:
    linear-gradient(180deg, rgba(239,49,61,.08), transparent 20%),
    linear-gradient(180deg,#142238 0%,#111d30 100%) !important;
  box-shadow:
    0 18px 45px rgba(0,0,0,.28),
    0 0 28px rgba(239,49,61,.08) !important;
}
.pricing-plan-featured:hover { border-color: #ff5661 !important; }
.pricing-featured-tag {
  top: -14px !important;
  right: 22px !important;
  background: #ef313d !important;
  color: #fff !important;
  border: 2px solid #111d30 !important;
  padding: 7px 13px !important;
}
.pricing-plan-card h3 { padding-bottom: 18px; border-bottom: 1px solid rgba(132,186,255,.13); }
.pricing-plan-sub { margin-top: 18px !important; }
.pricing-plan-extra {
  background: rgba(6,13,22,.30);
  border: 1px solid rgba(132,186,255,.10);
  border-radius: 9px;
  padding: 11px 12px;
}
.pricing-plan-card h4 { padding-top: 4px; }
.pricing-enterprise-card {
  border: 2px solid #2f4b70 !important;
  border-radius: 22px !important;
}


/* v8 - four-column pricing comparison */
.pricing-section {
  background:#09111b !important;
}
.pricing-container-wide {
  width:min(calc(100% - 32px), 1500px) !important;
}
.pricing-intro {
  margin-bottom:28px !important;
}
.pricing-intro h2 {
  font-size:clamp(2.25rem,4vw,3.7rem) !important;
  margin-bottom:10px !important;
}
.pricing-intro p {
  color:#8abfff !important;
  font-size:1rem !important;
  margin:0 !important;
}
.pricing-compare-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.compare-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:760px;
  padding:28px 24px 24px;
  background:#121d2f;
  border:1px solid #2e4667;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.compare-card-featured {
  border:2px solid #e23a47;
  background:
    linear-gradient(180deg,rgba(226,58,71,.07),rgba(226,58,71,0) 18%),
    #121d2f;
}
.compare-badge {
  position:absolute;
  top:-13px;
  right:18px;
  padding:6px 11px;
  border-radius:999px;
  background:#e23a47;
  color:#fff;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.11em;
}
.compare-card-head h3 {
  margin:0 0 20px;
  font-size:2rem;
  line-height:1;
  letter-spacing:-.035em;
}
.compare-card-head p {
  color:#8abfff;
  font-size:.94rem;
  line-height:1.35;
  min-height:50px;
  margin:0 0 24px;
}
.compare-price {
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:16px;
}
.compare-price strong {
  color:#fff;
  font-size:3.15rem;
  line-height:1;
  letter-spacing:-.055em;
}
.compare-price span {
  color:#8abfff;
  font-size:.9rem;
  font-weight:800;
}
.compare-price-custom strong {
  font-size:2.4rem;
}
.compare-year {
  color:#fff;
  font-size:.95rem;
  line-height:1.35;
  min-height:44px;
  margin-bottom:16px;
}
.compare-extra {
  color:#fff;
  font-size:.9rem;
  line-height:1.35;
  padding-bottom:22px;
  margin-bottom:22px;
  border-bottom:1px solid rgba(138,191,255,.16);
}
.compare-body {
  flex:1;
}
.compare-body h4 {
  margin:0 0 20px;
  color:#fff;
  font-size:1.2rem;
}
.compare-body ul {
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:grid;
  gap:9px;
  color:#fff;
  font-size:.9rem;
}
.compare-body li {
  position:relative;
  padding-left:22px;
  line-height:1.3;
}
.compare-body li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#fff;
  font-weight:900;
}
.compare-card .button {
  width:100%;
  margin-top:auto;
  min-height:46px;
}
.pricing-bottom-note {
  text-align:center;
  margin-top:22px;
  color:#7f90a5;
  font-size:.82rem;
}
.pricing-bottom-note strong {
  color:#dbe5ef;
  margin-right:6px;
}
@media(max-width:1200px){
  .pricing-compare-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .compare-card{
    min-height:680px;
  }
}
@media(max-width:700px){
  .pricing-compare-grid{
    grid-template-columns:1fr;
  }
  .compare-card{
    min-height:auto;
  }
}


/* v9 pricing comparison table */
.pricing-section {
  background:#09111b !important;
}
.pricing-table-container {
  width:min(calc(100% - 30px), 1450px) !important;
}
.pricing-table-wrap {
  width:100%;
  overflow-x:auto;
  border:1px solid #2b4160;
  border-radius:18px;
  background:#111c2e;
  box-shadow:0 18px 45px rgba(0,0,0,.24);
}
.pricing-table {
  width:100%;
  min-width:1050px;
  border-collapse:separate;
  border-spacing:0;
  table-layout:fixed;
  color:#fff;
}
.pricing-table th,
.pricing-table td {
  padding:16px 18px;
  border-bottom:1px solid rgba(124,164,211,.12);
  border-right:1px solid rgba(124,164,211,.10);
  vertical-align:middle;
}
.pricing-table tr > *:last-child {
  border-right:0;
}
.pricing-table thead th {
  background:#132137;
}
.pricing-table .feature-heading {
  width:28%;
  text-align:left;
  vertical-align:bottom;
  color:#8ebfff;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.pricing-table thead th:not(.feature-heading) {
  width:18%;
  text-align:center;
  position:relative;
}
.table-plan-name {
  font-size:1.45rem;
  font-weight:900;
  margin-bottom:13px;
}
.table-price {
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:6px;
}
.table-price strong {
  font-size:2.45rem;
  line-height:1;
  letter-spacing:-.05em;
}
.table-price span {
  color:#8abfff;
  font-size:.8rem;
  font-weight:800;
}
.table-price-custom strong {
  font-size:1.8rem;
}
.table-year {
  color:#a9b9cb;
  font-size:.74rem;
  margin-top:8px;
}
.table-badge {
  display:inline-block;
  margin-bottom:11px;
  padding:5px 9px;
  border-radius:999px;
  background:#e23b48;
  color:#fff;
  font-size:.52rem;
  font-weight:900;
  letter-spacing:.1em;
}
.standard-column {
  background:rgba(226,59,72,.045) !important;
}
.plan-heading-row .standard-column {
  box-shadow:inset 3px 0 0 #e23b48, inset -3px 0 0 #e23b48, inset 0 3px 0 #e23b48;
}
.station-row .standard-column,
.pricing-table tbody .standard-column {
  box-shadow:inset 3px 0 0 #e23b48, inset -3px 0 0 #e23b48;
}
.cta-row .standard-column {
  box-shadow:inset 3px 0 0 #e23b48, inset -3px 0 0 #e23b48, inset 0 -3px 0 #e23b48;
}
.station-row th {
  text-align:left;
  color:#dbe4ee;
  font-size:.84rem;
  font-weight:750;
}
.station-row td {
  text-align:center;
  color:#fff;
  font-size:.84rem;
}
.station-row small {
  color:#91a1b3;
}
.section-row th {
  padding:11px 18px;
  background:#0d1725 !important;
  color:#7fb6f8;
  font-size:.67rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  text-align:left;
  border-right:0;
}
.pricing-table tbody tr:not(.section-row):not(.cta-row) th {
  background:#111c2e;
  text-align:left;
  color:#e2e8ef;
  font-size:.86rem;
  font-weight:700;
}
.pricing-table tbody tr:not(.section-row):not(.cta-row) td {
  text-align:center;
  background:#111c2e;
  font-size:.88rem;
}
.yes {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:27px;
  height:27px;
  border-radius:50%;
  background:rgba(73,195,112,.12);
  border:1px solid rgba(73,195,112,.28);
  color:#6fe091;
  font-weight:900;
  font-size:1rem;
}
.no {
  color:#506074;
  font-size:1.2rem;
}
.cta-row th,
.cta-row td {
  border-bottom:0;
  background:#101a2a;
  padding-top:20px;
  padding-bottom:20px;
}
.table-button {
  width:100%;
  min-height:42px;
  padding-left:10px;
  padding-right:10px;
  font-size:.72rem;
}
.pricing-table-note {
  color:#6f8195;
  text-align:center;
  font-size:.76rem;
  margin:17px auto 0;
  max-width:850px;
}
@media(max-width:700px) {
  .pricing-table-wrap {
    border-radius:13px;
  }
  .pricing-table {
    min-width:950px;
  }
}


/* v10 - polished pricing comparison styling */
.pricing-table-wrap {
  border: 1px solid rgba(123, 166, 219, .28) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.005)),
    #0f1a2b !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.03) !important;
}

.pricing-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.pricing-table th,
.pricing-table td {
  border-right: 1px solid rgba(126, 167, 216, .11) !important;
  border-bottom: 1px solid rgba(126, 167, 216, .12) !important;
}

.plan-heading-row th {
  background:
    linear-gradient(180deg, rgba(65, 107, 155, .15), rgba(65, 107, 155, .03)),
    #132137 !important;
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

.feature-heading {
  background:
    linear-gradient(180deg, rgba(239,49,61,.08), rgba(239,49,61,.015)),
    #132137 !important;
  color: #ff7078 !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
}

.table-plan-name {
  font-size: 1.55rem !important;
  color: #fff !important;
}

.table-price strong {
  font-size: 2.6rem !important;
  color: #fff !important;
}

.table-price span {
  color: #8ec0ff !important;
}

.table-year {
  color: #b3c4d7 !important;
}

.standard-column {
  background: rgba(239,49,61,.055) !important;
}

.plan-heading-row .standard-column {
  background:
    linear-gradient(180deg, rgba(239,49,61,.14), rgba(239,49,61,.03)),
    #132137 !important;
}

.table-badge {
  background: linear-gradient(180deg, #ff4d58, #c92733) !important;
  box-shadow: 0 5px 14px rgba(239,49,61,.24);
}

.station-row th,
.station-row td {
  background: #101b2b !important;
}

.station-row th {
  color: #dce6f0 !important;
  font-weight: 800 !important;
}

.station-row td {
  color: #fff !important;
}

.section-row th {
  background:
    linear-gradient(90deg, rgba(70, 119, 174, .18), rgba(70, 119, 174, .04)),
    #0c1624 !important;
  color: #8ec0ff !important;
  font-size: .7rem !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

.pricing-table tbody tr:not(.section-row):not(.cta-row) th {
  background: #101a2a !important;
  color: #edf3f8 !important;
  font-weight: 750 !important;
}

.pricing-table tbody tr:not(.section-row):not(.cta-row) td {
  background: #101a2a !important;
}

.pricing-table tbody tr:not(.section-row):not(.cta-row):hover th,
.pricing-table tbody tr:not(.section-row):not(.cta-row):hover td {
  background: #132238 !important;
}

.yes {
  width: 30px !important;
  height: 30px !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, rgba(63,190,101,.18), rgba(63,190,101,.09)) !important;
  border: 1px solid rgba(84,216,124,.34) !important;
  color: #76e698 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.055);
  color: #5d6d80 !important;
  font-size: 1rem !important;
}

.cta-row th,
.cta-row td {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.005)),
    #0e1827 !important;
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

.table-button {
  border-radius: 9px !important;
  font-weight: 800 !important;
}

.pricing-table-note {
  margin-top: 19px !important;
  color: #77899e !important;
}

/* make first column labels feel more like the rest of the site */
.pricing-table tbody th {
  padding-left: 22px !important;
}

/* strengthen bottom radius visually */
.pricing-table tr:last-child td:first-of-type,
.pricing-table tr:last-child th:first-child {
  border-bottom-left-radius: 18px;
}
.pricing-table tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}


/* v11 custom comparison grid - no HTML table */
.pricing-grid-container {
  width:min(calc(100% - 30px), 1500px) !important;
}
.plan-comparison {
  border:1px solid rgba(120,166,221,.26);
  border-radius:20px;
  overflow:hidden;
  background:#0f1a2a;
  box-shadow:0 22px 60px rgba(0,0,0,.30);
}
.pc-row {
  display:grid;
  grid-template-columns:1.45fr repeat(4,1fr);
}
.pc-cell {
  min-width:0;
  padding:15px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#101a2a;
  border-right:1px solid rgba(121,162,210,.11);
  border-bottom:1px solid rgba(121,162,210,.11);
  color:#fff;
}
.pc-row > .pc-cell:last-child {
  border-right:0;
}
.pc-label {
  justify-content:flex-start;
  text-align:left;
  font-weight:750;
  color:#e8eef5;
  background:#0e1826;
}
.pc-header .pc-cell {
  min-height:180px;
  padding-top:26px;
  padding-bottom:26px;
  background:
    linear-gradient(180deg,rgba(79,126,180,.13),rgba(79,126,180,.025)),
    #132137;
}
.pc-label-header {
  color:#ff6d76;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.75rem;
  font-weight:900;
}
.pc-plan {
  flex-direction:column;
}
.pc-plan-name {
  font-size:1.45rem;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:14px;
}
.pc-price {
  display:flex;
  align-items:baseline;
  gap:6px;
}
.pc-price strong {
  font-size:2.65rem;
  line-height:1;
  letter-spacing:-.05em;
}
.pc-price span {
  color:#8ec0ff;
  font-size:.82rem;
  font-weight:800;
}
.pc-price-custom strong {
  font-size:1.9rem;
}
.pc-year {
  color:#a9bacd;
  font-size:.78rem;
  margin-top:9px;
}
.pc-standard {
  background:rgba(239,49,61,.05) !important;
  box-shadow:inset 2px 0 0 rgba(239,49,61,.75), inset -2px 0 0 rgba(239,49,61,.75);
}
.pc-header .pc-standard {
  background:
    linear-gradient(180deg,rgba(239,49,61,.15),rgba(239,49,61,.035)),
    #132137 !important;
  box-shadow:inset 2px 0 0 #ef313d, inset -2px 0 0 #ef313d, inset 0 2px 0 #ef313d;
}
.pc-actions .pc-standard {
  box-shadow:inset 2px 0 0 #ef313d, inset -2px 0 0 #ef313d, inset 0 -2px 0 #ef313d;
}
.pc-badge {
  margin-bottom:12px;
  padding:5px 10px;
  border-radius:999px;
  background:linear-gradient(180deg,#ff4f5a,#cb2935);
  color:#fff;
  font-size:.53rem;
  font-weight:900;
  letter-spacing:.1em;
  box-shadow:0 5px 14px rgba(239,49,61,.22);
}
.pc-section-title {
  padding:11px 18px;
  background:
    linear-gradient(90deg,rgba(66,116,173,.20),rgba(66,116,173,.03)),
    #0c1624;
  color:#8ec0ff;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(121,162,210,.11);
}
.pc-check,
.pc-no {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:8px;
}
.pc-check {
  color:#72e294;
  background:linear-gradient(180deg,rgba(67,190,104,.18),rgba(67,190,104,.08));
  border:1px solid rgba(83,215,122,.32);
  font-weight:900;
}
.pc-no {
  color:#5b6b7d;
  background:rgba(255,255,255,.022);
  border:1px solid rgba(255,255,255,.045);
}
.pc-row:hover .pc-cell:not(.pc-header .pc-cell) {
  background:#132238;
}
.pc-row:hover .pc-standard {
  background:rgba(239,49,61,.075) !important;
}
.pc-cell small {
  color:#8191a4;
  font-size:.74rem;
}
.pc-actions .pc-cell {
  padding-top:20px;
  padding-bottom:20px;
  background:#0d1724;
  border-bottom:0;
}
.pc-actions .button {
  width:100%;
  min-height:42px;
  padding:0 10px;
  font-size:.72rem;
}
.pricing-grid-note {
  margin:17px auto 0;
  max-width:850px;
  color:#728397;
  text-align:center;
  font-size:.76rem;
}

/* responsive behavior */
@media(max-width:1100px) {
  .plan-comparison {
    overflow-x:auto;
  }
  .pc-row {
    min-width:1050px;
  }
  .pc-section-title {
    min-width:1050px;
  }
}


/* v12 simple four-card pricing */
.pricing-clean-container{
  width:min(calc(100% - 32px),1480px)!important;
}
.pricing-clean-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.pricing-clean-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:28px 24px 24px;
  background:#121d2f;
  border:1px solid #2b4160;
  border-radius:18px;
  min-height:690px;
}
.pricing-clean-featured{
  border-color:#d43a46;
}
.pricing-clean-badge{
  position:absolute;
  top:-11px;
  right:18px;
  background:#d43a46;
  color:#fff;
  border-radius:999px;
  padding:5px 10px;
  font-size:.54rem;
  font-weight:900;
  letter-spacing:.1em;
}
.pricing-clean-head h3{
  margin:0 0 16px;
  font-size:1.9rem;
  letter-spacing:-.03em;
}
.pricing-clean-head p{
  margin:0 0 22px;
  color:#8abfff;
  font-size:.9rem;
  line-height:1.4;
}
.pricing-clean-price{
  display:flex;
  align-items:baseline;
  gap:6px;
}
.pricing-clean-price strong{
  font-size:3rem;
  line-height:1;
  letter-spacing:-.05em;
}
.pricing-clean-price span{
  color:#8abfff;
  font-size:.86rem;
  font-weight:800;
}
.pricing-clean-custom strong{
  font-size:2.2rem;
}
.pricing-clean-year{
  margin-top:10px;
  color:#d9e3ed;
  font-size:.88rem;
}
.pricing-clean-extra{
  margin-top:16px;
  color:#a8b6c5;
  font-size:.82rem;
}
.pricing-clean-divider{
  height:1px;
  background:rgba(138,191,255,.15);
  margin:22px 0 20px;
}
.pricing-clean-card h4{
  margin:0 0 18px;
  font-size:1.05rem;
}
.pricing-clean-list{
  list-style:none;
  padding:0;
  margin:0 0 26px;
  display:grid;
  gap:9px;
  color:#f2f6fa;
  font-size:.86rem;
  flex:1;
}
.pricing-clean-list li{
  position:relative;
  padding-left:20px;
  line-height:1.35;
}
.pricing-clean-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:#f2f6fa;
  font-weight:900;
}
.pricing-clean-list strong{
  color:#fff;
}
.pricing-clean-card .button{
  margin-top:auto;
  min-height:44px;
  font-size:.78rem;
}
.pricing-clean-note{
  margin:18px 0 0;
  text-align:center;
  color:#78899d;
  font-size:.8rem;
}
@media(max-width:1150px){
  .pricing-clean-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .pricing-clean-grid{grid-template-columns:1fr}
  .pricing-clean-card{min-height:auto}
}


/* v13 - isolated StationCommand pricing cards */
.sc-pricing-container {
  width: min(calc(100% - 28px), 1540px) !important;
}

.sc-plan-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
}

.sc-plan-box {
  position: relative !important;
  flex: 1 1 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 28px 22px 22px !important;
  background: #121d2f !important;
  border: 1px solid #304765 !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
}

.sc-plan-box-standard {
  border-color: #d43b47 !important;
  box-shadow:
    0 12px 28px rgba(0,0,0,.18),
    0 0 0 1px rgba(212,59,71,.08) !important;
}

.sc-plan-badge {
  position: absolute !important;
  top: -12px !important;
  right: 18px !important;
  background: #d43b47 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 5px 10px !important;
  font-size: .53rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: .10em !important;
}

.sc-plan-top h3 {
  margin: 0 0 14px !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  letter-spacing: -.035em !important;
}

.sc-plan-subtitle {
  margin: 0 0 22px !important;
  min-height: 38px !important;
  color: #8abfff !important;
  font-size: .82rem !important;
  line-height: 1.35 !important;
}

.sc-plan-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
}

.sc-plan-price strong {
  color: #fff !important;
  font-size: 2.8rem !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
}

.sc-plan-price span {
  color: #8abfff !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
}

.sc-plan-price-custom strong {
  font-size: 2rem !important;
}

.sc-plan-year {
  margin-top: 10px !important;
  color: #e3eaf1 !important;
  font-size: .84rem !important;
  line-height: 1.35 !important;
}

.sc-plan-extra {
  margin-top: 15px !important;
  color: #9eacbc !important;
  font-size: .78rem !important;
  line-height: 1.35 !important;
}

.sc-plan-divider {
  height: 1px !important;
  margin: 21px 0 18px !important;
  background: rgba(138,191,255,.14) !important;
}

.sc-plan-box h4 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: 1rem !important;
}

.sc-plan-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  flex: 1 1 auto !important;
  color: #eef3f8 !important;
  font-size: .81rem !important;
}

.sc-plan-features li {
  position: relative !important;
  padding-left: 19px !important;
  line-height: 1.32 !important;
}

.sc-plan-features li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #eef3f8 !important;
  font-weight: 900 !important;
}

.sc-plan-features strong {
  color: #fff !important;
}

.sc-plan-box .button {
  width: 100% !important;
  min-height: 42px !important;
  margin-top: auto !important;
  padding: 0 10px !important;
  font-size: .74rem !important;
}

.sc-pricing-note {
  margin: 18px 0 0 !important;
  text-align: center !important;
  color: #78899d !important;
  font-size: .78rem !important;
}

/* Keep all four side by side on normal desktop widths */
@media (min-width: 901px) {
  .sc-plan-row {
    display: flex !important;
    flex-wrap: nowrap !important;
  }

  .sc-plan-box {
    flex: 1 1 25% !important;
    width: auto !important;
  }
}

/* Only stack when the viewport is actually small */
@media (max-width: 900px) {
  .sc-plan-row {
    flex-wrap: wrap !important;
  }

  .sc-plan-box {
    flex: 1 1 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
  }
}

@media (max-width: 620px) {
  .sc-plan-box {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
}


/* v14 pricing: mirrors the existing feature-card section */
.pricing-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  align-items: stretch;
}

.pricing-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 720px;
}

/* Keep the exact same visual language as .feature-card */
.pricing-feature-card .feature-icon {
  margin-bottom: 24px;
}

.pricing-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.pricing-feature-price {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.05em;
}

.pricing-feature-price span {
  color: #7f90a5;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: 0;
}

.pricing-feature-custom {
  font-size: 2rem;
}

.pricing-feature-year {
  margin-top: 9px;
  color: #c3ceda;
  font-size: .83rem;
}

.pricing-feature-station {
  margin: 18px 0 0 !important;
  color: #8290a1 !important;
  font-size: .78rem !important;
  line-height: 1.55 !important;
}

.pricing-feature-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 22px 0 19px;
}

.pricing-feature-card h4 {
  margin: 0 0 15px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #cbd5df;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 9px;
  flex: 1;
  color: #98a7b8;
  font-size: .8rem;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.35;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.pricing-feature-list strong {
  color: #fff;
}

.pricing-feature-card .button {
  margin-top: auto;
  min-height: 44px;
  font-size: .76rem;
}

.pricing-feature-card-standard {
  border-color: rgba(239,49,61,.48) !important;
}

.pricing-feature-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--red);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.pricing-feature-note {
  margin: 20px 0 0;
  text-align: center;
  color: #667587;
  font-size: .78rem;
}

@media (max-width: 1200px) {
  .pricing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pricing-feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-feature-card {
    min-height: auto;
  }
}

/* v16 public stats view add-on */
#pricing .sc-view-addon {
  display: inline-block;
  margin-top: 4px;
  color: #8290a1;
  font-size: .72rem;
  line-height: 1.3;
}

.legal-footer-links{display:flex;justify-content:center;align-items:center;gap:9px;margin-top:12px;color:#667587;font-size:.78rem}
.legal-footer-links a{color:#8290a1;text-decoration:none}.legal-footer-links a:hover{color:#fff}
