:root {
  color-scheme: dark;
  --ink: #15101f;
  --ink-2: #1d1630;
  --ink-3: #261d3a;
  --checker: #241b3a;
  --line: #2c2342;
  --line-soft: rgba(196, 181, 253, 0.16);
  --mist: #f5f3ff;
  --muted: #8e84a8;
  --muted-2: #aaa0c2;
  --v300: #c4b5fd;
  --v400: #a78bfa;
  --v500: #8b5cf6;
  --v600: #7c3aed;
  --v700: #6d28d9;
  --v900: #4c1d95;
  --live: #34d399;
  --amber: #fbbf24;
  --danger: #f87171;
  --shadow: 0 28px 90px rgba(5, 3, 12, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(139, 92, 246, 0.24), transparent 31rem),
    radial-gradient(circle at 82% 14%, rgba(52, 211, 153, 0.08), transparent 27rem),
    linear-gradient(180deg, var(--ink) 0%, #120d1c 55%, var(--ink) 100%);
  color: var(--mist);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(196, 181, 253, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 181, 253, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 74%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

code {
  color: var(--v300);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(44, 35, 66, 0.78);
  background: rgba(21, 16, 31, 0.82);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.32));
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(29, 22, 48, 0.78);
}

.site-header nav a,
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a {
  padding: 0 14px;
}

.site-header nav a:hover,
.header-action:hover {
  color: var(--mist);
  background: rgba(196, 181, 253, 0.1);
}

.header-action {
  padding: 0 16px;
  color: var(--mist);
  background: linear-gradient(135deg, var(--v500), var(--v700));
  box-shadow: 0 14px 34px rgba(124, 58, 237, 0.24);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 71px);
  margin: 0 auto;
  padding: 72px 0 54px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 48px;
}

.hero-title-row {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.title-lottie {
  width: 98px;
  height: 98px;
  margin-top: -5px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(45deg, rgba(36, 27, 58, 0.72) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(36, 27, 58, 0.72) 25%, transparent 25%),
    var(--ink-2);
  background-size: 22px 22px;
  box-shadow: 0 18px 44px rgba(76, 29, 149, 0.32);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--v400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 6.1vw, 76px);
  line-height: 0.94;
  font-weight: 700;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted-2);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.button.primary {
  color: var(--mist);
  background: linear-gradient(135deg, var(--v500), var(--v700));
  box-shadow: 0 16px 38px rgba(124, 58, 237, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--mist);
  background: rgba(29, 22, 48, 0.72);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 0 0 14px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(29, 22, 48, 0.58);
}

.hero-stats dt {
  color: var(--mist);
  font-size: 19px;
  line-height: 1.05;
  font-weight: 700;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}


.hero-trust-note {
  max-width: 650px;
  margin: 0;
  color: var(--v300);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.screenshot-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(196, 181, 253, 0.09), rgba(29, 22, 48, 0.24)),
    var(--ink-2);
  box-shadow: var(--shadow);
}

.screenshot-frame img,
.screenshot-frame video {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-frame video {
  aspect-ratio: 1528 / 990;
  object-fit: cover;
}

.screenshot-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(21, 16, 31, 0.04), rgba(21, 16, 31, 0.28));
  z-index: 1;
}

.shot-label {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 999px;
  color: var(--v300);
  background: rgba(21, 16, 31, 0.82);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-frame {
  cursor: zoom-in;
}

.media-frame:focus-visible {
  outline: 2px solid var(--v300);
  outline-offset: 4px;
}

.hero-shot {
  transform: none;
}

.hero-shot img,
.hero-shot video {
  aspect-ratio: 1528 / 990;
  object-fit: cover;
  background: #0a0a0f;
}

.hero-video video {
  min-height: clamp(320px, 42vw, 560px);
}

.hero-shot-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-shot {
  min-height: 150px;
}

.mini-shot img,
.mini-shot video {
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.mini-shot:first-child img {
  object-position: top center;
}

.mini-shot:nth-child(2) img {
  object-position: top center;
}

.mini-shot:nth-child(3) img {
  object-position: center;
}

.expand-control {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  min-height: 30px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 999px;
  color: var(--mist);
  background: rgba(21, 16, 31, 0.86);
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: zoom-in;
  padding: 0 11px;
}

.expand-control:hover,
.media-frame:hover .expand-control {
  color: var(--ink);
  background: var(--v300);
}

.demo-section {
  padding-top: 54px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.demo-grid .screenshot-frame {
  border-radius: 22px;
}

.wide-shot {
  grid-column: 1 / -1;
  width: min(100%, 1180px);
}

.gallery-pair {
  min-height: 0;
}

.tall-shot,
.video-shot,
.gallery-pair {
  min-height: 0;
}

.screenshot-frame figcaption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  background: rgba(21, 16, 31, 0.8);
  font-size: 13px;
  line-height: 1.45;
}


.demo-grid .screenshot-frame img,
.demo-grid .screenshot-frame video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #0a0a0f;
}

.gallery-pair img,
.gallery-pair video {
  max-height: 620px;
}

.video-shot video,
.gallery-pair video {
  aspect-ratio: 1528 / 990;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 3, 12, 0.86);
  backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1600px);
  max-height: 94vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.26);
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.62);
}

.lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(29, 22, 48, 0.88);
}

.lightbox-topbar h2 {
  margin: 0;
  color: var(--mist);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.lightbox-close {
  min-height: 36px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 999px;
  color: var(--mist);
  background: rgba(21, 16, 31, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 14px;
}

.lightbox-close:hover {
  color: var(--ink);
  background: var(--v300);
}

.lightbox-media {
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 16px;
  background: #0a0a0f;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: calc(94vh - 88px);
  width: auto;
  height: auto;
  border-radius: 14px;
}

.lightbox-media video {
  width: min(100%, 1500px);
}

body.lightbox-open {
  overflow: hidden;
}



.answer-box {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 18px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(29, 22, 48, 0.42)),
    rgba(29, 22, 48, 0.58);
}

.answer-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--v300);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.answer-box p {
  max-width: 980px;
  margin: 0;
  color: var(--muted-2);
}

.australia-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 40px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 66px;
}

.australia-copy p:last-child {
  max-width: 680px;
  color: var(--muted-2);
  font-size: 18px;
}

.australia-card {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 46% 42%, rgba(139, 92, 246, 0.22), transparent 13rem),
    linear-gradient(145deg, rgba(196, 181, 253, 0.08), rgba(29, 22, 48, 0.32)),
    var(--ink-2);
  box-shadow: var(--shadow);
}

.australia-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(196, 181, 253, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 181, 253, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.australia-map {
  position: relative;
  z-index: 1;
  width: min(92%, 460px);
  height: auto;
  overflow: visible;
}

.aus-main,
.tasmania {
  fill: rgba(139, 92, 246, 0.055);
  stroke: url(#ausLine);
  stroke-width: 10;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: url(#ausGlow);
}

.aus-pulse {
  fill: none;
  stroke: var(--live);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
  filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.44));
}

.aus-dot {
  fill: var(--mist);
  stroke: var(--v500);
  stroke-width: 4;
}

.aus-dot.live {
  fill: var(--live);
  stroke: rgba(52, 211, 153, 0.18);
  stroke-width: 8;
}

.australia-note {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 16px;
  background: rgba(21, 16, 31, 0.78);
  backdrop-filter: blur(14px);
}

.australia-note strong {
  color: var(--mist);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.australia-note span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.proof-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 36px;
}

.proof-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 700;
  background: rgba(29, 22, 48, 0.52);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.split-section,
.dark-band,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 42px;
  align-items: center;
}

.section h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 34px;
}

.section-heading p,
.split-section p {
  color: var(--muted-2);
}

.section-hint {
  display: inline-flex;
  margin-top: 10px;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 999px;
  color: var(--v300) !important;
  background: rgba(29, 22, 48, 0.64);
  font-size: 13px;
  font-weight: 700;
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.price-card,
.incident-card,
.faq-grid article,
.terminal-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(29, 22, 48, 0.58);
}

.feature-grid article {
  min-height: 260px;
  padding: 24px;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 14px;
  color: var(--v300);
  font-size: 12px;
  font-weight: 700;
  background: rgba(139, 92, 246, 0.12);
}

.feature-grid h3,
.price-card h3,
.incident-card h3,
.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.08;
}

.feature-grid p,
.price-card p,
.signal-copy p,
.incident-card p,
.cta-section p,
.faq-grid p,
.terminal-card p {
  color: var(--muted-2);
}

.link-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.link-stack a,
.card-link {
  color: var(--v300);
  font-weight: 700;
}

.link-stack a:hover,
.card-link:hover {
  color: var(--mist);
  text-decoration: underline;
}

.terminal-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.terminal-card pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  color: #d9d2ef;
  background: rgba(21, 16, 31, 0.64);
  font-size: 13px;
  line-height: 1.75;
}

.terminal-card p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 14px;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(196, 181, 253, 0.07), rgba(29, 22, 48, 0.28));
}

.incident-card {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.16), rgba(52, 211, 153, 0.06)),
    rgba(29, 22, 48, 0.68);
  box-shadow: var(--shadow);
}

.signal-copy h2 {
  max-width: 760px;
}

.incident-top {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}

.incident-top small {
  color: var(--muted);
}

.incident-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.incident-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mist);
  font-size: 12px;
  font-weight: 700;
  background: rgba(21, 16, 31, 0.42);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  min-height: 458px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(167, 139, 250, 0.54);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(29, 22, 48, 0.62)),
    var(--ink-2);
}

.plan {
  margin-bottom: 14px;
  color: var(--v400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 42px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-2);
  font-size: 14px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--v500);
}

.price-card:first-child li::before {
  background: var(--live);
}

.card-link {
  margin-top: auto;
}

.faq-grid article {
  min-height: 180px;
  padding: 24px;
}


.sponsors-section {
  padding-top: 48px;
}

.sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-placeholder {
  min-height: 132px;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(196, 181, 253, 0.34);
  border-radius: 22px;
  color: var(--muted-2);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.16), transparent 18rem),
    rgba(29, 22, 48, 0.46);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}

.cta-section {
  padding-bottom: 96px;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  padding: 20px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  max-width: 720px;
}

.footer-link {
  color: var(--v300);
  font-weight: 700;
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--mist);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 181, 253, 0.42);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--v300), var(--v500));
  box-shadow: 0 18px 52px rgba(5, 3, 12, 0.56), 0 0 0 5px rgba(139, 92, 246, 0.14);
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--mist);
  background: linear-gradient(135deg, var(--v500), var(--v700));
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    position: relative;
  }

  .hero,
  .split-section,
  .australia-section,
  .dark-band,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 56px;
  }


  .feature-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    justify-content: flex-start;
  }

  .dark-band {
    padding-block: 56px;
  }

  .incident-card {
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-inline: 18px;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .site-header nav a {
    flex: 1;
  }

  .header-action {
    min-height: 36px;
  }

  .hero,
  .section,
  .proof-strip,
  .answer-box,
  .australia-section,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .hero-title-row {
    grid-template-columns: 74px 1fr;
    gap: 14px;
  }

  .title-lottie {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-stats,
  .proof-strip,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .hero-shot-strip,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .australia-card {
    min-height: 270px;
  }

  .section {
    padding: 60px 0;
  }

  .dark-band {
    gap: 18px;
    padding: 42px 18px;
    background:
      linear-gradient(180deg, rgba(139, 92, 246, 0.14), rgba(29, 22, 48, 0.2)),
      var(--ink);
  }

  .dark-band .eyebrow {
    margin-bottom: 10px;
  }

  .dark-band h2 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.04;
  }

  .incident-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(29, 22, 48, 0.62);
  }

  .incident-top {
    margin-bottom: 14px;
  }

  .incident-card h3 {
    font-size: 20px;
  }

  .incident-actions {
    gap: 6px;
    margin-top: 14px;
  }

  .incident-actions span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .feature-grid article,
  .price-card,
  .faq-grid article {
    min-height: 0;
  }

  .icon {
    margin-bottom: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-lightbox {
    padding: 10px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding-inline: 13px;
  }

  .lightbox-panel {
    width: 100%;
    max-height: 96vh;
    border-radius: 18px;
  }

  .lightbox-media {
    padding: 8px;
  }
}

@media (max-width: 430px) {
  .hero-title-row {
    grid-template-columns: 1fr;
  }

  .title-lottie {
    width: 88px;
    height: 88px;
  }

  .hero-actions .button,
  .cta-card .button {
    width: 100%;
  }

}
