/* AImparo website: the same tokens, type and shapes as the app (src/styles/core.css). */
@font-face {
  font-family: 'Nunito Sans';
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin-900-normal.woff2') format('woff2');
}

:root {
  color-scheme: dark;
  --bg: #10171b;
  --canvas: #0b1115;
  --surface: #172025;
  --surface-raised: #1e292f;
  --surface-hover: #202e32;
  --border: #2b363d;
  --border-soft: #232e34;
  --mint: #a8f087;
  --mint-hover: #b9f79f;
  --mint-ink: #142015;
  --mint-surface: #223629;
  --mint-border: #3e5742;
  --text: #f2f5f3;
  --muted: #a1aeb7;
  --subtle: #7c8a94;
  --amber: #e7bd78;
  --amber-surface: #2c2618;
  --radius: 22px;
  --radius-sm: 15px;
  --gutter: 20px;
  --ease: cubic-bezier(0.22, 0.68, 0, 1);
  --header: 68px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family:
    'Nunito Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
svg.lucide {
  width: 20px;
  height: 20px;
  flex: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}
p {
  margin: 0;
}
:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 6px;
}
.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}
.button:active {
  transform: translateY(1px);
}
.button--primary {
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 4px 0 #6fb455;
}
.button--primary:hover {
  background: var(--mint-hover);
  box-shadow:
    0 4px 0 #6fb455,
    0 10px 30px #a8f08726;
}
.button--secondary {
  background: var(--surface-raised);
  border-color: var(--border);
  color: var(--text);
}
.button--secondary:hover {
  background: var(--surface-hover);
  border-color: #506159;
}
.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 14px;
  box-shadow: 0 3px 0 #6fb455;
}
.button--large {
  min-height: 58px;
  font-size: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
  font-weight: 800;
}
.text-link svg.lucide {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease);
}
.text-link:hover svg.lucide {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b1115d9;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 180ms var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--border-soft);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand img {
  border-radius: 10px;
}
.wordmark {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}
.wordmark > span,
.accent {
  color: var(--mint);
}
.site-nav {
  display: none;
}
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.header-cta span {
  display: none;
}
.site-header.is-open .site-nav {
  position: absolute;
  top: var(--header);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 12px var(--gutter) 20px;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}
.site-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
}
.site-nav a:hover {
  color: var(--text);
  background: var(--surface);
}
.site-nav .nav-download {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  background: var(--mint-surface);
  border: 1px solid var(--mint-border);
  color: var(--mint);
}

/* Shared text */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow svg.lucide {
  width: 16px;
  height: 16px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.small {
  color: var(--subtle);
  font-size: 14px;
}
.section {
  padding: 72px 0;
}
.section--alt {
  background: var(--bg);
  border-block: 1px solid var(--border-soft);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 6vw, 44px);
  margin-bottom: 14px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checks svg.lucide {
  margin-top: 3px;
  color: var(--mint);
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 24px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto;
  height: 700px;
  background:
    radial-gradient(40% 50% at 70% 40%, #a8f0871f, transparent 70%),
    radial-gradient(30% 40% at 15% 10%, #3e574233, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
}
.hero h1 {
  font-size: clamp(38px, 10vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-actions .button {
  flex: 1 1 240px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-points svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--mint);
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #a8f08740, transparent 65%);
  filter: blur(10px);
}

/* Phone frame around real screenshots */
.phone {
  position: relative;
  margin: 0;
  width: 250px;
  padding: 9px;
  border-radius: 42px;
  background: linear-gradient(160deg, #2c373e, #10171b 60%);
  border: 1px solid #3a474f;
  box-shadow:
    0 40px 80px -20px #000000cc,
    0 0 0 1px #00000080 inset;
}
.phone img {
  width: 100%;
  border-radius: 33px;
}
.phone--hero {
  width: 260px;
  transform: rotate(2deg);
}
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  background: #1e292fef;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px -12px #000000b3;
  font-size: 13px;
  line-height: 1.25;
  animation: float 6s ease-in-out infinite;
}
.float-chip strong {
  display: block;
  font-size: 14px;
}
.float-chip span {
  color: var(--muted);
}
.float-chip strong {
  color: var(--text);
}
.float-chip--streak {
  top: 40px;
  left: 0;
}
.float-chip--streak svg.lucide {
  color: #ff9d3c;
}
.float-chip--perfect {
  bottom: 110px;
  right: 0;
  animation-delay: -3s;
}
.float-chip--perfect svg.lucide {
  color: #f6c649;
  fill: #f6c649;
}
.hero-mascot {
  position: absolute;
  bottom: -6px;
  left: -8px;
  width: 150px;
  filter: drop-shadow(0 18px 24px #00000080);
}
@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}

/* Numbers */
.stats {
  padding: 8px 0 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stats-grid > div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.stats-grid strong {
  display: block;
  color: var(--mint);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.stats-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 14px;
}
.feature {
  padding: 24px;
}
.feature h3 {
  font-size: 20px;
  margin: 16px 0 8px;
}
.feature p {
  color: var(--muted);
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint-surface);
  border: 1px solid var(--mint-border);
  color: var(--mint);
}
.feature-icon svg.lucide {
  width: 24px;
  height: 24px;
}

/* Showcase rows */
.showcase {
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 24px 0;
}
.showcase + .showcase {
  margin-top: 48px;
}
.showcase-copy h2 {
  font-size: clamp(28px, 5.5vw, 40px);
  margin-bottom: 14px;
}
.showcase-copy > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
}
.showcase-copy strong {
  color: var(--text);
}
.showcase-phones {
  position: relative;
  display: flex;
  justify-content: center;
  padding-right: 70px;
}
.showcase-phones .phone {
  width: 220px;
  z-index: 1;
}
.showcase-phones .phone--back {
  position: absolute;
  z-index: 0;
  left: calc(50% - 52px);
  top: 36px;
  width: 200px;
  transform: rotate(6deg);
  opacity: 0.9;
}

/* Steps */
.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  padding: 24px;
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 900;
  font-size: 18px;
}
.steps h3 {
  font-size: 20px;
  margin: 14px 0 6px;
}
.steps p {
  color: var(--muted);
}

/* Curriculum */
.paths {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: path;
}
.paths li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  counter-increment: path;
}
.paths li::before {
  content: counter(path, decimal-leading-zero);
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-raised);
  color: var(--mint);
  font-weight: 900;
}
.paths strong {
  font-size: 16px;
}
.paths span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}
.price h3 {
  font-size: 22px;
}
.price-amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.price-alt {
  margin-top: -8px;
  color: var(--muted);
  font-weight: 700;
}
.price .checks {
  flex: 1;
}
.price--plus {
  border-color: var(--mint-border);
  background: linear-gradient(180deg, #1f3326, var(--surface) 55%);
}
.badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--mint-surface);
  border: 1px solid var(--mint-border);
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-note {
  color: var(--subtle);
  font-size: 14px;
}

/* Privacy */
.privacy-promise {
  display: grid;
  gap: 28px;
  align-items: center;
}
.privacy-promise > img {
  width: min(320px, 80%);
  margin: 0 auto;
}
.privacy-promise h2 {
  font-size: clamp(28px, 5.5vw, 40px);
  margin-bottom: 14px;
}
.promise-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.promise-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.promise-list svg.lucide {
  margin-top: 2px;
  color: var(--mint);
}
.promise-list strong {
  display: block;
}
.promise-list span {
  color: var(--muted);
  font-size: 14px;
}

/* Download */
.ios-note {
  display: flex;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--mint-surface);
  border: 1px solid var(--mint-border);
}
.ios-note[hidden] {
  display: none;
}
.ios-note svg.lucide {
  color: var(--mint);
  margin-top: 2px;
}
.download-grid {
  display: grid;
  gap: 16px;
}
.download-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}
.download-card h3 {
  font-size: 20px;
}
.download-card p {
  color: var(--muted);
}
.download-card--main {
  border-color: var(--mint-border);
}
.download-card--soon {
  opacity: 0.75;
}
.download-title {
  display: flex;
  gap: 14px;
  align-items: center;
}
.download-title img {
  border-radius: 16px;
}
.download-title h3 {
  font-size: 22px;
}
.download-title p {
  font-size: 14px;
}
.download-side {
  display: grid;
  gap: 16px;
  align-content: start;
}
.download-card h4 {
  margin-top: 8px;
  font-size: 16px;
}
.install-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.install-steps li {
  position: relative;
  padding-left: 40px;
  color: var(--muted);
  counter-increment: step;
}
.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}
.install-steps strong {
  color: var(--text);
}
.notice {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--amber-surface);
  border: 1px solid #5c4b2a;
}
.notice svg.lucide {
  color: var(--amber);
  margin-top: 2px;
}
.notice p {
  color: #d9ccb4;
  font-size: 14px;
}
.notice strong {
  color: var(--text);
}
.verify summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.verify summary::-webkit-details-marker {
  display: none;
}
.verify p {
  margin: 10px 0;
  font-size: 14px;
}
.verify dl {
  display: grid;
  gap: 6px;
  margin: 0;
}
.verify dt {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.verify dd {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 8px;
}
.verify code {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--canvas);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.copy {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-raised);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
}
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg.lucide {
  color: var(--muted);
  transition: transform 180ms var(--ease);
}
.faq details[open] summary svg.lucide {
  transform: rotate(180deg);
}
.faq details p {
  padding: 0 20px 18px;
  color: var(--muted);
}

/* Final call to action */
.cta-card {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 32px var(--gutter);
  border-radius: 28px;
  background: radial-gradient(60% 80% at 20% 0%, #a8f0872b, transparent 70%), var(--surface);
  border: 1px solid var(--mint-border);
  text-align: center;
}
.cta-card img {
  width: 200px;
  margin: 0 auto;
}
.cta-card h2 {
  font-size: clamp(28px, 5.5vw, 40px);
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  padding: 56px 0 28px;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
}
.footer-grid {
  display: grid;
  gap: 28px;
}
.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--subtle);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-grid a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: var(--muted);
  font-weight: 700;
}
.footer-grid a:not(.brand):hover {
  color: var(--text);
}
.footer-grid svg.lucide {
  width: 18px;
  height: 18px;
}
.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--subtle);
  font-size: 14px;
}

/* Legal pages */
.legal {
  padding: 48px 0 72px;
}
.legal-wrap {
  max-width: 760px;
}
.legal h1 {
  font-size: clamp(34px, 7vw, 48px);
}
.legal-updated {
  margin: 10px 0 36px;
  color: var(--subtle);
}
.legal section {
  padding: 22px 0;
  border-top: 1px solid var(--border-soft);
}
.legal h2 {
  font-size: 21px;
  margin-bottom: 10px;
}
.legal section p {
  color: var(--muted);
}
.legal section p + p {
  margin-top: 10px;
}
.legal a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.not-found {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 60vh;
  padding: 48px 0;
  text-align: center;
}
.not-found img {
  width: 200px;
}
.not-found h1 {
  font-size: 40px;
}

/* Wider screens */
@media (min-width: 640px) {
  :root {
    --gutter: 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-grid,
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
  .paths {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .section {
    padding: 104px 0;
  }
  .site-nav {
    display: flex;
    gap: 4px;
  }
  .site-nav .nav-download {
    display: none;
  }
  .site-nav a {
    padding: 8px 12px;
    font-size: 15px;
  }
  .nav-toggle {
    display: none;
  }
  .header-cta span {
    display: inline;
  }
  .hero {
    padding: 72px 0 48px;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .hero-visual {
    min-height: 640px;
  }
  .phone--hero {
    width: 300px;
  }
  .hero-mascot {
    width: 190px;
    left: 0;
  }
  .feature-grid,
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .showcase--flip .showcase-copy {
    order: 2;
  }
  .showcase-phones .phone {
    width: 250px;
  }
  .showcase-phones .phone--back {
    width: 230px;
  }
  .paths {
    grid-template-columns: repeat(3, 1fr);
  }
  .privacy-promise {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
  }
  .privacy-promise > img {
    width: 100%;
  }
  .promise-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-grid {
    grid-template-columns: 1.3fr 1fr;
  }
  .cta-card {
    grid-template-columns: 260px 1fr;
    padding: 48px;
    text-align: left;
  }
  .cta-card img {
    width: 100%;
  }
  .cta-card .hero-actions .button {
    flex: 0 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
