:root {
  --canvas: #070b12;
  --background: #070b12;
  --foreground: #f3f7fb;
  --surface: #0f1724;
  --surface-strong: #162032;
  --glass: rgb(16 24 38 / 0.78);
  --accent-wash: rgb(85 230 217 / 0.16);
  --card: #101a2a;
  --card-foreground: #f3f7fb;
  --primary: #55e6d9;
  --primary-foreground: #041316;
  --muted: #121b29;
  --muted-foreground: #93a4b8;
  --success: #2fd18a;
  --warning: #f2b766;
  --destructive: #f87171;
  --line: #223047;
  --chart-1: #55e6d9;
  --chart-2: #2fd18a;
  --chart-3: #71c7ff;
  --chart-4: #f2b766;
  --shadow-panel:
    inset 0 1px 0 rgb(255 255 255 / 0.05), 0 22px 50px rgb(2 6 23 / 0.55);
  --font-body-face: "Aptos", "Segoe UI", system-ui;
  --font-display-face: "Bahnschrift", "Aptos", "Segoe UI", system-ui;
  --font-data-face: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
  color-scheme: dark;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body-face);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricprecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgb(85 230 217 / 0.22),
      transparent 0 26rem
    ),
    radial-gradient(
      circle at 88% 0%,
      rgb(47 209 138 / 0.12),
      transparent 0 20rem
    ),
    radial-gradient(
      circle at 60% 85%,
      rgb(113 199 255 / 0.12),
      transparent 0 18rem
    ),
    linear-gradient(180deg, #0a111b 0%, #070b12 55%, #06090f 100%);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  content: "";
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 0.65), transparent 92%);
  opacity: 0.32;
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(34 48 71 / 0.72);
  background: rgb(7 11 18 / 0.82);
  padding: 0.55rem max(1.25rem, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(20px);
}

.brand,
.store-button,
.price-cta,
.final-button {
  outline: none;
}

.brand {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.7rem;
  border-radius: 1.25rem;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-weight: 700;
}

.brand:focus-visible,
.nav-links a:focus-visible,
.store-button:focus-visible,
.price-cta:focus-visible,
.final-button:focus-visible,
summary:focus-visible {
  box-shadow: 0 0 0 4px rgb(85 230 217 / 0.15);
}

.brand img {
  width: 14rem;
  height: 3.5rem;
  border: 0;
  border-radius: 0.85rem;
  background: transparent;
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
  box-shadow: 0 12px 28px rgb(2 6 23 / 0.2);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--muted-foreground);
  font-family: var(--font-display-face);
  font-size: 0.98rem;
  font-weight: 650;
}

.nav-links a {
  min-height: 2.75rem;
  border-radius: 0.9rem;
  padding: 0.72rem 0.9rem;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  background: var(--accent-wash);
  color: var(--foreground);
}

.hero {
  position: relative;
  min-height: clamp(690px, 86vh, 860px);
  overflow: hidden;
  padding: 6.5rem 0 4rem;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-cover {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(7 11 18 / 0.98) 0%,
      rgb(7 11 18 / 0.88) 45%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 0%, rgb(7 11 18 / 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin-left: max(1.25rem, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--primary);
  font-family: var(--font-data-face);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.pricing-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(4.5rem, 13vw, 9rem);
  line-height: 0.9;
}

.hero-lead {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: clamp(2rem, 5.4vw, 4rem);
  font-weight: 650;
  line-height: 0.98;
}

.hero-copy {
  max-width: 600px;
  margin: 1.35rem 0 0;
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: stretch;
  margin-top: 2rem;
}

.store-button {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.store-button:hover {
  border-color: rgb(85 230 217 / 0.34);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow:
    0 0 0 1px rgb(85 230 217 / 0.2),
    0 22px 38px rgb(85 230 217 / 0.22);
  transform: translateY(-1px);
}

.store-button small {
  display: block;
  color: inherit;
  font-family: var(--font-data-face);
  font-size: 0.66rem;
  font-weight: 600;
  opacity: 0.74;
  text-transform: uppercase;
}

.primary-store {
  border-color: rgb(34 48 71 / 0.8);
  background: rgb(22 32 50 / 0.85);
  color: var(--foreground);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 14px 24px rgb(2 6 23 / 0.26);
}

.secondary-store {
  border-color: rgb(34 48 71 / 0.8);
  background: rgb(22 32 50 / 0.85);
  color: var(--foreground);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 14px 24px rgb(2 6 23 / 0.26);
}

.secondary-store:hover {
  border-color: rgb(85 230 217 / 0.34);
  background: var(--primary);
  color: var(--primary-foreground);
}

.store-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 0.75rem;
  background: rgb(4 19 22 / 0.14);
  font-family: var(--font-data-face);
  font-size: 0.84rem;
  font-weight: 800;
}

.store-mark svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.primary-store .store-mark,
.secondary-store .store-mark {
  background: rgb(85 230 217 / 0.12);
  color: var(--primary);
}

.store-button:hover .store-mark {
  background: rgb(4 19 22 / 0.14);
  color: var(--primary-foreground);
}

.hero-note {
  margin: 1rem 0 0;
  color: rgb(243 247 251 / 0.76);
  font-weight: 600;
}

.scene-card {
  position: absolute;
  border: 1px solid rgb(99 132 168 / 0.24);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.035), rgb(255 255 255 / 0.01)),
    linear-gradient(145deg, rgb(85 230 217 / 0.06), transparent 36%),
    rgb(16 24 38 / 0.78);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    0 18px 40px rgb(2 6 23 / 0.45),
    0 0 0 1px rgb(5 19 28 / 0.35);
  backdrop-filter: blur(20px);
}

.scene-card-main {
  top: 6rem;
  right: max(1.5rem, 7vw);
  width: min(35rem, 42vw);
  padding: 1.5rem;
}

.scene-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.scene-card-header span,
.scene-card small,
.mock-summary small {
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

.scene-card-header strong {
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.budget-line {
  height: 0.75rem;
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(18 27 41 / 0.9);
}

.budget-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--success);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.scene-grid div,
.mock-summary,
.mock-bars,
.mock-list div,
.benefit-card,
.pricing-panel,
details,
.signal-grid div {
  border: 1px solid rgb(34 48 71 / 0.8);
  border-radius: 1.25rem;
  background: rgb(15 23 36 / 0.55);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.03);
}

.scene-grid div {
  padding: 1rem;
}

.scene-grid strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: 1.25rem;
}

.category-row {
  display: grid;
  grid-template-columns: 0.85rem 1fr auto;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid rgb(34 48 71 / 0.7);
  padding: 0.85rem 0;
  color: var(--muted-foreground);
}

.category-row strong {
  color: var(--foreground);
  font-family: var(--font-data-face);
  font-size: 0.9rem;
}

.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
}

.dot.teal {
  background: var(--chart-1);
}

.dot.orange {
  background: var(--chart-4);
}

.dot.blue {
  background: var(--chart-3);
}

.scene-card-small {
  right: max(1.5rem, 8vw);
  bottom: 5.5rem;
  width: min(22rem, 32vw);
  padding: 1.25rem;
}

.scene-card-small strong {
  display: block;
  margin: 0.85rem 0 0.35rem;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: 1.3rem;
}

.scene-card-small p {
  margin: 0;
  color: var(--muted-foreground);
}

.status-pill,
.price-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(242 183 102 / 0.25);
  border-radius: 999px;
  background: rgb(242 183 102 / 0.12);
  color: var(--warning);
  padding: 0.45rem 0.75rem;
  font-family: var(--font-data-face);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scene-card-chart {
  top: 17rem;
  right: min(38vw, 31rem);
  width: 11rem;
  padding: 1.1rem;
  text-align: center;
}

.chart-ring {
  width: 6.8rem;
  height: 6.8rem;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: conic-gradient(
    var(--chart-1) 0 42%,
    var(--chart-4) 42% 64%,
    var(--chart-3) 64% 84%,
    var(--chart-2) 84% 100%
  );
  box-shadow: inset 0 0 0 1.45rem var(--surface);
}

.signal-band {
  border-block: 1px solid rgb(34 48 71 / 0.8);
  background: rgb(12 19 32 / 0.72);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}

.signal-grid div {
  padding: 1.25rem;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: 1.05rem;
}

.signal-grid span {
  margin-top: 0.4rem;
  color: var(--muted-foreground);
}

.section {
  padding: 6rem 0;
}

.section-tinted {
  border-block: 1px solid rgb(34 48 71 / 0.42);
  background: rgb(16 24 38 / 0.34);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.section-heading p:not(.eyebrow),
.pricing-copy p:not(.eyebrow) {
  margin: 1.1rem 0 0;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-card {
  min-height: 17rem;
  padding: 1.5rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.benefit-card:hover {
  border-color: rgb(85 230 217 / 0.28);
  background: rgb(22 32 50 / 0.76);
  transform: translateY(-2px);
}

.benefit-icon {
  display: inline-flex;
  margin-bottom: 2.2rem;
  border: 1px solid rgb(85 230 217 / 0.22);
  border-radius: 999px;
  background: rgb(85 230 217 / 0.12);
  color: var(--primary);
  padding: 0.4rem 0.65rem;
  font-family: var(--font-data-face);
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-card h3,
.feature-item h3,
.step h3 {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.18;
}

.benefit-card p,
.feature-item p,
.step p {
  margin: 0.8rem 0 0;
  color: var(--muted-foreground);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 5rem;
  align-items: start;
}

.split-layout .section-heading {
  max-width: 520px;
}

.steps {
  display: grid;
  gap: 0.9rem;
}

.step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgb(34 48 71 / 0.7);
  padding: 0 0 1.1rem;
}

.step span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgb(85 230 217 / 0.18);
  border-radius: 1rem;
  background: rgb(85 230 217 / 0.12);
  color: var(--primary);
  font-family: var(--font-data-face);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.showcase-panel {
  overflow: hidden;
  border: 1px solid rgb(85 230 217 / 0.18);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgb(85 230 217 / 0.15), rgb(15 23 36 / 0.96) 38%),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 28px 60px rgb(2 6 23 / 0.7),
    0 0 0 1px rgb(85 230 217 / 0.05);
  backdrop-filter: blur(20px);
}

.mock-toolbar {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgb(34 48 71 / 0.7);
  padding: 1.1rem;
}

.mock-toolbar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgb(147 164 184 / 0.55);
}

.mock-dashboard {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.mock-summary {
  padding: 1.35rem;
}

.mock-summary strong,
.mock-summary span {
  display: block;
}

.mock-summary strong {
  margin-top: 0.5rem;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.mock-summary span {
  margin-top: 0.65rem;
  color: var(--success);
  font-weight: 700;
}

.mock-bars {
  display: grid;
  height: 10rem;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.7rem;
  padding: 1rem;
}

.mock-bars span {
  display: block;
  min-height: 1.8rem;
  border-radius: 0.75rem 0.75rem 0 0;
  background: var(--chart-1);
  box-shadow: 0 10px 20px rgb(85 230 217 / 0.16);
}

.mock-bars span:nth-child(2n) {
  background: var(--chart-2);
}

.mock-bars span:nth-child(3n) {
  background: var(--chart-4);
}

.mock-list {
  display: grid;
  gap: 0.65rem;
}

.mock-list div {
  display: grid;
  grid-template-columns: 0.75rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem 1rem;
}

.mock-list span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--chart-3);
}

.mock-list div:nth-child(2) span {
  background: var(--chart-4);
}

.mock-list div:nth-child(3) span {
  background: var(--chart-1);
}

.mock-list strong {
  color: var(--foreground);
}

.mock-list em {
  color: var(--muted-foreground);
  font-family: var(--font-data-face);
  font-style: normal;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  border-left: 4px solid var(--chart-1);
  padding: 0.35rem 0 0.35rem 1.1rem;
}

.feature-item:nth-child(2n) {
  border-color: var(--chart-4);
}

.feature-item:nth-child(3n) {
  border-color: var(--chart-3);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2.6rem;
  align-items: center;
}

.pricing-panel {
  padding: 1.85rem;
  background:
    linear-gradient(145deg, rgb(242 183 102 / 0.16), rgb(15 23 36 / 0.94) 58%),
    var(--card);
  box-shadow: var(--shadow-panel);
}

.price {
  display: block;
  margin-top: 1.35rem;
  color: var(--foreground);
  font-family: var(--font-display-face);
  font-size: 5rem;
  line-height: 1;
}

.pricing-panel p {
  margin: 0.75rem 0 0;
  color: var(--muted-foreground);
}

.pricing-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.pricing-panel li {
  position: relative;
  padding-left: 1.55rem;
  color: rgb(243 247 251 / 0.78);
}

.pricing-panel li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.price-cta,
.final-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(90deg, var(--primary), #69efe3, var(--success));
  color: var(--primary-foreground);
  font-weight: 800;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.price-cta {
  width: 100%;
}

.price-cta:hover,
.final-button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 2.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  padding: 1.1rem 1.25rem;
}

summary {
  cursor: pointer;
  color: var(--foreground);
  font-weight: 700;
  outline: none;
}

details p {
  margin: 0.85rem 0 0;
  color: var(--muted-foreground);
}

.final-cta {
  border-block: 1px solid rgb(34 48 71 / 0.8);
  background:
    linear-gradient(145deg, rgb(85 230 217 / 0.09), rgb(15 23 36 / 0.94) 36%),
    rgb(12 19 32 / 0.86);
  padding: 3rem 0;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 14rem 1fr 13.75rem;
  gap: 1.5rem;
  align-items: center;
}

.final-cta img {
  width: 14rem;
  height: 3.65rem;
  border: 0;
  border-radius: 0.85rem;
  background: transparent;
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
}

.final-cta h2 {
  max-width: 790px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.final-button {
  width: auto;
  padding: 0 1.35rem;
}

.site-footer {
  background: rgb(7 11 18 / 0.92);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.footer-content a {
  color: var(--primary);
  font-weight: 700;
  outline: none;
  transition: color 180ms ease;
}

.footer-content a:hover {
  color: #69efe3;
}

.footer-content a:focus-visible {
  border-radius: 0.35rem;
  box-shadow: 0 0 0 4px rgb(85 230 217 / 0.15);
}

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  max-width: 21rem;
  border: 1px solid rgb(85 230 217 / 0.2);
  border-radius: 1.25rem;
  background: rgb(16 24 38 / 0.96);
  color: var(--foreground);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-panel);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 5rem 0 3.5rem;
  }

  .hero-cover {
    background: rgb(7 11 18 / 0.82);
  }

  .scene-card-main {
    right: -7rem;
    width: 32rem;
    opacity: 0.45;
  }

  .scene-card-small,
  .scene-card-chart {
    display: none;
  }

  .signal-grid,
  .split-layout,
  .feature-showcase,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-content {
    grid-template-columns: 12rem 1fr;
  }

  .final-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    gap: 0.65rem;
    padding: 0.6rem 0.875rem;
  }

  .brand {
    min-height: 3.05rem;
  }

  .brand img {
    width: 11.4rem;
    height: 3.05rem;
    border-radius: 1rem;
  }

  .nav-links {
    gap: 0;
    font-size: 0.82rem;
  }

  .nav-links a {
    min-height: 2.4rem;
    padding: 0.55rem 0.6rem;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 24vw, 5.8rem);
  }

  .hero-lead {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .scene-card-main {
    top: 33rem;
    right: 0.875rem;
    left: 0.875rem;
    width: auto;
    padding: 1rem;
    opacity: 0.18;
  }

  .signal-grid,
  .benefit-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .pricing-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .benefit-card {
    min-height: auto;
  }

  .showcase-panel {
    margin-inline: -0.35rem;
    border-radius: 1.5rem;
  }

  .mock-dashboard {
    padding: 1rem;
  }

  .mock-bars {
    height: 7rem;
  }

  .mock-list div {
    grid-template-columns: 0.65rem 1fr;
  }

  .mock-list em {
    grid-column: 2;
  }

  .pricing-panel {
    padding: 1.5rem;
  }

  .price {
    font-size: 4.2rem;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
  }

  .final-cta img {
    width: 11.4rem;
    height: 3.1rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .toast {
    right: 0.875rem;
    bottom: 0.875rem;
    left: 0.875rem;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
