:root {
  --ink: #071521;
  --ink-2: #0d2233;
  --ink-3: #15364d;
  --blue: #278cf2;
  --blue-2: #47a8ff;
  --blue-3: #176ee8;
  --cyan: #4ce0ff;
  --white: #ffffff;
  --paper: #f5f8fb;
  --paper-2: #edf3f8;
  --line: #dce6ee;
  --muted: #607487;
  --green: #22b777;
  --gold: #f2aa2b;
  --red: #f05361;
  --shadow-sm: 0 12px 35px rgba(9, 29, 45, .08);
  --shadow-lg: 0 30px 90px rgba(2, 16, 27, .22);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4, ul { margin-top: 0; }
svg.icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container.narrow { max-width: 850px; }
.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 10px 16px; border-radius: 8px; color: var(--ink); background: var(--white); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(7,21,33,.58); backdrop-filter: blur(18px); transition: background .25s, box-shadow .25s, border-color .25s; }
.site-header.is-scrolled { background: rgba(7,21,33,.96); border-color: rgba(255,255,255,.06); box-shadow: 0 10px 40px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 28px; }
.brand { display: block; width: 226px; min-width: 190px; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.nav-link { position: relative; color: rgba(255,255,255,.72); font-weight: 650; font-size: .9rem; letter-spacing: -.01em; transition: color .2s; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: -13px; left: 0; height: 2px; border-radius: 999px; background: var(--blue-2); transform: scaleX(0); transition: transform .2s; }
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .91rem; }
.text-link.light { color: rgba(255,255,255,.9); }
.dashboard-link { color: rgba(255,255,255,.78); }
.dashboard-link:hover { color: var(--white); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 22px; border: 0; border-radius: 12px; font-weight: 780; font-size: .93rem; letter-spacing: -.01em; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); box-shadow: 0 13px 32px rgba(28,122,232,.32); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(28,122,232,.44); }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 0 12px 28px rgba(7,21,33,.17); }
.button-dark:hover { background: var(--ink-2); }
.button-white { color: var(--ink); background: var(--white); box-shadow: 0 14px 38px rgba(0,0,0,.16); }
.button-white:hover { box-shadow: 0 20px 48px rgba(0,0,0,.22); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .86rem; }
.button-large { min-height: 56px; padding-inline: 28px; border-radius: 14px; font-size: .98rem; }
.button-full { width: 100%; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.06); cursor: pointer; }
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }
.mobile-menu { display: none; border-top: 1px solid rgba(255,255,255,.08); background: rgba(7,21,33,.99); }
.mobile-menu-inner { display: grid; padding-block: 16px 28px; }
.mobile-menu a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.88); font-weight: 720; }

/* Common */
.section { position: relative; padding: 112px 0; overflow: hidden; }
.section-light { background: var(--white); }
.section-soft { background: var(--paper); }
.section-dark { color: var(--white); background: var(--ink); }
.section-label, .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-3); font-size: .74rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-label.light { color: var(--blue-2); }
.eyebrow { color: #74beff; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.08; }
h1 { margin-bottom: 26px; font-size: clamp(3.25rem, 6vw, 5.75rem); font-weight: 760; }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4vw, 4rem); font-weight: 750; }
h3 { margin-bottom: 13px; font-size: 1.4rem; font-weight: 760; }
.section-intro { max-width: 770px; margin-bottom: 58px; }
.section-intro.centered { margin-inline: auto; text-align: center; }
.section-intro .section-label { margin-bottom: 16px; }
.section-intro p, .split-heading > p, .page-hero p { color: var(--muted); font-size: 1.1rem; }
.section-dark .section-intro p { color: rgba(255,255,255,.64); }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.split-heading h2 { max-width: 760px; margin-bottom: 0; }
.split-heading .section-label { margin-bottom: 17px; }
.split-heading > p { margin: 0 0 6px; }
.inline-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-2); font-weight: 800; }
.inline-link.dark { color: var(--ink); }
.inline-link .icon { transition: transform .2s; }
.inline-link:hover .icon { transform: translateX(4px); }
.check-list { display: grid; gap: 13px; padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 650; color: var(--ink-3); }
.check-list li .icon { width: 20px; height: 20px; padding: 3px; border-radius: 50%; color: var(--white); background: var(--blue); }
.check-list.compact { gap: 10px; margin-block: 23px 28px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

/* Hero */
.hero { position: relative; min-height: 940px; padding: 165px 0 0; color: var(--white); overflow: hidden; background: radial-gradient(circle at 75% 26%, rgba(41,145,255,.23), transparent 37%), radial-gradient(circle at 15% 85%, rgba(41,145,255,.12), transparent 38%), linear-gradient(135deg, #071521 0%, #0a2133 58%, #071521 100%); }
.hero-grid-lines, .cta-grid-lines { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000, transparent 84%); }
.hero-grid-lines::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 0 48%, rgba(71,168,255,.18) 49%, transparent 50% 100%); animation: scan 9s linear infinite; }
@keyframes scan { from { transform: translateX(-60%); } to { transform: translateX(60%); } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); border: 1px solid rgba(72,173,255,.15); }
.hero-orb-one { width: 580px; height: 580px; right: -280px; top: 90px; box-shadow: inset 0 0 120px rgba(39,140,242,.07); }
.hero-orb-two { width: 320px; height: 320px; left: -190px; bottom: 150px; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 54px; }
.hero-copy { padding: 30px 0 45px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy h1 { max-width: 720px; }
.hero-lead { max-width: 680px; margin-bottom: 35px; color: rgba(255,255,255,.69); font-size: 1.14rem; line-height: 1.75; }
.hero-actions-row { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-microcopy { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: rgba(255,255,255,.65); font-size: .84rem; font-weight: 650; }
.hero-microcopy span { display: flex; align-items: center; gap: 7px; }
.hero-microcopy .icon { color: var(--blue-2); }
.hero-visual { position: relative; width: 760px; margin-right: -180px; perspective: 1600px; }
.dashboard-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: #f5f8fb; box-shadow: 0 40px 120px rgba(0,0,0,.48); transform: rotateY(-4deg) rotateX(1deg); }
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; height: 58px; padding: 0 22px; color: #b7c6d2; background: #0b1b29; }
.dashboard-brand-mini, .dashboard-status { display: flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 750; }
.pulse-mark { width: 28px; height: 28px; border-radius: 9px; background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); box-shadow: 0 0 25px rgba(47,145,255,.42); }
.dashboard-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(34,183,119,.12); }
.dashboard-main { display: grid; grid-template-columns: 62px 1fr; min-height: 520px; }
.mini-sidebar { display: flex; flex-direction: column; align-items: center; gap: 17px; padding-top: 22px; color: #7890a4; background: #102636; }
.mini-sidebar span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; }
.mini-sidebar span.active { color: var(--white); background: var(--blue); }
.dashboard-content { padding: 25px; color: var(--ink); }
.dashboard-heading-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dashboard-heading-row div:first-child { display: grid; }
.dashboard-heading-row small { color: #7e8e9d; font-size: .73rem; }
.dashboard-heading-row strong { font-size: 1.17rem; }
.live-pill { display: flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid #d7e6ef; border-radius: 999px; color: #4b6679; background: var(--white); font-size: .7rem; font-weight: 750; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-card { position: relative; display: grid; min-height: 128px; padding: 16px; border: 1px solid #e3ebf1; border-radius: 14px; background: var(--white); box-shadow: 0 8px 22px rgba(16,44,66,.05); }
.metric-card > span { color: #748696; font-size: .72rem; font-weight: 700; }
.metric-card > strong { align-self: end; font-size: 1.58rem; letter-spacing: -.04em; }
.metric-card > strong small { color: #7790a3; font-size: .68rem; }
.metric-card > em { color: #5c8f78; font-size: .67rem; font-style: normal; font-weight: 650; }
.metric-icon { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; }
.metric-icon.blue { color: #217de3; background: #eaf4ff; }
.metric-icon.gold { color: #d28a08; background: #fff4db; }
.metric-icon.green { color: #159966; background: #e6f7ef; }
.dashboard-lower-grid { display: grid; grid-template-columns: 1.45fr .8fr; gap: 12px; margin-top: 12px; }
.chart-card, .site-list-card { min-height: 245px; padding: 16px; border: 1px solid #e3ebf1; border-radius: 14px; background: var(--white); }
.chart-card-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; font-size: .74rem; }
.chart-card-title span { color: #6d8192; font-weight: 700; }
.chart-card-title strong { font-size: .85rem; }
.chart-card-title a { color: var(--blue); font-weight: 750; }
.fake-chart { position: relative; height: 160px; overflow: hidden; }
.fake-chart svg { position: relative; z-index: 2; width: 100%; height: 100%; }
.chart-grid { position: absolute; inset: 0; background-image: linear-gradient(#eaf0f4 1px, transparent 1px), linear-gradient(90deg, #eaf0f4 1px, transparent 1px); background-size: 25% 33.333%; }
.chart-labels { display: flex; justify-content: space-between; color: #8da0af; font-size: .58rem; }
.site-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 9px; padding: 12px 0; border-top: 1px solid #ecf1f4; }
.site-row i, .map-legend i { width: 7px; height: 7px; border-radius: 50%; }
.site-row i.online, .map-legend i.online { background: var(--green); box-shadow: 0 0 0 4px rgba(34,183,119,.11); }
.site-row i.warning, .map-legend i.warning { background: var(--gold); box-shadow: 0 0 0 4px rgba(242,170,43,.11); }
.site-row div { display: grid; }
.site-row strong { font-size: .66rem; }
.site-row small { color: #8496a5; font-size: .57rem; }
.site-row b { color: #4f6677; font-size: .61rem; }
.floating-alert-card { position: absolute; right: 36px; bottom: -38px; display: grid; grid-template-columns: 40px 1fr 8px; align-items: center; gap: 12px; width: 310px; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(10,30,45,.92); box-shadow: 0 20px 48px rgba(0,0,0,.32); backdrop-filter: blur(15px); }
.floating-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: var(--blue-2); background: rgba(47,145,255,.14); }
.floating-alert-card div:nth-child(2) { display: grid; }
.floating-alert-card strong { font-size: .78rem; }
.floating-alert-card span { color: rgba(255,255,255,.56); font-size: .64rem; }
.floating-alert-card > i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 95px; border-top: 1px solid rgba(255,255,255,.1); }
.trust-item { display: grid; gap: 3px; padding: 32px 24px 36px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { color: var(--white); font-size: 1.3rem; letter-spacing: -.035em; }
.trust-item span { color: rgba(255,255,255,.52); font-size: .78rem; }

/* Audience */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card { position: relative; min-height: 315px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(9,29,45,.04); transition: transform .25s, box-shadow .25s, border-color .25s; }
.audience-card:hover { transform: translateY(-6px); border-color: #c8dce9; box-shadow: var(--shadow-sm); }
.card-number { position: absolute; top: 24px; right: 26px; color: #c9d6df; font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 40px; border-radius: 15px; color: var(--blue); background: #eaf5ff; }
.card-icon .icon { width: 24px; height: 24px; }
.audience-card h3 { max-width: 220px; }
.audience-card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }

/* Feature tabs */
.feature-showcase::before { content: ""; position: absolute; width: 760px; height: 760px; right: -260px; top: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(39,140,242,.15), transparent 66%); }
.feature-tabs { position: relative; z-index: 2; }
.feature-tab-list { display: grid; grid-template-columns: repeat(6, 1fr); margin-bottom: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; overflow: hidden; background: rgba(255,255,255,.035); }
.feature-tab { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 64px; padding: 12px; border: 0; border-right: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); background: transparent; font-size: .8rem; font-weight: 760; cursor: pointer; transition: color .2s, background .2s; }
.feature-tab:last-child { border-right: 0; }
.feature-tab span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; }
.feature-tab.is-active { color: var(--white); background: linear-gradient(135deg, rgba(39,140,242,.25), rgba(39,140,242,.08)); }
.feature-tab.is-active span { color: var(--white); background: var(--blue); }
.feature-tab-panels { min-height: 540px; }
.feature-panel { display: none; grid-template-columns: .76fr 1.24fr; align-items: center; min-height: 540px; padding: 64px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); overflow: hidden; }
.feature-panel.is-active { display: grid; animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.feature-panel-copy { max-width: 450px; padding-right: 30px; }
.feature-panel-copy .section-label { margin-bottom: 15px; }
.feature-panel-copy h3 { font-size: clamp(2rem, 3vw, 3.2rem); }
.feature-panel-copy p { color: rgba(255,255,255,.62); }
.feature-panel-visual { position: relative; min-height: 410px; }
.phone-preview { position: absolute; z-index: 2; right: 30px; bottom: -120px; width: 340px; filter: drop-shadow(0 28px 45px rgba(0,0,0,.35)); }
.visual-backdrop-card { position: absolute; top: 75px; left: 5%; display: grid; width: 350px; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(4,16,25,.82); box-shadow: var(--shadow-lg); }
.visual-backdrop-card span { color: rgba(255,255,255,.48); font-size: .76rem; }
.visual-backdrop-card strong { margin: 4px 0 24px; font-size: 1.3rem; }
.visual-backdrop-card small { margin-top: 10px; color: rgba(255,255,255,.55); }
.progress { height: 8px; border-radius: 99px; background: rgba(255,255,255,.09); overflow: hidden; }
.progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.graph-window, .map-window, .alerts-window, .roles-window, .api-window { position: absolute; inset: 25px 0 0 25px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: #f8fbfd; box-shadow: var(--shadow-lg); }
.graph-window-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid #e4ebf0; color: var(--ink); font-size: .78rem; font-weight: 800; }
.graph-window-top div { display: flex; gap: 6px; }
.graph-window-top div span, .graph-window-top div b { padding: 6px 10px; border-radius: 7px; font-size: .65rem; }
.graph-window-top div b { color: var(--white); background: var(--blue); }
.graph-window img { width: 100%; height: calc(100% - 64px); object-fit: contain; padding: 14px; }
.map-window { color: #c7dbe8; background: radial-gradient(circle at 80% 30%, #163b50, #0b2232 65%); }
.map-australia {
  position: absolute;
  top: 12px;
  left: 50%;
  width: auto;
  height: calc(100% - 62px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
}
.map-shape-image { display: block; width: 100%; height: 100%; object-fit: fill; opacity: .28; filter: saturate(1.05) brightness(1.02); }
.map-pin { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 7px; color: var(--white); font-size: .61rem; white-space: nowrap; transform: translate(-5px, -50%); }
.map-pin i { position: relative; flex: 0 0 auto; display: block; width: 10px; height: 10px; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; background: #20cf89; box-shadow: 0 0 0 6px rgba(32,207,137,.14), 0 0 18px rgba(32,207,137,.72); animation: map-pin-core 1.8s ease-in-out infinite; }
.map-pin i::after { content: ""; position: absolute; inset: -7px; border: 2px solid rgba(32,207,137,.55); border-radius: 50%; animation: map-pin-pulse 1.8s ease-out infinite; }
.map-pin b { display: inline-block; padding: 2px 6px; border-radius: 999px; background: rgba(3,14,23,.48); backdrop-filter: blur(6px); font-weight: 700; letter-spacing: -.01em; }
.pin-perth { left: 10%; top: 62%; }
.pin-adelaide { left: 62%; top: 70%; flex-direction: row-reverse; transform: translate(calc(-100% + 5px), -50%); }
.pin-melbourne { left: 78%; top: 78%; flex-direction: row-reverse; transform: translate(calc(-100% + 5px), -50%); }
.pin-sydney { left: 92%; top: 67%; flex-direction: row-reverse; transform: translate(calc(-100% + 5px), -50%); }
.pin-brisbane { left: 94%; top: 50%; flex-direction: row-reverse; transform: translate(calc(-100% + 5px), -50%); }
.pin-adelaide i { animation-delay: -.35s; }
.pin-melbourne i { animation-delay: -.7s; }
.pin-sydney i { animation-delay: -1.05s; }
.pin-brisbane i { animation-delay: -1.4s; }
.pin-adelaide i::after { animation-delay: -.35s; }
.pin-melbourne i::after { animation-delay: -.7s; }
.pin-sydney i::after { animation-delay: -1.05s; }
.pin-brisbane i::after { animation-delay: -1.4s; }
@keyframes map-pin-pulse {
  0% { transform: scale(.65); opacity: .95; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes map-pin-core {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34,183,119,.14), 0 0 16px rgba(34,183,119,.55); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(34,183,119,.18), 0 0 22px rgba(34,183,119,.78); }
}
.map-legend { position: absolute; right: 17px; bottom: 15px; left: 17px; display: flex; gap: 20px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; color: rgba(255,255,255,.64); background: rgba(4,16,25,.55); font-size: .63rem; }
.map-legend span { display: flex; align-items: center; gap: 7px; }
.alerts-window, .roles-window { padding: 24px; color: var(--ink); }
.alerts-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 18px; }
.alerts-summary > div { display: grid; padding: 17px; border: 1px solid #e2eaf0; border-radius: 13px; background: var(--white); }
.alerts-summary span { color: var(--muted); font-size: .7rem; }
.alerts-summary strong { font-size: 1.65rem; }
.alert-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; padding: 14px; margin-top: 10px; border: 1px solid #e1e9ef; border-radius: 13px; background: var(--white); }
.alert-row > div { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; }
.alert-row p { display: grid; margin: 0; }
.alert-row strong { font-size: .78rem; }
.alert-row span { color: var(--muted); font-size: .63rem; }
.alert-row > b { padding: 5px 8px; border-radius: 6px; font-size: .58rem; }
.alert-row.critical > div { color: var(--red); background: #fff0f2; }
.alert-row.critical > b { color: #b82638; background: #ffe5e9; }
.alert-row.restored > div { color: var(--green); background: #eaf8f2; }
.alert-row.restored > b { color: #16744f; background: #ddf5e9; }
.alert-row.offline > div { color: var(--gold); background: #fff6e5; }
.alert-row.offline > b { color: #956308; background: #fff0cd; }
.roles-window { padding-top: 36px; }
.role-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 16px 0; border-bottom: 1px solid #e5edf2; }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #1676d5; background: #e7f3ff; font-size: .7rem; font-weight: 850; }
.role-row div { display: grid; }
.role-row strong { font-size: .78rem; }
.role-row small { color: var(--muted); font-size: .63rem; }
.role-row b { padding: 6px 9px; border: 1px solid #dbe6ed; border-radius: 7px; color: #4d6373; font-size: .6rem; }
.permissions-card { display: flex; gap: 13px; margin-top: 24px; padding: 18px; border-radius: 14px; color: #1f6db5; background: #eaf5ff; }
.permissions-card > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--white); }
.permissions-card > div { display: grid; }
.permissions-card strong { font-size: .78rem; }
.permissions-card small { color: #5d7891; font-size: .64rem; }
.api-window { color: var(--white); background: #071521; }
.api-top { display: flex; align-items: center; gap: 7px; height: 48px; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.08); background: #0d2233; }
.api-top > span { width: 8px; height: 8px; border-radius: 50%; background: #365367; }
.api-top b { margin-left: 7px; color: rgba(255,255,255,.56); font-size: .67rem; }
.api-window pre, .detail-api-card pre { margin: 0; padding: 28px; color: #c2d7e6; font: .84rem/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.api-window pre em, .detail-api-card pre em { color: #63d5a3; font-style: normal; }
.api-security { position: absolute; right: 22px; bottom: 22px; left: 22px; display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.04); }
.api-security > .icon { color: var(--blue-2); }
.api-security span { display: grid; }
.api-security strong { font-size: .72rem; }
.api-security small { color: rgba(255,255,255,.48); font-size: .62rem; }

/* Data section */
.data-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; }
.data-copy .section-label { margin-bottom: 16px; }
.data-copy p { color: var(--muted); }
.graph-stack { position: relative; height: 540px; }
.graph-card { position: absolute; overflow: hidden; border: 1px solid #dce7ee; border-radius: 19px; background: var(--white); box-shadow: var(--shadow-lg); }
.graph-card img { width: 100%; height: 100%; object-fit: contain; }
.graph-card-main { z-index: 3; top: 60px; right: 70px; width: 520px; height: 390px; }
.graph-card-left { z-index: 2; top: 5px; left: 0; width: 330px; height: 250px; transform: rotate(-4deg); }
.graph-card-right { z-index: 4; right: 0; bottom: 0; width: 350px; height: 260px; transform: rotate(3deg); }

/* Alerts band */
.alert-band { color: var(--white); background: radial-gradient(circle at 20% 50%, rgba(71,168,255,.24), transparent 33%), linear-gradient(120deg, #071521, #0a2a43 60%, #073252); }
.alert-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 100px; }
.alert-visual { position: relative; min-height: 570px; }
.phone-frame-small { position: absolute; z-index: 3; top: 0; left: 80px; width: 300px; height: 575px; padding: 12px; border: 3px solid #273c4b; border-radius: 45px; background: #02070b; box-shadow: 0 35px 80px rgba(0,0,0,.42); }
.phone-notch { position: absolute; z-index: 3; top: 12px; left: 50%; width: 105px; height: 24px; border-radius: 0 0 15px 15px; background: #02070b; transform: translateX(-50%); }
.phone-screen-small { height: 100%; padding: 54px 18px 24px; border-radius: 33px; background: linear-gradient(170deg, #0a1a27, #06101a); }
.phone-logo-mark { display: block; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); }
.phone-screen-small > small { display: block; margin-top: 10px; color: #72b9ff; font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone-screen-small > h3 { margin: 28px 0 20px; font-size: 1.55rem; }
.phone-alert { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.phone-alert i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: var(--gold); background: rgba(242,170,43,.12); }
.phone-alert.critical i { color: var(--red); background: rgba(240,83,97,.12); }
.phone-alert.resolved i { color: var(--green); background: rgba(34,183,119,.12); }
.phone-alert p { display: grid; margin: 0; }
.phone-alert strong { font-size: .72rem; }
.phone-alert span, .phone-alert b { color: rgba(255,255,255,.46); font-size: .58rem; }
.signal-rings { position: absolute; top: 50%; left: 230px; width: 420px; height: 420px; transform: translate(-50%, -50%); }
.signal-rings span { position: absolute; inset: 0; border: 1px solid rgba(71,168,255,.13); border-radius: 50%; animation: ring 4.5s ease-out infinite; }
.signal-rings span:nth-child(2) { animation-delay: 1.5s; }
.signal-rings span:nth-child(3) { animation-delay: 3s; }
@keyframes ring { 0% { opacity: 0; transform: scale(.4); } 30% { opacity: 1; } 100% { opacity: 0; transform: scale(1.2); } }
.alert-copy .section-label { margin-bottom: 16px; }
.alert-copy > p { color: rgba(255,255,255,.65); }
.alert-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 28px; margin: 35px 0; }
.alert-feature-grid > div { display: flex; gap: 12px; }
.alert-feature-grid > div > span { display: grid; place-items: center; width: 28px; height: 28px; margin-top: 2px; border-radius: 50%; color: var(--white); background: var(--blue); }
.alert-feature-grid p { display: grid; gap: 4px; margin: 0; color: rgba(255,255,255,.55); font-size: .84rem; }
.alert-feature-grid strong { color: var(--white); font-size: .92rem; }
.compact-cta { grid-template-columns: 1fr auto; min-height: 200px; }
.compact-cta .alert-copy { max-width: 760px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.process-card > span { display: inline-block; margin-bottom: 44px; color: var(--blue); font-size: .74rem; font-weight: 850; letter-spacing: .12em; }
.process-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.process-card > i { position: absolute; z-index: 2; top: 50%; right: -28px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: var(--white); transform: translateY(-50%); }

/* Pricing preview/page */
.pricing-preview { color: var(--white); background: linear-gradient(125deg, #0b2030 0%, #0c324e 100%); }
.pricing-preview-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 85px; }
.pricing-preview-copy .section-label { margin-bottom: 15px; }
.pricing-preview-copy p { color: rgba(255,255,255,.64); }
.pricing-mini-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pricing-mini-card { position: relative; min-height: 360px; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.05); }
.pricing-mini-card.featured { border-color: rgba(71,168,255,.55); background: linear-gradient(160deg, rgba(39,140,242,.22), rgba(255,255,255,.04)); }
.popular-badge { position: absolute; top: 17px; right: 17px; padding: 6px 9px; border-radius: 99px; color: var(--white); background: var(--blue); font-size: .61rem; font-weight: 800; text-transform: uppercase; }
.pricing-mini-card > span { color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.pricing-mini-card > strong { display: block; margin: 20px 0 2px; font-size: 2.6rem; letter-spacing: -.05em; }
.pricing-mini-card > strong small { color: rgba(255,255,255,.55); font-size: .8rem; }
.pricing-mini-card > p { color: rgba(255,255,255,.53); font-size: .75rem; }
.pricing-mini-card ul { display: grid; gap: 11px; padding: 0; margin: 26px 0 0; list-style: none; }
.pricing-mini-card li { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.72); font-size: .75rem; }
.pricing-mini-card li .icon { margin-top: 3px; color: var(--blue-2); }
.pricing-page-section { padding-top: 0; margin-top: -70px; overflow: visible; }
.pricing-grid.full { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-card { position: relative; min-height: 650px; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.pricing-card.featured { border-color: #69b5f7; box-shadow: 0 26px 65px rgba(26,113,195,.18); transform: translateY(-14px); }
.pricing-card .popular-badge { top: 25px; }
.pricing-card-head > span { color: var(--blue-3); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pricing-card-head p { min-height: 52px; margin: 14px 0 24px; color: var(--muted); font-size: .9rem; }
.pricing-price { display: flex; align-items: baseline; gap: 7px; }
.pricing-price strong { font-size: 3.15rem; letter-spacing: -.06em; }
.pricing-price small { color: var(--muted); font-weight: 650; }
.pricing-suffix { min-height: 25px; color: #6b8090; font-size: .76rem; }
.pricing-card .button { width: 100%; margin-top: 18px; }
.pricing-divider { height: 1px; margin: 30px 0; background: var(--line); }
.included-label { font-size: .8rem; }
.pricing-card ul { display: grid; gap: 14px; padding: 0; margin: 20px 0 0; list-style: none; }
.pricing-card li { display: flex; gap: 10px; color: #4e6476; font-size: .82rem; }
.pricing-card li .icon { margin-top: 4px; color: var(--blue); }
.pricing-note { display: flex; gap: 18px; margin-top: 38px; padding: 25px 28px; border: 1px solid #cfe0ea; border-radius: 17px; background: #f4f9fc; }
.pricing-note > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--blue); background: var(--white); box-shadow: var(--shadow-sm); }
.pricing-note div { display: grid; gap: 4px; }
.pricing-note p { margin: 0; color: var(--muted); font-size: .86rem; }
.comparison-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 19px 24px; border-bottom: 1px solid var(--line); text-align: center; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table th { color: var(--ink); background: #f3f7fa; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.comparison-table td { color: #536b7d; font-size: .86rem; }
.comparison-table .icon { color: var(--blue); }
.comparison-table .muted { color: #657b8b; font-size: .78rem; }
.comparison-table .dash { color: #9baab5; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq-heading .section-label { margin-bottom: 16px; }
.faq-heading p { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 25px 0; border: 0; background: transparent; text-align: left; font-weight: 760; cursor: pointer; }
.accordion-item button i { position: relative; width: 28px; height: 28px; border: 1px solid #cad8e2; border-radius: 50%; flex: 0 0 auto; }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s; }
.accordion-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-content p { padding: 0 55px 25px 0; margin: 0; color: var(--muted); font-size: .92rem; }
.accordion-item.is-open .accordion-content { max-height: 260px; }

/* CTA/footer */
.cta-section { position: relative; padding: 0 0 100px; color: var(--white); overflow: hidden; background: var(--white); }
.cta-card { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; min-height: 370px; padding: 65px 72px; border-radius: 28px; overflow: hidden; background: radial-gradient(circle at 85% 0%, rgba(76,224,255,.18), transparent 35%), linear-gradient(130deg, #071521, #0a3555); box-shadow: var(--shadow-lg); }
.cta-card::before { content: ""; position: absolute; width: 420px; height: 420px; right: -150px; bottom: -280px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.cta-card > div { position: relative; z-index: 2; }
.cta-card .section-label { margin-bottom: 16px; }
.cta-card h2 { max-width: 780px; font-size: clamp(2.3rem, 4vw, 3.8rem); }
.cta-card p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.62); }
.cta-actions { display: grid; justify-items: start; gap: 15px; }
.site-footer { position: relative; padding: 86px 0 25px; color: rgba(255,255,255,.66); background: #050f18; overflow: hidden; }
.footer-glow { position: absolute; top: -300px; left: 15%; width: 700px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(39,140,242,.11), transparent 67%); }
.footer-grid { position: relative; display: grid; grid-template-columns: 2fr repeat(3, .7fr); gap: 60px; padding-bottom: 60px; }
.footer-brand img { width: 260px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 430px; font-size: .88rem; }
.footer-email { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; color: var(--white); font-weight: 720; }
.footer-grid h2 { margin: 5px 0 20px; color: var(--white); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid > div:not(.footer-brand) a { font-size: .84rem; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.08); font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-note { color: rgba(255,255,255,.35); }
.site-credit { color: rgba(255,255,255,.48); white-space: nowrap; }
.site-credit strong { color: #b98aff; }

/* Page hero */
.page-hero { position: relative; min-height: 720px; padding: 180px 0 110px; color: var(--white); overflow: hidden; background: radial-gradient(circle at 82% 30%, rgba(39,140,242,.24), transparent 35%), linear-gradient(135deg, #071521, #0b2b43); }
.page-hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.page-hero-copy .eyebrow { margin-bottom: 24px; }
.page-hero-copy h1 { font-size: clamp(3.1rem, 5vw, 5rem); }
.page-hero-copy p { max-width: 680px; color: rgba(255,255,255,.65); }
.page-hero-copy .hero-actions-row { margin-top: 34px; }
.platform-preview-window { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: #eef4f8; box-shadow: 0 35px 95px rgba(0,0,0,.4); transform: rotateY(-5deg); }
.platform-preview-top { display: flex; align-items: center; gap: 7px; height: 47px; padding: 0 16px; color: rgba(255,255,255,.5); background: #0b1b29; }
.platform-preview-top > span { width: 8px; height: 8px; border-radius: 50%; background: #314b5e; }
.platform-preview-top b { margin-left: 8px; font-size: .64rem; }
.platform-preview-body { display: grid; grid-template-columns: 56px 1fr; min-height: 430px; }
.platform-preview-nav { display: flex; flex-direction: column; align-items: center; gap: 17px; padding-top: 16px; color: #72899b; background: #10283a; }
.preview-logo-dot { width: 30px; height: 30px; margin-bottom: 5px; border-radius: 9px; background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); }
.platform-preview-nav i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; }
.platform-preview-nav i.active { color: var(--white); background: var(--blue); }
.platform-preview-content { padding: 24px; color: var(--ink); }
.preview-head { display: flex; align-items: center; justify-content: space-between; }
.preview-head > div { display: grid; }
.preview-head small { color: #8092a1; font-size: .65rem; }
.preview-head strong { font-size: 1.05rem; }
.preview-head > span { display: flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid #d9e5ec; border-radius: 99px; color: #5e7484; background: var(--white); font-size: .58rem; }
.preview-head > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.preview-metrics div { display: grid; padding: 14px; border: 1px solid #dfe9ef; border-radius: 12px; background: var(--white); }
.preview-metrics small { color: #7d90a0; font-size: .61rem; }
.preview-metrics strong { margin-top: 7px; font-size: 1.05rem; }
.preview-chart { height: 220px; margin-top: 13px; padding: 15px; border: 1px solid #dfe9ef; border-radius: 13px; background-color: var(--white); background-image: linear-gradient(#edf2f5 1px, transparent 1px), linear-gradient(90deg, #edf2f5 1px, transparent 1px); background-size: 25% 25%; }
.preview-chart svg { width: 100%; height: 100%; }
.page-hero-simple { min-height: 610px; }
.page-hero-center { position: relative; z-index: 2; text-align: center; }
.page-hero-center .eyebrow { justify-content: center; margin-bottom: 25px; }
.page-hero-center p { margin-inline: auto; color: rgba(255,255,255,.65); }
.page-hero-center .button { margin-top: 26px; }
.pricing-hero { min-height: 590px; padding-bottom: 150px; }

/* Platform page */
.platform-nav-section { padding: 35px 0; border-bottom: 1px solid var(--line); }
.platform-anchor-nav { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.platform-anchor-nav a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 54px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; color: #536b7d; background: var(--white); font-size: .78rem; font-weight: 750; transition: border-color .2s, color .2s, transform .2s; }
.platform-anchor-nav a:hover { color: var(--blue); border-color: #afd6f5; transform: translateY(-2px); }
.platform-anchor-nav a span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; color: var(--blue); background: #eaf5ff; }
.platform-detail-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; }
.platform-detail-layout.reverse { grid-template-columns: 1.22fr .78fr; }
.platform-detail-layout.reverse .platform-detail-copy { grid-column: 2; grid-row: 1; }
.platform-detail-layout.reverse .platform-detail-visual { grid-column: 1; grid-row: 1; }
.platform-detail-copy .section-label { margin-bottom: 16px; }
.platform-detail-copy > p { color: var(--muted); }
.platform-detail-visual { min-height: 470px; }
.detail-dashboard-card, .detail-graph-card, .detail-map-card, .detail-alert-card, .detail-access-card, .detail-api-card { position: relative; min-height: 440px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-lg); }
.detail-card-top, .detail-alert-header, .access-card-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.detail-card-top > div, .detail-alert-header > div, .access-card-head > div { display: grid; }
.detail-card-top small, .detail-alert-header small, .access-card-head small { color: var(--muted); font-size: .7rem; }
.detail-card-top strong, .detail-alert-header strong, .access-card-head strong { font-size: 1.1rem; }
.detail-card-top > span { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid #dce8ee; border-radius: 99px; color: #567080; font-size: .68rem; }
.detail-card-top > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.detail-live-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 26px; }
.detail-live-grid > div { position: relative; display: grid; min-height: 135px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #f9fbfd; }
.detail-live-grid > div > span { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 35px; height: 35px; border-radius: 10px; color: var(--blue); background: #e7f3ff; }
.detail-live-grid small { color: var(--muted); }
.detail-live-grid strong { align-self: end; font-size: 1.75rem; letter-spacing: -.04em; }
.detail-graph-controls { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.detail-graph-controls div { display: flex; gap: 6px; }
.detail-graph-controls span { padding: 7px 10px; border-radius: 8px; color: var(--muted); font-size: .67rem; }
.detail-graph-controls span.active { color: var(--white); background: var(--blue); }
.detail-graph-card img { width: 100%; height: 300px; object-fit: contain; padding: 15px; }
.detail-export-row { display: flex; justify-content: flex-end; gap: 12px; padding: 0 24px 20px; }
.detail-export-row span { display: flex; align-items: center; gap: 7px; color: var(--blue); font-size: .69rem; font-weight: 750; }
.detail-map-card { color: #c8ddea; background: radial-gradient(circle at 70% 15%, #1c506d, #0b2332 65%); }
.map-australia.large { top: 12px; left: 50%; width: auto; height: calc(100% - 62px); transform: translateX(-50%); }
.map-detail-popup { position: absolute; right: 20px; bottom: 20px; display: grid; width: 230px; padding: 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; background: rgba(4,18,27,.82); box-shadow: 0 18px 35px rgba(0,0,0,.28); }
.map-detail-popup > span { display: flex; align-items: center; gap: 6px; color: #78d9ac; font-size: .62rem; }
.map-detail-popup > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.map-detail-popup strong { margin-top: 6px; color: var(--white); font-size: .85rem; }
.map-detail-popup small { color: rgba(255,255,255,.52); font-size: .62rem; }
.detail-alert-card, .detail-access-card { padding-bottom: 20px; }
.detail-alert-card .alert-row { margin-inline: 24px; }
.detail-alert-header > span { padding: 6px 9px; border-radius: 99px; color: #b62e3d; background: #ffe9ec; font-size: .65rem; font-weight: 750; }
.detail-alert-card .alert-row > b { cursor: pointer; }
.alert-filter-row { display: flex; gap: 10px; padding: 18px 24px 0; }
.alert-filter-row span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: .64rem; }
.access-card-head button { padding: 8px 12px; border: 0; border-radius: 8px; color: var(--white); background: var(--blue); font-size: .68rem; font-weight: 750; }
.detail-access-card .role-row { margin-inline: 26px; }
.access-footer { display: flex; gap: 16px; padding: 18px 26px 0; color: #5f7687; font-size: .68rem; }
.access-footer span { display: flex; align-items: center; gap: 6px; }
.detail-api-card { color: var(--white); background: #071521; }
.detail-api-card pre { font-size: .9rem; }
.api-key-row { position: absolute; right: 22px; bottom: 22px; left: 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(255,255,255,.04); font-size: .68rem; }
.api-key-row span { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.6); }
.api-key-row code { color: #b8d3e6; }
.api-key-row b { color: #70d7a6; }

/* Solutions */
.solutions-grid-section { padding-top: 80px; }
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.solution-card { min-height: 500px; padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 13px 38px rgba(9,29,45,.04); }
.solution-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 45px; }
.solution-card-top > span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; color: var(--blue); background: #eaf5ff; }
.solution-card-top .icon { width: 27px; height: 27px; }
.solution-card-top small { color: #bdcbd4; font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.solution-card .section-label { margin-bottom: 14px; }
.solution-card h2 { max-width: 590px; font-size: clamp(2rem, 3vw, 3rem); }
.solution-card > p { color: var(--muted); }
.fit-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -250px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(39,140,242,.16), transparent 70%); }
.fit-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.fit-copy .section-label { margin-bottom: 16px; }
.fit-copy > p { color: rgba(255,255,255,.62); }
.fit-diagram { position: relative; min-height: 500px; }
.fit-node { position: absolute; display: grid; width: 190px; min-height: 120px; padding: 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.05); box-shadow: 0 20px 50px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.fit-node > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 12px; border-radius: 10px; color: var(--blue-2); background: rgba(39,140,242,.13); }
.fit-node strong { font-size: .82rem; }
.fit-node small { color: rgba(255,255,255,.5); font-size: .66rem; }
.fit-node.source { top: 40px; left: 0; }
.fit-node.meter { top: 210px; left: 120px; }
.fit-node.cloud { top: 60px; right: 80px; }
.fit-node.users { right: 0; bottom: 20px; }
.fit-line { position: absolute; height: 1px; background: linear-gradient(90deg, rgba(71,168,255,.2), var(--blue-2), rgba(71,168,255,.2)); transform-origin: left center; }
.fit-line::after { content: ""; position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 12px var(--blue-2); }
.line-one { top: 170px; left: 145px; width: 145px; transform: rotate(42deg); }
.line-two { top: 275px; left: 307px; width: 255px; transform: rotate(-42deg); }
.line-three { top: 190px; right: 92px; width: 180px; transform: rotate(73deg); }

/* Contact */
.page-hero-contact { min-height: 900px; padding-bottom: 100px; }
.contact-hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.contact-hero-copy { padding-top: 30px; }
.contact-hero-copy .eyebrow { margin-bottom: 23px; }
.contact-hero-copy h1 { font-size: clamp(3.2rem, 5vw, 5rem); }
.contact-hero-copy > p { color: rgba(255,255,255,.64); }
.contact-points { display: grid; gap: 20px; margin: 40px 0; }
.contact-points > div { display: flex; gap: 14px; }
.contact-points > div > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: var(--blue-2); background: rgba(39,140,242,.13); flex: 0 0 auto; }
.contact-points p { display: grid; margin: 0; color: rgba(255,255,255,.54); font-size: .82rem; }
.contact-points strong { color: var(--white); font-size: .92rem; }
.contact-email-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; max-width: 390px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.05); }
.contact-email-card > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; color: var(--blue-2); background: rgba(39,140,242,.13); }
.contact-email-card div { display: grid; }
.contact-email-card small { color: rgba(255,255,255,.46); }
.contact-email-card strong { font-size: .85rem; }
.contact-form-card { padding: 38px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; color: var(--ink); background: var(--white); box-shadow: var(--shadow-lg); }
.contact-form-head { margin-bottom: 26px; }
.contact-form-head small { color: var(--blue); font-size: .73rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-form-head h2 { margin: 8px 0 5px; font-size: 2.1rem; }
.contact-form-head p { margin: 0; color: var(--muted); font-size: .78rem; }
.contact-form { display: grid; gap: 18px; }
.form-grid.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: #384e5e; font-size: .75rem; font-weight: 760; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d5e1e9; border-radius: 11px; outline: none; color: var(--ink); background: #fbfdfe; transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input, .contact-form select { height: 49px; padding: 0 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(39,140,242,.1); }
.consent-label { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; }
.consent-label input { width: 18px; height: 18px; margin-top: 2px; }
.consent-label span { color: var(--muted) !important; font-weight: 550 !important; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-errors, .form-success { display: flex; gap: 12px; margin-bottom: 20px; padding: 15px; border-radius: 12px; font-size: .8rem; }
.form-errors { display: block; color: #982c3a; background: #ffedf0; }
.form-errors ul { margin: 6px 0 0; padding-left: 20px; }
.form-success { color: #126c49; background: #e8f7ef; }
.form-success > .icon { width: 23px; height: 23px; padding: 4px; border-radius: 50%; color: var(--white); background: var(--green); }
.form-success p { margin: 3px 0 0; }
.contact-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-next-grid article { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; }
.contact-next-grid article > span { display: inline-block; margin-bottom: 35px; color: var(--blue); font-size: .75rem; font-weight: 850; letter-spacing: .1em; }
.contact-next-grid p { color: var(--muted); font-size: .88rem; }

/* Legal */
.legal-hero { position: relative; padding: 190px 0 100px; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(39,140,242,.22), transparent 35%), #071521; }
.legal-hero .eyebrow { margin-bottom: 20px; }
.legal-hero h1 { margin-bottom: 15px; font-size: clamp(3rem, 5vw, 4.8rem); }
.legal-hero p { color: rgba(255,255,255,.6); }
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 45px 0 14px; font-size: 1.55rem; letter-spacing: -.03em; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--blue-3); font-weight: 700; }
.legal-updated { padding-bottom: 25px; border-bottom: 1px solid var(--line); font-size: .82rem; }

/* Admin */
.admin-body { min-height: 100vh; background: var(--paper); }
.admin-login-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: radial-gradient(circle at 80% 20%, rgba(39,140,242,.22), transparent 35%), #071521; }
.admin-login-card { width: min(100%, 470px); padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-lg); }
.admin-login-card img { width: 260px; margin: 0 auto 30px; }
.admin-login-card h1 { margin-bottom: 8px; font-size: 2rem; text-align: center; }
.admin-login-card > p { color: var(--muted); text-align: center; }
.admin-login-card form { display: grid; gap: 16px; margin-top: 25px; }
.admin-login-card label, .admin-field { display: grid; gap: 7px; }
.admin-login-card label span, .admin-field > span { color: #40586a; font-size: .75rem; font-weight: 760; }
.admin-login-card input, .admin-field input, .admin-field textarea, .admin-field select { width: 100%; padding: 12px 13px; border: 1px solid #d4e0e8; border-radius: 10px; outline: none; background: var(--white); }
.admin-login-card input:focus, .admin-field input:focus, .admin-field textarea:focus, .admin-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(39,140,242,.1); }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; display: flex; flex-direction: column; height: 100vh; padding: 24px 20px; color: rgba(255,255,255,.68); background: var(--ink); }
.admin-sidebar img { width: 210px; margin-bottom: 35px; filter: brightness(0) invert(1); }
.admin-nav { display: grid; gap: 7px; }
.admin-nav a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 10px; font-size: .82rem; font-weight: 720; }
.admin-nav a:hover, .admin-nav a.is-active { color: var(--white); background: rgba(255,255,255,.08); }
.admin-nav a.is-active { background: linear-gradient(135deg, rgba(39,140,242,.35), rgba(39,140,242,.12)); }
.admin-sidebar-footer { margin-top: auto; }
.admin-sidebar-footer a { display: flex; align-items: center; gap: 8px; padding: 10px; font-size: .75rem; }
.admin-main { min-width: 0; padding: 35px; }
.admin-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.admin-topbar h1 { margin-bottom: 5px; font-size: 2.3rem; }
.admin-topbar p { margin: 0; color: var(--muted); }
.admin-badge { padding: 8px 11px; border: 1px solid #cfe2ee; border-radius: 99px; color: #2e6b99; background: #ebf6fc; font-size: .68rem; font-weight: 800; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 25px; }
.admin-stat { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 10px 28px rgba(9,29,45,.04); }
.admin-stat span { color: var(--muted); font-size: .72rem; }
.admin-stat strong { display: block; margin-top: 8px; font-size: 2rem; letter-spacing: -.05em; }
.admin-panel { margin-bottom: 20px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 10px 28px rgba(9,29,45,.035); }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.admin-panel-head h2 { margin: 0; font-size: 1.3rem; letter-spacing: -.025em; }
.admin-panel-head p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.admin-grid.three { grid-template-columns: repeat(3, 1fr); }
.admin-field.full { grid-column: 1 / -1; }
.admin-field textarea { min-height: 110px; resize: vertical; }
.admin-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.admin-alert { margin-bottom: 20px; padding: 13px 16px; border-radius: 11px; font-size: .8rem; }
.admin-alert.success { color: #126c49; background: #e4f6ed; }
.admin-alert.error { color: #9c2a3a; background: #ffeaed; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .76rem; }
.admin-table th { color: #6b8191; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.admin-table td strong { display: block; color: var(--ink); }
.admin-table td small { color: var(--muted); }
.status-pill { display: inline-flex; padding: 5px 8px; border-radius: 99px; color: #176d4d; background: #e2f5eb; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.status-pill.read { color: #617482; background: #edf2f5; }
.admin-empty { padding: 35px; color: var(--muted); text-align: center; }
.repeat-card { margin-bottom: 13px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: #fafcfd; }
.repeat-card h3 { margin-bottom: 14px; font-size: .95rem; }
.admin-checkbox { display: flex; align-items: center; gap: 9px; }
.admin-checkbox input { width: 18px; height: 18px; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 20px; }
  .dashboard-link { display: none; }
  .hero-layout { grid-template-columns: 1fr 1fr; }
  .hero-visual { width: 690px; margin-right: -230px; }
  .feature-panel { padding: 45px; }
  .phone-preview { right: -10px; }
  .graph-card-main { right: 20px; }
  .footer-grid { grid-template-columns: 1.6fr repeat(3, .7fr); gap: 35px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-actions > .button { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.is-open { display: block; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-layout, .page-hero-layout, .contact-hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: 820px; margin: 20px 0 -20px; }
  .dashboard-shell { transform: none; }
  .trust-strip { margin-top: 75px; }
  .split-heading, .data-layout, .alert-layout, .pricing-preview-layout, .faq-layout, .fit-layout, .platform-detail-layout, .platform-detail-layout.reverse { grid-template-columns: 1fr; gap: 55px; }
  .platform-detail-layout.reverse .platform-detail-copy, .platform-detail-layout.reverse .platform-detail-visual { grid-column: auto; grid-row: auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-tab-list { grid-template-columns: repeat(3, 1fr); }
  .feature-tab:nth-child(3) { border-right: 0; }
  .feature-tab:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature-panel { grid-template-columns: 1fr; gap: 35px; }
  .feature-panel-copy { max-width: 650px; }
  .feature-panel-visual { min-height: 430px; }
  .graph-stack { max-width: 720px; margin: 0 auto; }
  .alert-visual { min-height: 600px; }
  .phone-frame-small { left: 50%; transform: translateX(-50%); }
  .signal-rings { left: 50%; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) > i { display: none; }
  .pricing-mini-cards { max-width: 700px; }
  .faq-heading { position: static; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-note { grid-column: 1 / -1; grid-row: 2; }
  .page-hero-visual { max-width: 760px; }
  .platform-anchor-nav { grid-template-columns: repeat(3, 1fr); }
  .platform-detail-copy { max-width: 720px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .fit-diagram { max-width: 700px; width: 100%; }
  .pricing-grid.full { grid-template-columns: 1fr; max-width: 680px; }
  .pricing-card.featured { transform: none; }
  .pricing-card { min-height: 0; }
  .contact-hero-copy { max-width: 720px; }
  .contact-form-card { max-width: 760px; width: 100%; }
  .admin-shell { grid-template-columns: 210px 1fr; }
  .admin-sidebar img { width: 170px; }
  .admin-grid.three { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { height: 72px; }
  .brand { width: 190px; min-width: 0; }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.1rem); }
  .hero { padding-top: 120px; }
  .hero-layout { gap: 15px; }
  .hero-copy { padding-top: 10px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions-row { display: grid; }
  .hero-actions-row .button { width: 100%; }
  .hero-microcopy { display: grid; gap: 10px; }
  .hero-visual { width: 760px; margin-left: -15px; transform: scale(.56); transform-origin: left top; margin-bottom: -235px; }
  .floating-alert-card { right: 20px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 22px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3) { padding-left: 0; }
  .split-heading { gap: 25px; }
  .audience-grid, .alert-feature-grid, .process-grid, .pricing-mini-cards, .contact-next-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 280px; }
  .feature-tab-list { display: flex; overflow-x: auto; border-radius: 12px; scrollbar-width: none; }
  .feature-tab-list::-webkit-scrollbar { display: none; }
  .feature-tab { flex: 0 0 150px; border-bottom: 0 !important; }
  .feature-panel { padding: 28px 22px; }
  .feature-panel-visual { min-height: 350px; }
  .phone-preview { width: 250px; right: -20px; bottom: -80px; }
  .visual-backdrop-card { width: 260px; top: 45px; left: 0; padding: 20px; }
  .graph-window, .map-window, .alerts-window, .roles-window, .api-window { inset: 15px 0 0; }
  .alerts-window, .roles-window { padding: 14px; }
  .alert-row { grid-template-columns: 36px 1fr; }
  .alert-row > b { display: none; }
  .alert-row > div { width: 36px; height: 36px; }
  .role-row { grid-template-columns: 40px 1fr; }
  .role-row > b { grid-column: 2; justify-self: start; }
  .graph-stack { height: 440px; }
  .graph-card-main { top: 55px; right: 0; width: 90%; height: 300px; }
  .graph-card-left { width: 55%; height: 185px; }
  .graph-card-right { width: 58%; height: 190px; }
  .alert-layout { gap: 30px; }
  .alert-visual { min-height: 550px; }
  .phone-frame-small { width: 280px; height: 540px; }
  .signal-rings { width: 330px; height: 330px; }
  .process-card > i { display: none; }
  .cta-section { padding-bottom: 60px; }
  .cta-card { padding: 42px 26px; border-radius: 22px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-note { grid-column: auto; grid-row: auto; }
  .page-hero { min-height: auto; padding: 135px 0 75px; }
  .page-hero-simple { min-height: 560px; }
  .platform-preview-window { transform: none; }
  .platform-preview-body { grid-template-columns: 45px 1fr; }
  .platform-preview-content { padding: 14px; }
  .preview-metrics { grid-template-columns: 1fr; }
  .preview-metrics div:nth-child(n+2) { display: none; }
  .preview-chart { height: 180px; }
  .platform-anchor-nav { grid-template-columns: repeat(2, 1fr); }
  .platform-anchor-nav a { justify-content: flex-start; }
  .platform-detail-visual { min-height: 390px; }
  .detail-dashboard-card, .detail-graph-card, .detail-map-card, .detail-alert-card, .detail-access-card, .detail-api-card { min-height: 390px; }
  .detail-live-grid { gap: 9px; padding: 15px; }
  .detail-live-grid > div { min-height: 120px; padding: 15px; }
  .detail-live-grid strong { font-size: 1.25rem; }
  .detail-alert-card .alert-row, .detail-access-card .role-row { margin-inline: 14px; }
  .detail-graph-card img { height: 255px; padding: 7px; }
  .detail-export-row { display: none; }
  .solution-card { min-height: 0; padding: 28px; }
  .fit-diagram { min-height: 650px; }
  .fit-node.source { left: 0; }
  .fit-node.meter { top: 185px; left: 80px; }
  .fit-node.cloud { top: 340px; right: 0; }
  .fit-node.users { bottom: 0; left: 55px; right: auto; }
  .line-one { top: 155px; left: 125px; width: 100px; }
  .line-two { top: 300px; left: 230px; width: 130px; transform: rotate(35deg); }
  .line-three { top: 480px; right: 120px; width: 100px; transform: rotate(125deg); }
  .pricing-page-section { margin-top: -30px; }
  .pricing-card { padding: 28px; }
  .pricing-note { align-items: flex-start; }
  .form-grid.two { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px 20px; }
  .page-hero-contact { padding-bottom: 70px; }
  .legal-hero { padding: 140px 0 70px; }
  .admin-shell { display: block; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar img { margin-bottom: 20px; }
  .admin-nav { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar-footer { margin-top: 20px; }
  .admin-main { padding: 22px 15px; }
  .admin-stats, .admin-grid { grid-template-columns: 1fr; }
  .admin-topbar { display: grid; }
}

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

/* Supplied Metering Australia branding and app previews */
.brand { width: 238px; }
.brand img,
.footer-brand img,
.admin-sidebar img { object-fit: contain; }
.app-screenshot-window { inset: 8px 0 0 8px; background: #fff; }
.app-screenshot-window img { width: 100%; height: 100%; padding: 0; object-fit: cover; object-position: top left; }
.graph-card { background: #fff; }
.graph-card img { object-fit: cover; object-position: top left; }
.graph-card-main { width: 540px; height: 405px; }
.app-screenshot-card { min-height: 0; aspect-ratio: 4 / 3; background: #fff; }
.app-screenshot-card img { width: 100%; height: 100%; padding: 0; object-fit: cover; object-position: top left; }

/* Full CDR privacy policy */
.privacy-hero { padding-bottom: 86px; }
.legal-hero-date { display: inline-flex; margin-top: 18px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.78) !important; background: rgba(255,255,255,.06); font-size: .76rem; font-weight: 700; }
.privacy-policy-section { padding-top: 72px; }
.legal-policy-layout { display: grid; grid-template-columns: 280px minmax(0, 860px); align-items: start; justify-content: center; gap: 70px; }
.legal-toc { position: sticky; top: 116px; }
.legal-toc-inner { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.legal-toc strong { display: block; margin-bottom: 14px; color: var(--ink); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.legal-toc nav { display: grid; gap: 3px; }
.legal-toc a { padding: 7px 9px; border-radius: 8px; color: var(--muted); font-size: .72rem; font-weight: 650; line-height: 1.35; transition: color .2s, background .2s; }
.legal-toc a:hover { color: var(--blue-3); background: #eef7ff; }
.legal-toc a.toc-sub { padding-left: 20px; font-size: .68rem; }
.legal-policy-content { max-width: none; }
.policy-intro-card { margin-bottom: 48px; padding: 30px; border: 1px solid #cfe4f7; border-radius: 20px; background: linear-gradient(135deg, #eef8ff, #f8fbfd); }
.policy-intro-card > span { color: var(--blue-3); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.policy-intro-card h2 { margin: 8px 0 8px; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.35rem); }
.policy-intro-card h2 small { display: block; margin-top: 4px; color: var(--muted); font-size: .72em; font-weight: 650; }
.policy-intro-card p { margin: 0; }
.policy-section { scroll-margin-top: 120px; padding: 0 0 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.policy-section:last-of-type { border-bottom: 0; }
.policy-section h2 { margin: 0 0 16px; color: var(--ink); font-size: clamp(1.45rem, 2.5vw, 1.9rem); }
.policy-section h3 { margin: 0 0 10px; color: var(--ink); font-size: 1.12rem; }
.policy-section p,
.policy-section li,
.policy-definitions dd { color: var(--muted); }
.policy-section ul { display: grid; gap: 10px; margin: 18px 0 20px; padding-left: 22px; }
.policy-section li { padding-left: 5px; }
.policy-section strong { color: #263d4f; }
.policy-callout { scroll-margin-top: 120px; margin-top: 28px; padding: 24px; border-left: 4px solid var(--blue); border-radius: 0 16px 16px 0; background: #f0f8ff; }
.policy-callout p { margin-bottom: 0; }
.policy-contact-card { display: grid; gap: 7px; margin: 20px 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: #fafcfd; }
.policy-contact-card p { margin: 0; }
.policy-address { margin: 22px 0 0; padding: 24px; border-radius: 14px; color: var(--muted); background: var(--paper-2); font-style: normal; }
.policy-address strong { color: var(--ink); }
.policy-definitions { display: grid; gap: 12px; margin: 0; }
.policy-definitions div { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.policy-definitions dt { margin-bottom: 5px; color: var(--ink); font-weight: 820; }
.policy-definitions dd { margin: 0; }
.policy-help-card { scroll-margin-top: 120px; padding: 34px; border-radius: 22px; color: #fff; background: radial-gradient(circle at 85% 15%, rgba(71,168,255,.28), transparent 35%), #071521; box-shadow: var(--shadow-lg); }
.policy-help-card > span { color: var(--blue-2); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.policy-help-card h2 { margin: 8px 0 8px; font-size: 2rem; }
.policy-help-card p { margin: 0; color: rgba(255,255,255,.68); }
.policy-help-card a { color: #fff; }

@media (max-width: 980px) {
  .legal-policy-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; }
  .legal-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .graph-card-main { width: min(78%, 540px); }
}

@media (max-width: 720px) {
  .brand { width: 196px; }
  .app-screenshot-window { inset: 12px 0 0; }
  .graph-card img { object-fit: cover; }
  .app-screenshot-card { aspect-ratio: 4 / 3; min-height: 0 !important; }
  .app-screenshot-card img { height: 100% !important; padding: 0 !important; }
  .legal-toc nav { grid-template-columns: 1fr; }
  .legal-toc-inner { padding: 18px; }
  .policy-intro-card,
  .policy-help-card { padding: 24px 20px; }
  .policy-section { padding-bottom: 30px; margin-bottom: 30px; }
}

/* ========================================================================== 
   MOBILE REDESIGN — phone-first layouts
   ========================================================================== */
@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  body { overflow-x: hidden; font-size: 15px; line-height: 1.58; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 64px 0; }
  .section-intro { margin-bottom: 34px; }
  .section-intro p,
  .split-heading > p,
  .page-hero p { font-size: .98rem; }
  h1, h2, h3, p { overflow-wrap: break-word; }
  h1 { font-size: clamp(2.45rem, 11.5vw, 3.25rem); line-height: .99; letter-spacing: -.055em; }
  h2 { font-size: clamp(2rem, 9vw, 2.65rem); line-height: 1.03; letter-spacing: -.045em; }
  h3 { line-height: 1.08; }
  .eyebrow { max-width: 100%; font-size: .66rem; line-height: 1.35; }
  .section-label { font-size: .64rem; line-height: 1.4; }
  .button { min-height: 50px; padding-inline: 18px; border-radius: 11px; }
  .button:hover { transform: none; }

  /* Header and mobile navigation */
  .site-header { background: rgba(7,21,33,.94); backdrop-filter: blur(16px); }
  .header-inner { height: 68px; gap: 12px; }
  .brand { width: 166px; min-width: 0; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 11px; }
  .mobile-menu { position: absolute; top: 100%; right: 0; left: 0; height: calc(100dvh - 68px); overflow-y: auto; border-top-color: rgba(255,255,255,.1); background: rgba(7,21,33,.995); box-shadow: 0 22px 45px rgba(0,0,0,.28); }
  .mobile-menu-inner { gap: 0; padding: 14px 16px 32px; }
  .mobile-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 6px; font-size: 1.05rem; }
  .mobile-menu a:last-child { justify-content: center; min-height: 52px; margin-top: 18px; padding-inline: 18px; border: 0; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); }

  /* Homepage hero — a true responsive dashboard instead of a scaled desktop */
  .hero { min-height: 0; padding: 106px 0 0; }
  .hero-layout { display: block; min-width: 0; }
  .hero-layout > *, .hero-copy, .hero-visual { min-width: 0; }
  .hero-copy { width: 100%; padding: 0; }
  .hero-copy .eyebrow { margin-bottom: 18px; }
  .hero-copy h1 { width: 100%; max-width: none; margin-bottom: 20px; font-size: clamp(2.6rem, 12.4vw, 3.35rem); line-height: .97; }
  .hero-lead { width: 100%; max-width: none; margin-bottom: 26px; font-size: .98rem; line-height: 1.62; }
  .hero-actions-row { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; }
  .hero-actions-row .button { width: 100%; }
  .hero-microcopy { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 22px; font-size: .75rem; }
  .hero-microcopy span { min-width: 0; }
  .hero-visual { width: 100%; margin: 30px 0 0; transform: none; perspective: none; }
  .dashboard-shell { width: 100%; border-radius: 18px; transform: none; box-shadow: 0 26px 65px rgba(0,0,0,.34); }
  .dashboard-topbar { height: 49px; padding: 0 14px; }
  .dashboard-brand-mini, .dashboard-status { gap: 7px; font-size: .61rem; }
  .pulse-mark { width: 24px; height: 24px; border-radius: 7px; }
  .dashboard-status { white-space: nowrap; }
  .dashboard-main { display: block; min-height: 0; }
  .mini-sidebar { display: none; }
  .dashboard-content { padding: 14px; }
  .dashboard-heading-row { margin-bottom: 12px; }
  .dashboard-heading-row small { font-size: .61rem; }
  .dashboard-heading-row strong { font-size: .92rem; }
  .live-pill { padding: 5px 8px; font-size: .58rem; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .metric-card { min-height: 102px; padding: 12px; border-radius: 11px; }
  .metric-card:nth-child(3) { display: none; }
  .metric-card > span { padding-right: 25px; font-size: .62rem; }
  .metric-card > strong { font-size: 1.18rem; }
  .metric-card > em { font-size: .54rem; }
  .metric-icon { top: 10px; right: 10px; width: 25px; height: 25px; border-radius: 7px; }
  .dashboard-lower-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 8px; }
  .chart-card { min-height: 206px; padding: 12px; border-radius: 11px; }
  .site-list-card { display: none; }
  .fake-chart { height: 132px; }
  .floating-alert-card { position: relative; right: auto; bottom: auto; grid-template-columns: 35px minmax(0, 1fr) 8px; width: calc(100% - 24px); margin: -8px 12px 0; padding: 11px; border-radius: 12px; }
  .floating-icon { width: 35px; height: 35px; border-radius: 9px; }
  .floating-alert-card strong { font-size: .68rem; }
  .floating-alert-card span { font-size: .56rem; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 42px; }
  .trust-item { min-width: 0; padding: 20px 12px; }
  .trust-item:first-child { padding-left: 12px; }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item strong { font-size: 1.03rem; }
  .trust-item span { font-size: .66rem; }

  /* Headings and cards */
  .split-heading { display: block; margin-bottom: 34px; }
  .split-heading h2 { margin-bottom: 18px; }
  .audience-grid { gap: 12px; }
  .audience-card { min-height: 0; padding: 23px 22px; border-radius: 16px; }
  .card-icon { width: 46px; height: 46px; margin-bottom: 23px; border-radius: 13px; }
  .card-number { top: 20px; right: 21px; }
  .audience-card h3 { max-width: none; margin-bottom: 10px; font-size: 1.32rem; }
  .audience-card p { font-size: .88rem; }

  /* Feature showcase */
  .feature-showcase .section-intro { text-align: left; }
  .feature-showcase .section-intro.centered { margin-inline: 0; }
  .feature-tab-list { display: flex; margin-right: -16px; margin-bottom: 14px; overflow-x: auto; border-radius: 12px 0 0 12px; scroll-snap-type: x mandatory; }
  .feature-tab { flex: 0 0 132px; min-height: 55px; padding: 9px; font-size: .69rem; scroll-snap-align: start; }
  .feature-tab span { width: 25px; height: 25px; }
  .feature-panel { min-height: 0; padding: 24px 19px; border-radius: 17px; }
  .feature-panel-copy { max-width: none; padding-right: 0; }
  .feature-panel-copy h3 { font-size: 2rem; }
  .feature-panel-copy p { font-size: .9rem; }
  .feature-panel-visual { min-height: 270px; }
  .phone-preview { right: auto; bottom: -52px; left: 50%; width: 190px; transform: translateX(-50%); }
  .visual-backdrop-card { display: none; }
  .graph-window, .map-window, .alerts-window, .roles-window, .api-window { inset: 8px 0 0; border-radius: 14px; }
  .app-screenshot-window img { object-fit: contain; background: #fff; }
  .map-australia { top: 10px; left: 50%; width: auto; height: calc(100% - 58px); transform: translateX(-50%); }
    .map-pin { gap: 4px; font-size: .5rem; }
  .map-pin i { width: 8px; height: 8px; box-shadow: 0 0 0 4px rgba(34,183,119,.13), 0 0 12px rgba(34,183,119,.7); }
  .map-pin i::after { inset: -5px; }
  .map-pin b { padding: 2px 5px; }
  .pin-perth { transform: translate(-4px, -50%); }
  .pin-adelaide, .pin-melbourne, .pin-sydney, .pin-brisbane { transform: translate(calc(-100% + 4px), -50%); }
  .map-legend { gap: 10px; padding: 8px 9px; font-size: .51rem; }
  .alerts-window, .roles-window { padding: 10px 12px; }
  .alerts-summary { gap: 8px; }
  .alerts-summary > div { padding: 11px; }
  .alert-row { gap: 9px; padding: 10px 0; }
  .alert-row p strong { font-size: .69rem; }
  .alert-row p span { font-size: .56rem; }
  .role-row { gap: 9px; padding: 10px 0; }
  .permissions-card { margin-top: 12px; padding: 12px; }
  .api-window pre { padding: 18px 15px; overflow: hidden; font-size: .65rem; line-height: 1.65; }
  .api-security { right: 12px; bottom: 12px; left: 12px; padding: 10px; }

  /* Graph screenshots */
  .data-layout { gap: 34px; }
  .data-copy .button { width: 100%; }
  .check-list { gap: 10px; margin: 22px 0 27px; }
  .check-list li { align-items: flex-start; font-size: .86rem; }
  .graph-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; height: auto; gap: 10px; }
  .graph-card, .graph-card-main, .graph-card-left, .graph-card-right { position: relative; inset: auto; right: auto; bottom: auto; left: auto; width: auto; height: auto; transform: none; }
  .graph-card { border-radius: 13px; box-shadow: 0 15px 38px rgba(2,16,27,.14); }
  .graph-card-main { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .graph-card-left, .graph-card-right { aspect-ratio: 4 / 3; }
  .graph-card img { object-fit: cover; object-position: top left; }

  /* Alert band */
  .alert-layout { gap: 35px; }
  .alert-visual { min-height: 435px; }
  .phone-frame-small { top: 0; left: 50%; width: 226px; height: 430px; padding: 9px; border-radius: 34px; transform: translateX(-50%); }
  .phone-notch { top: 9px; width: 80px; height: 18px; }
  .phone-screen-small { padding: 42px 14px 18px; border-radius: 26px; }
  .phone-logo-mark { width: 28px; height: 28px; border-radius: 8px; }
  .phone-screen-small > h3 { margin: 20px 0 14px; font-size: 1.18rem; }
  .phone-alert { grid-template-columns: 31px 1fr auto; gap: 8px; padding: 9px 0; }
  .phone-alert i { width: 31px; height: 31px; border-radius: 8px; }
  .phone-alert strong { font-size: .62rem; }
  .phone-alert span, .phone-alert b { font-size: .5rem; }
  .signal-rings { left: 50%; width: 270px; height: 270px; }
  .alert-copy h2 { font-size: 2.3rem; }
  .alert-feature-grid { gap: 15px; margin: 27px 0; }
  .alert-feature-grid > div > span { flex: 0 0 26px; width: 26px; height: 26px; }
  .alert-feature-grid p { font-size: .79rem; }
  .alert-copy > .button { width: 100%; }

  /* Process, pricing, FAQ and CTA */
  .process-grid { gap: 10px; }
  .process-card { min-height: 0; padding: 23px 22px; border-radius: 16px; }
  .process-card > span { margin-bottom: 22px; }
  .process-card p { font-size: .86rem; }
  .pricing-preview-layout { gap: 34px; }
  .pricing-preview-copy .button { width: 100%; }
  .pricing-mini-cards { gap: 10px; }
  .pricing-mini-card { min-height: 0; padding: 24px 22px; border-radius: 16px; }
  .pricing-mini-card > strong { margin-top: 13px; font-size: 2.25rem; }
  .faq-layout { gap: 30px; }
  .accordion-item button { min-height: 64px; padding: 16px 0; gap: 16px; text-align: left; }
  .accordion-content p { padding-right: 0; font-size: .84rem; }
  .cta-card { padding: 32px 22px; border-radius: 18px; }
  .cta-card h2 { font-size: 2.25rem; }
  .cta-actions { width: 100%; }
  .cta-actions .button { width: 100%; }
  .cta-actions .text-link { justify-content: center; max-width: 100%; overflow-wrap: anywhere; text-align: center; }

  /* Footer */
  .site-footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px 18px; padding-bottom: 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 205px; }
  .footer-brand p { max-width: 310px; font-size: .8rem; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 18px; padding: 22px 0 30px; }
  .footer-bottom > * { max-width: 100%; overflow-wrap: anywhere; }
  .footer-note { font-size: .68rem; }
  .footer-glow { right: -210px; width: 430px; height: 430px; }

  /* Generic internal page heroes */
  .page-hero { min-height: 0; padding: 112px 0 62px; }
  .page-hero-simple { min-height: 0; }
  .pricing-hero { min-height: 0; padding-bottom: 92px; }
  .page-hero-layout, .contact-hero-layout { gap: 34px; }
  .page-hero-copy h1, .page-hero-center h1, .contact-hero-copy h1 { max-width: 100%; font-size: clamp(2.5rem, 11.5vw, 3.2rem); line-height: .99; }
  .page-hero-center { text-align: left; }
  .page-hero-center .eyebrow { justify-content: flex-start; }
  .page-hero-center p { margin-inline: 0; }
  .page-hero-center .button { width: 100%; }

  /* Platform page */
  .platform-preview-window { border-radius: 16px; }
  .platform-preview-top { padding-inline: 13px; }
  .platform-preview-body { grid-template-columns: 1fr; min-height: 0; }
  .platform-preview-nav { display: none; }
  .platform-preview-content { padding: 14px; }
  .preview-head strong { font-size: .9rem; }
  .preview-head > span { font-size: .51rem; }
  .preview-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .preview-metrics div:nth-child(2) { display: grid; }
  .preview-metrics div:nth-child(3) { display: none; }
  .preview-chart { height: 155px; padding: 10px; }
  .platform-nav-section { padding: 22px 0; }
  .platform-anchor-nav { display: flex; margin-right: -16px; overflow-x: auto; gap: 8px; }
  .platform-anchor-nav a { flex: 0 0 auto; min-height: 47px; padding: 8px 12px; font-size: .7rem; }
  .platform-detail-layout, .platform-detail-layout.reverse { gap: 28px; }
  .platform-detail-copy .button { width: 100%; }
  .platform-detail-visual { min-height: 0; }
  .detail-dashboard-card, .detail-graph-card, .detail-map-card, .detail-alert-card, .detail-access-card, .detail-api-card { min-height: 0; border-radius: 16px; }
  .detail-card-top, .detail-alert-header, .access-card-head { padding: 17px 16px; }
  .detail-live-grid { gap: 8px; padding: 12px; }
  .detail-live-grid > div { min-height: 104px; padding: 13px; }
  .detail-live-grid > div > span { top: 11px; right: 11px; width: 29px; height: 29px; }
  .detail-live-grid strong { font-size: 1.15rem; }
  .detail-map-card { min-height: 350px; }
  .map-australia.large { top: 10px; left: 50%; width: auto; height: calc(100% - 72px); transform: translateX(-50%); }
  .map-detail-popup { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 12px; }
  .detail-alert-card .alert-row, .detail-access-card .role-row { margin-inline: 14px; }
  .alert-filter-row, .access-footer { flex-wrap: wrap; padding: 13px 14px 0; }
  .detail-api-card { min-height: 360px; }
  .detail-api-card pre { padding: 20px 15px; overflow: hidden; font-size: .66rem; }
  .api-key-row { right: 12px; bottom: 12px; left: 12px; grid-template-columns: auto 1fr; padding: 11px; }
  .api-key-row b { grid-column: 2; }

  /* Solutions page */
  .solutions-grid-section { padding-top: 55px; }
  .solutions-grid { gap: 12px; }
  .solution-card { padding: 24px 22px; border-radius: 17px; }
  .solution-card-top { margin-bottom: 25px; }
  .solution-card-top > span { width: 48px; height: 48px; border-radius: 13px; }
  .solution-card h2 { font-size: 2rem; }
  .fit-layout { gap: 36px; }
  .fit-diagram { display: grid; grid-template-columns: 1fr; gap: 10px; min-height: 0; }
  .fit-node, .fit-node.source, .fit-node.meter, .fit-node.cloud, .fit-node.users { position: relative; inset: auto; top: auto; right: auto; bottom: auto; left: auto; width: 100%; min-height: 0; padding: 17px; }
  .fit-line { display: none; }

  /* Pricing page */
  .pricing-page-section { margin-top: -48px; }
  .pricing-grid.full { gap: 12px; }
  .pricing-card { min-height: 0; padding: 25px 22px; border-radius: 18px; }
  .pricing-card-head p { min-height: 0; }
  .pricing-price strong { font-size: 2.7rem; }
  .pricing-divider { margin: 24px 0; }
  .pricing-note { display: block; padding: 20px; }
  .pricing-note > span { margin-bottom: 12px; }

  /* Contact page */
  .page-hero-contact { padding-bottom: 58px; }
  .contact-hero-copy { max-width: none; }
  .contact-email-card { width: 100%; }
  .contact-form-card { padding: 24px 18px; border-radius: 18px; }
  .contact-form-head h2 { font-size: 1.75rem; }
  .contact-form .button { width: 100%; }
  .contact-next-grid { gap: 10px; }
  .contact-next-grid article { min-height: 0; padding: 23px 22px; }
  .contact-next-grid article > span { margin-bottom: 20px; }

  /* Legal and privacy */
  .legal-hero { padding: 115px 0 60px; }
  .legal-hero h1 { font-size: clamp(2.45rem, 11vw, 3.15rem); }
  .privacy-policy-section { padding-top: 48px; }
  .legal-policy-layout { gap: 26px; }
  .legal-toc-inner { max-height: 280px; overflow-y: auto; }
  .policy-intro-card { margin-bottom: 34px; }
  .policy-section, .policy-callout, .policy-help-card { scroll-margin-top: 86px; }
  .policy-contact-card, .policy-address, .policy-definitions div { padding: 17px; }

  /* Admin phone layout */
  .admin-login-page { padding: 18px; }
  .admin-login-card { padding: 27px 20px; border-radius: 18px; }
  .admin-login-card img { width: 210px; }
  .admin-sidebar { padding: 20px 16px; }
  .admin-nav { grid-template-columns: 1fr 1fr; gap: 7px; }
  .admin-nav a { justify-content: center; padding: 10px 8px; font-size: .72rem; }
  .admin-panel { padding: 19px 16px; }
  .admin-actions { flex-direction: column; }
  .admin-actions .button { width: 100%; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .brand { width: 154px; }
  .hero-copy h1 { font-size: 2.55rem; }
  .dashboard-status { display: none; }
  .metric-card > strong { font-size: 1.08rem; }
  .feature-tab-list, .platform-anchor-nav { margin-right: -13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
