@font-face {
  font-family: "Oli Fraunces";
  src: url("/assets/site/fonts/Fraunces.ttf") format("truetype");
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oli Fraunces";
  src: url("/assets/site/fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 500 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Oli Geist";
  src: url("/assets/site/fonts/Geist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oli Geist";
  src: url("/assets/site/fonts/Geist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oli Geist";
  src: url("/assets/site/fonts/Geist-SemiBold.ttf") format("truetype");
  font-weight: 650 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oli Mono";
  src: url("/assets/site/fonts/JetBrainsMono.ttf") format("truetype");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --bg-2: #12161c;
  --surface: #15191f;
  --surface-warm: #1f1b16;
  --ink: #fafaf6;
  --ink-soft: #d6cfc2;
  --muted: #8a857f;
  --line: #2a2622;
  --line-cool: #27303a;
  --accent: #ff6a3d;
  --accent-dark: #c83b18;
  --accent-soft: #2a1813;
  --success: #8bae71;
  --warning: #e3a259;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 61, .15), transparent 26rem),
    linear-gradient(180deg, #090c10 0%, var(--bg) 42%, #0f1112 100%);
  color: var(--ink);
  font-family: "Oli Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .22;
  background-image:
    linear-gradient(rgba(250, 250, 246, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 250, 246, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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

a {
  color: inherit;
}

.en,
html[data-lang="en"] .de {
  display: none;
}

html[data-lang="en"] .en {
  display: inline;
}

html[data-lang="en"] .en.block {
  display: block;
}

.de.block {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(250, 250, 246, .08);
  background: rgba(11, 15, 20, .82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.wordmark {
  color: var(--accent);
  font-family: "Oli Fraunces", Georgia, serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 88, "WONK" 1;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 106, 61, .11);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.menu-toggle {
  min-height: 40px;
  border: 1px solid rgba(250, 250, 246, .14);
  border-radius: 10px;
  background: rgba(250, 250, 246, .04);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle {
  min-width: 46px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
}

.button,
.store-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover,
.store-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  padding: 0 19px;
  background: var(--accent);
  color: #0b0f14;
}

.button.secondary {
  padding: 0 19px;
  border-color: rgba(250, 250, 246, .15);
  background: rgba(250, 250, 246, .045);
  color: var(--ink);
}

.store-button {
  min-width: 184px;
  padding: 9px 15px;
  border-color: rgba(250, 250, 246, .12);
  background:
    linear-gradient(180deg, #ffffff, #ebe7dc);
  color: #0b0f14;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.store-mark {
  display: none;
  width: 21px;
  height: 21px;
}

.store-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.store-copy small {
  color: #44403a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.store-copy strong {
  font-size: 17px;
  line-height: 1;
}

.trust-strip {
  width: min(100% - 32px, var(--max));
  margin: -44px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-pill {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(250, 250, 246, .12);
  border-radius: 16px;
  background: rgba(21, 25, 31, .82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.trust-pill strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.trust-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.germany-flag {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(250, 250, 246, .16);
  border-radius: 8px;
  background:
    linear-gradient(to bottom,
      #050505 0 33.333%,
      #dd0000 33.333% 66.666%,
      #ffce00 66.666% 100%);
  background-repeat: no-repeat;
}

.de-badge {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(250, 250, 246, .16);
  border-radius: 9px;
  background: #10151b;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section-header {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Oli Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: .98;
  letter-spacing: 0;
  font-variation-settings: "opsz" 144, "SOFT" 86, "WONK" 1;
}

h1 {
  max-width: 680px;
  font-size: clamp(70px, 12vw, 156px);
}

h2 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 86px);
}

h3 {
  font-size: clamp(26px, 3vw, 36px);
}

.oli-word {
  font-family: "Oli Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 88, "WONK" 1;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.lead {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.46;
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  border-bottom: 1px solid rgba(250, 250, 246, .08);
  background:
    linear-gradient(90deg, rgba(48, 12, 4, .9) 0%, rgba(132, 38, 16, .7) 51%, rgba(230, 64, 24, .78) 100%),
    #210904;
}

.hero-inner {
  position: relative;
  width: min(100% - 32px, var(--max));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 92px 0 118px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(680px, 58%);
}

.hero .lead {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(250, 250, 246, .88);
}

.hero h1 {
  font-style: italic;
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 88, "WONK" 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stage {
  position: absolute;
  right: clamp(-120px, -4vw, -24px);
  bottom: -12px;
  width: min(58vw, 680px);
  min-width: 440px;
  aspect-ratio: 1 / 1;
}

.hero-phone {
  position: absolute;
  right: 18%;
  bottom: 8%;
  width: 56%;
  max-height: 86vh;
  object-fit: contain;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, .62));
}

.hero-character {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, .38));
}

.hero-badge {
  position: absolute;
  right: 36%;
  bottom: 13%;
  z-index: 3;
  width: min(310px, 38vw);
  padding: 14px 16px;
  border: 1px solid rgba(250, 250, 246, .16);
  border-radius: 16px;
  background: rgba(11, 15, 20, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 850;
}

.hero-badge span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.below-hero {
  padding-top: 44px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(250, 250, 246, .1);
  border-radius: var(--radius);
  background: rgba(250, 250, 246, .1);
}

.metric {
  padding: 28px;
  background: rgba(21, 25, 31, .78);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-family: "Oli Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 26px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.price-card,
.story-card,
.legal-box,
.faq-item {
  border: 1px solid rgba(250, 250, 246, .1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(250, 250, 246, .055), rgba(250, 250, 246, .025));
}

.feature-card,
.story-card,
.faq-item {
  padding: 26px;
}

.feature-card h3,
.story-card h3,
.faq-item h3 {
  margin-bottom: 12px;
  font-family: "Oli Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.15;
}

.feature-index,
.feature-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Oli Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  font-weight: 850;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.phone-pair {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.phone-pair img {
  position: absolute;
  width: min(50%, 330px);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .46));
}

.phone-pair img:first-child {
  left: 8%;
  top: 2%;
  transform: translateX(-18px) rotate(-4deg);
}

.phone-pair img:last-child {
  right: 3%;
  top: 13%;
  transform: translateX(18px) rotate(5deg);
}

[data-reveal] .phone-pair img,
.phone-pair[data-reveal] img {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.phone-pair[data-reveal].is-visible img:first-child {
  opacity: 1;
  transform: translateX(0) rotate(-4deg);
}

.phone-pair[data-reveal].is-visible img:last-child {
  opacity: 1;
  transform: translateX(0) rotate(5deg);
  transition-delay: .12s;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 106, 61, .28);
  border-radius: 12px;
  background: rgba(255, 106, 61, .1);
  color: var(--accent);
  font-family: "Oli Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 850;
}

.step strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.band {
  border-block: 1px solid rgba(250, 250, 246, .08);
  background: rgba(31, 27, 22, .52);
}

.screens-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}

.screen-shot {
  overflow: hidden;
  border: 1px solid rgba(250, 250, 246, .1);
  border-radius: 16px;
  background: var(--surface);
}

.screen-shot img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: center bottom;
  background: #050608;
}

.screen-shot.wide img {
  height: 300px;
  object-fit: cover;
}

.screen-shot p {
  padding: 16px 18px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.price-card.featured {
  border-color: rgba(255, 106, 61, .48);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 61, .28), transparent 18rem),
    linear-gradient(180deg, rgba(255, 106, 61, .12), rgba(250, 250, 246, .035)),
    var(--surface);
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 250, 246, .2);
}

.pricing-toggle {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 8px;
  border: 1px solid rgba(250, 250, 246, .12);
  border-radius: 999px;
  background: rgba(250, 250, 246, .045);
}

.pricing-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.pricing-toggle button.active {
  background: var(--ink);
  color: var(--bg);
}

.pricing-save {
  color: var(--success);
  font-size: 12px;
  font-weight: 850;
}

.price-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 106, 61, .38);
  border-radius: 999px;
  background: rgba(255, 106, 61, .12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.price-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 10px;
  color: var(--ink);
  font-family: "Oli Fraunces", Georgia, serif;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 750;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: "Oli Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.annual-price {
  display: none;
}

html[data-billing="annual"] .monthly-price {
  display: none;
}

html[data-billing="annual"] .annual-price {
  display: inline;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 850;
}

.made-in-germany {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 86px;
}

.made-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(250, 250, 246, .1);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 106, 61, .13), rgba(21, 25, 31, .86)),
    var(--surface);
}

.made-card h3 {
  margin-bottom: 6px;
  font-family: "Oli Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 850;
}

.made-card p {
  font-size: 14px;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compliance-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(250, 250, 246, .12);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(250, 250, 246, .045);
  font-size: 12px;
  font-weight: 800;
}

.notice {
  padding: 15px 16px;
  border: 1px solid rgba(227, 162, 89, .28);
  border-radius: 12px;
  background: rgba(227, 162, 89, .08);
  color: #efd5b1;
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  margin: 0 auto 90px;
  padding: 52px;
  border: 1px solid rgba(250, 250, 246, .1);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255, 106, 61, .24), rgba(21, 25, 31, .9) 54%),
    var(--surface);
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.cta h2 {
  font-size: clamp(40px, 6vw, 72px);
}

.cta p {
  margin-top: 18px;
  font-size: 19px;
}

.cta .hero-actions {
  margin-top: 28px;
}

.cta-oli {
  position: absolute;
  right: 38px;
  bottom: -22px;
  width: min(240px, 24vw);
  min-width: 150px;
}

.page-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 90px 0 44px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(56px, 10vw, 126px);
}

.page-hero .lead {
  margin-top: 24px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.legal-nav a:hover {
  background: rgba(250, 250, 246, .055);
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-box {
  padding: 26px;
}

.legal-box h2,
.legal-box h3 {
  margin-bottom: 12px;
  font-family: "Oli Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
}

.legal-placeholder {
  display: block;
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px dashed rgba(255, 106, 61, .55);
  border-radius: 12px;
  background: rgba(255, 106, 61, .08);
  color: #ffc0aa;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(250, 250, 246, .08);
  background: #090c10;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.fineprint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(250, 250, 246, .1);
    border-radius: 16px;
    background: rgba(11, 15, 20, .97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 70px 0 390px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-stage {
    right: 50%;
    bottom: -24px;
    width: min(720px, 110vw);
    min-width: 0;
    transform: translateX(50%);
  }

  .showcase,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .phone-pair {
    min-height: 560px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three,
  .screens-row,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .made-card {
    grid-template-columns: auto 1fr;
  }

  .compliance-tags {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 94px);
  }

  .hero-inner {
    padding-bottom: 310px;
  }

  .hero-badge {
    display: none;
  }

  .hero-stage {
    right: 0;
    bottom: -82px;
    width: 100%;
    overflow: hidden;
    transform: none;
  }

  .hero-phone {
    right: 28%;
    width: 42%;
  }

  .hero-character {
    right: 1%;
    width: 30%;
  }

  .metrics,
  .grid.two,
  .grid.three,
  .screens-row,
  .pricing-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .phone-pair {
    min-height: 500px;
  }

  .phone-pair img {
    width: 58%;
  }

  .screen-shot img {
    height: 360px;
  }

  .cta {
    padding: 34px 24px 190px;
  }

  .cta-oli {
    width: 168px;
    right: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 16px;
  }

  .pricing-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .made-card {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 460px) {
  .button.primary.nav-cta {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .store-button,
  .button {
    width: 100%;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}
