:root {
  color-scheme: light;
  --bg: #f6f8ff;
  --bg-strong: #ffffff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #101729;
  --text: #141926;
  --muted: #5c667d;
  --line: rgba(20, 25, 38, 0.08);
  --line-strong: rgba(20, 25, 38, 0.14);
  --blue: #0a84ff;
  --green: #34c759;
  --green-soft: rgba(52, 199, 89, 0.12);
  --shadow: 0 28px 80px rgba(40, 66, 132, 0.14);
  --shadow-soft: 0 20px 50px rgba(16, 23, 41, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 32px));
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #08101d;
  --bg-strong: #0e1728;
  --surface: rgba(10, 18, 34, 0.82);
  --surface-strong: rgba(14, 23, 40, 0.94);
  --surface-dark: #030813;
  --text: #f3f7ff;
  --muted: #95a2bf;
  --line: rgba(243, 247, 255, 0.1);
  --line-strong: rgba(243, 247, 255, 0.16);
  --blue: #4da4ff;
  --green: #43d17c;
  --green-soft: rgba(67, 209, 124, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(10, 132, 255, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(52, 199, 89, 0.16), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg-strong));
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  opacity: 0.3;
}

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

button,
a.button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.5;
  pointer-events: none;
}

.ambient-left {
  top: 80px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(10, 132, 255, 0.14);
}

.ambient-right {
  top: 360px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(52, 199, 89, 0.16);
}

.site-header,
section,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #80bcff);
  color: white;
  box-shadow: 0 12px 24px rgba(10, 132, 255, 0.24);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.site-nav,
.header-actions,
.hero-actions,
.hero-proof,
.proof-strip,
.pricing-points,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: var(--line-strong);
}

.theme-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-strong);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease;
}

html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(20px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button-buy {
  gap: 10px;
}

.apple-glyph {
  display: inline-block;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1.18em;
  line-height: 1;
  font-weight: 600;
  transform: translateY(-0.02em);
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), #67dc90);
  box-shadow: 0 18px 38px rgba(52, 199, 89, 0.28);
}

.button-ghost {
  color: var(--text);
  background: var(--surface-strong);
  border-color: var(--line-strong);
}

.button-wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 148px);
  padding: 54px 0 30px;
}

.hero-copy h1,
.section-heading h2,
.spotlight-copy h2,
.pricing-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.18rem, 4.9vw, 3.82rem);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-text,
.section-heading p,
.spotlight-copy p,
.benefit-card p,
.feature-card p,
.persona-card p,
.pricing-subtext,
.pricing-note,
.footer-copy,
.footer-meta,
.faq-answer p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-text {
  max-width: 54ch;
  margin: 16px 0 22px;
  font-size: 0.94rem;
}

.shortcut-callout,
.step-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.shortcut-callout {
  margin: 2px 0 16px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.shortcut-label,
.step-shortcut-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.shortcut-keys {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.keycap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg-strong), rgba(255, 255, 255, 0.55));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 18px rgba(20, 25, 38, 0.08);
  color: var(--text);
  font-family:
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

html[data-theme="dark"] .keycap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(5, 9, 18, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

.shortcut-copy {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-proof span,
.proof-strip div,
.pricing-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.orb {
  position: absolute;
  inset: auto;
  top: 20px;
  right: 20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.28), transparent 68%);
  filter: blur(6px);
}

.device-card,
.speed-card,
.step-card,
.benefit-card,
.comparison-card,
.feature-card,
.persona-card,
.pricing-card,
.faq-item,
.site-footer {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.device-card {
  position: relative;
  width: min(100%, 540px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.device-header,
.device-body,
.editor-tabs,
.comparison-row,
.pricing-card,
.site-footer {
  display: flex;
}

.device-header {
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.traffic-lights {
  display: inline-flex;
  gap: 8px;
}

.traffic-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.traffic-lights span:nth-child(1) {
  background: #ff5f57;
}

.traffic-lights span:nth-child(2) {
  background: #febc2e;
}

.traffic-lights span:nth-child(3) {
  background: #28c840;
}

.device-title,
.device-status,
.sidebar-label,
.editor-tabs span,
.prompt,
.dim,
.comparison-row-head span,
.price-badge,
.price-caption {
  font-family:
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
}

.device-title {
  color: var(--muted);
  font-size: 0.74rem;
}

.device-status {
  color: var(--green);
  font-size: 0.7rem;
}

.device-body {
  min-height: 392px;
}

.device-sidebar {
  width: 35%;
  padding: 22px 18px 20px;
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.06), transparent),
    var(--surface-strong);
  border-right: 1px solid var(--line);
}

.mic-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 600;
}

.mic-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45);
  animation: pulse 2.4s infinite;
}

.sidebar-label {
  margin: 20px 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.sidebar-quote,
.sidebar-output {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius-md);
  line-height: 1.55;
  font-size: 0.9rem;
  background: var(--bg-strong);
  border: 1px solid var(--line);
}

.sidebar-output {
  border-color: rgba(52, 199, 89, 0.22);
}

.editor-panel {
  flex: 1;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(52, 199, 89, 0.08), transparent 24%),
    var(--surface-dark);
  color: #f5f7fb;
}

.editor-tabs {
  gap: 8px;
  padding-bottom: 10px;
}

.editor-tabs span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.editor-code {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 15px;
  border-radius: var(--radius-lg);
  background: rgba(2, 8, 19, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 314px;
}

.editor-code p {
  margin: 0;
  font-family:
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 0.84rem;
}

.prompt {
  color: #67dc90;
}

.dim {
  color: rgba(255, 255, 255, 0.64);
}

.insertion-line {
  display: flex;
  align-items: flex-end;
  align-self: end;
  gap: 6px;
  color: white;
}

.cursor {
  width: 7px;
  height: 1.2em;
  background: #4da4ff;
  animation: blink 1s step-end infinite;
}

.proof-strip,
.section-heading,
.speed,
.spotlight,
.pricing,
.faq,
.site-footer {
  padding-bottom: 22px;
}

.proof-strip {
  justify-content: space-between;
  padding: 6px 0 68px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.spotlight-copy h2,
.pricing-copy h2 {
  font-size: clamp(1.78rem, 3.5vw, 2.82rem);
  margin-bottom: 14px;
}

.steps-grid,
.speed-grid,
.benefits-grid,
.model-grid,
.feature-grid,
.persona-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

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

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

.speed-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.speed-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.speed-value {
  margin: 0 0 10px;
  font-size: clamp(1.48rem, 2.2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text);
}

.speed-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.speed-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.speed-note a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.16em;
}

.step-card,
.benefit-card,
.feature-card,
.persona-card,
.faq-item {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.step-number {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(10, 132, 255, 0.1);
  font-family:
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 0.76rem;
}

.step-card h3,
.benefit-card h3,
.feature-card h3,
.persona-card h3,
.comparison-head h3 {
  margin: 18px 0 12px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.step-card p {
  color: var(--muted);
  line-height: 1.65;
}

.step-shortcut {
  margin-top: 16px;
}

.keycap-small {
  min-width: 28px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 0.72rem;
}

.how,
.benefits,
.models,
.features,
.personas,
.pricing,
.faq {
  padding: 22px 0 54px;
}

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

.spotlight {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
  padding-top: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px var(--green-soft);
}

.comparison-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.comparison-head p {
  margin: 0 0 16px;
  color: var(--muted);
}

.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-row {
  align-items: stretch;
}

.comparison-row span {
  flex: 1;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-row span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.comparison-row:last-child span {
  border-bottom: 0;
}

.comparison-row-head {
  background: rgba(10, 132, 255, 0.08);
  color: var(--blue);
}

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

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

.feature-card {
  min-height: 200px;
}

.model-card {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.model-card-featured {
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.12), transparent 44%),
    var(--surface);
  border-color: rgba(10, 132, 255, 0.24);
}

.model-card-note {
  background:
    linear-gradient(180deg, rgba(52, 199, 89, 0.08), transparent 44%),
    var(--surface);
}

.model-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.model-badges span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.1);
  color: var(--blue);
  font-family:
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 0.72rem;
}

.model-card h3 {
  margin: 18px 0 12px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.model-card p {
  color: var(--muted);
  line-height: 1.68;
}

.model-meta {
  margin-top: 16px;
  font-size: 0.86rem;
}

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

.persona-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.16), rgba(52, 199, 89, 0.14));
  color: var(--blue);
  font-family:
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-card {
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.pricing-copy {
  flex: 1;
}

.pricing-lead {
  margin: 0 0 12px;
  font-size: clamp(1.08rem, 1.8vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.pricing-box {
  width: min(360px, 100%);
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.12), transparent 40%),
    var(--bg-strong);
  border: 1px solid var(--line);
}

.price-badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.12);
  color: var(--green);
  font-size: 0.74rem;
}

.price-main {
  margin: 18px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 2.62rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.price-old {
  display: inline-block;
  color: var(--muted);
  font-size: 0.46em;
  font-weight: 500;
  opacity: 0.88;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(23, 35, 48, 0.5);
}

.price-caption,
.pricing-note {
  font-size: 0.84rem;
}

.pricing-note {
  margin: 14px 0 0;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.faq-item {
  overflow: hidden;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 14px 0 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.site-footer {
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 36px;
  margin-bottom: 32px;
  border-radius: var(--radius-xl);
}

.footer-title {
  margin: 0 0 10px;
  font-size: 0.96rem;
  font-weight: 700;
}

.footer-copy,
.footer-meta p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 10px;
  color: var(--muted);
  text-align: right;
}

.legal-body {
  min-height: 100vh;
}

.legal-shell {
  width: var(--container);
  margin-inline: auto;
  padding: 40px 0 64px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
}

.legal-shell h1 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
  font-size: clamp(2.16rem, 4.2vw, 3.7rem);
}

.legal-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(52, 199, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .spotlight,
  .pricing-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .steps-grid,
  .speed-grid,
  .benefits-grid,
  .model-grid,
  .feature-grid,
  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 24px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .device-body {
    flex-direction: column;
  }

  .device-sidebar {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip {
    justify-content: flex-start;
    padding-bottom: 72px;
  }

  .comparison-row {
    flex-direction: column;
  }

  .comparison-row span:not(:last-child) {
    border-right: 0;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 20px, 1180px);
  }

  .hero-copy h1 {
    max-width: none;
  }

  .steps-grid,
  .speed-grid,
  .benefits-grid,
  .model-grid,
  .feature-grid,
  .persona-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .speed-card,
  .benefit-card,
  .model-card,
  .feature-card,
  .persona-card,
  .faq-item,
  .pricing-card,
  .comparison-card {
    padding: 22px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-box {
    width: 100%;
  }

  .price-main {
    font-size: 2.46rem;
  }
}
