:root {
  color-scheme: light;
  --bg: #faf8f4;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --ink: #171317;
  --muted: #6f6870;
  --line: rgba(23, 19, 23, 0.12);
  --accent: #d65f88;
  --accent-dark: #a63f64;
  --accent-soft: rgba(214, 95, 136, 0.13);
  --forest: #667957;
  --sky: #6a9bcc;
  --night: #171116;
  --night-2: #291722;
  --shadow: 0 28px 70px rgba(36, 25, 31, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Outfit", "Avenir Next", "SF Pro Display", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Satoshi", "Avenir Next", "SF Pro Text", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(130deg, rgba(214, 95, 136, 0.11), transparent 28rem),
    linear-gradient(180deg, #fffdfa 0%, #f2eee7 48%, #fbf7f1 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

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

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(207, 93, 134, 0.5);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100dvh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1280px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(45, 34, 41, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(207, 93, 134, 0.2);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.main-nav a,
.language-picker select {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 700 14px/1 var(--font-body);
}

.main-nav a {
  padding: 12px 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
  background: rgba(25, 23, 25, 0.06);
  color: var(--ink);
}

.language-picker {
  display: grid;
}

.language-picker select {
  max-width: 132px;
  padding: 11px 12px;
  background: rgba(25, 23, 25, 0.06);
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  width: min(1320px, calc(100% - 32px));
  min-height: calc(100dvh - 110px);
  margin-top: 24px;
  padding: clamp(46px, 6vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 76% 20%, rgba(106, 155, 204, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 54%, #4b2636 100%);
  box-shadow: 0 40px 100px rgba(38, 24, 32, 0.28);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 72%);
}

.hero-copy {
  max-width: 650px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #f1a3bf;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 740px;
  color: currentColor;
  font-size: clamp(3.1rem, 7vw, 6.25rem);
  line-height: 0.94;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 0.96;
  margin-bottom: 18px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.hero-lede,
.intro-strip p,
.trust-copy p,
.download-card p {
  max-width: 65ch;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button.primary {
  background: #fff;
  color: var(--night);
  box-shadow: 0 16px 35px rgba(214, 95, 136, 0.18);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.download-card .button.primary {
  background: var(--accent);
  color: #fff;
}

.download-card .button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button.legal-primary {
  background: var(--accent);
  color: #fff;
}

.button.legal-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  contain: layout style paint;
}

.visual-orbit {
  position: absolute;
  inset: 18px 0 28px auto;
  width: min(92%, 610px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(214, 95, 136, 0.14), rgba(106, 155, 204, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 30px 80px rgba(0, 0, 0, 0.22);
  transform: rotate(2deg);
  animation: slowFloat 8s ease-in-out infinite;
}

.phone-stack {
  position: relative;
  width: min(80vw, 460px);
  min-height: 610px;
}

.phone-shot {
  position: absolute;
  width: min(64vw, 330px);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.42);
  transform: translateZ(0);
}

.shot-back {
  right: 0;
  top: 40px;
  opacity: 0.74;
  transform: rotate(7deg) translateX(22px) scale(0.9);
  filter: saturate(0.88);
}

.shot-front {
  left: 0;
  top: 0;
  transform: rotate(-5deg);
}

.status-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
  box-shadow: 0 18px 35px rgba(45, 34, 41, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
}

.status-top {
  top: 98px;
  left: 18px;
}

.status-bottom {
  right: 12px;
  bottom: 108px;
}

.status-dot,
.wave-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px var(--accent-soft);
}

.wave-icon {
  width: 18px;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 3px, transparent 3px 6px);
  box-shadow: none;
}

.section {
  padding: 96px 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.features {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}

.feature-panel {
  display: grid;
  position: relative;
  align-content: start;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66)),
    linear-gradient(135deg, rgba(214, 95, 136, 0.12), transparent);
  box-shadow: 0 20px 48px rgba(45, 34, 41, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-panel::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--sky), var(--forest));
  content: "";
  opacity: 0.55;
}

.feature-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(45, 34, 41, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.feature-panel {
  grid-column: span 2;
}

.feature-panel.large,
.feature-panel.tall {
  grid-column: span 3;
}

.feature-panel.wide {
  grid-column: span 2;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
}

.screen-showcase {
  width: min(1320px, calc(100% - 32px));
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #171116 0%, #241720 58%, #3a2130 100%);
  color: #fff;
  box-shadow: 0 34px 90px rgba(38, 24, 32, 0.22);
}

.screen-showcase .section-kicker {
  color: #f0a4bf;
}

.screen-showcase h2 {
  color: #fff;
}

.screen-showcase .section-heading {
  max-width: 860px;
}

.screen-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.screen-rail figure {
  margin: 0;
  padding: 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.screen-rail figure:nth-child(even) {
  margin-top: 54px;
}

.screen-rail img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.screen-rail figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.pricing-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66)),
    linear-gradient(90deg, rgba(214, 95, 136, 0.1), rgba(106, 155, 204, 0.08));
  box-shadow: 0 22px 58px rgba(38, 24, 32, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card.highlighted {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 58%, #4b2636 100%);
  color: #fff;
  box-shadow: 0 34px 82px rgba(38, 24, 32, 0.22);
}

.pricing-card span {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card.highlighted span {
  color: #f1a3bf;
}

.pricing-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-card.highlighted p {
  color: rgba(255, 255, 255, 0.72);
}

.state-board {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(214, 95, 136, 0.08), rgba(106, 155, 204, 0.08));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.state-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
}

.state-row span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

.state-row small {
  color: var(--muted);
}

.state-row.loading span {
  background: linear-gradient(100deg, rgba(207, 93, 134, 0.15), rgba(207, 93, 134, 0.42), rgba(207, 93, 134, 0.15));
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.state-row.empty span {
  border: 2px dashed rgba(25, 23, 25, 0.18);
  background: rgba(25, 23, 25, 0.04);
}

.state-row.error span {
  background: rgba(207, 93, 134, 0.18);
  box-shadow: inset 0 0 0 2px rgba(207, 93, 134, 0.35);
}

.download-section {
  padding-bottom: 110px;
}

.download-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(22px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    linear-gradient(90deg, rgba(214, 95, 136, 0.1), rgba(102, 121, 87, 0.08));
  box-shadow: 0 34px 90px rgba(38, 24, 32, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.download-card img {
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(207, 93, 134, 0.18);
}

.download-card h2 {
  margin-bottom: 10px;
}

.download-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer span:first-child,
.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.legal-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.legal-hero {
  padding: clamp(48px, 7vw, 86px) 0 32px;
}

.legal-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.legal-lede {
  max-width: 76ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-index a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.legal-index a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.88);
}

.legal-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(214, 95, 136, 0.08), rgba(106, 155, 204, 0.08));
  box-shadow: 0 30px 80px rgba(38, 24, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.legal-language h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.legal-language h3 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.18rem;
}

.legal-language p,
.legal-language li {
  color: var(--muted);
}

.legal-language a {
  color: var(--accent-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-language[dir="rtl"] {
  text-align: right;
}

.legal-details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-details:first-of-type {
  border-top: 0;
}

.legal-details summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 850;
}

.legal-details summary::marker {
  color: var(--accent-dark);
}

.legal-details p:first-of-type {
  margin-top: 22px;
}

.legal-divider {
  height: 1px;
  margin: 44px 0;
  border: 0;
  background: var(--line);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  animation: fadeRise 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: 180% 0;
  }
  100% {
    background-position: -20% 0;
  }
}

@media (min-width: 1280px) {
  .site-header,
  .hero-section,
  .section,
  .site-footer {
    width: min(1320px, calc(100% - 64px));
  }

  .hero-section {
    grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
  }

  .phone-stack {
    width: min(34vw, 460px);
  }

  .phone-shot {
    width: min(25vw, 330px);
  }

  .screen-rail {
    gap: 22px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .hero-section,
  .intro-strip,
  .trust-section,
  .download-card {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .features,
  .screen-rail,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel,
  .feature-panel.large,
  .feature-panel.wide,
  .feature-panel.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .download-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-section,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .language-picker {
    justify-self: end;
    min-width: 0;
  }

  .language-picker select {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-section {
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 14px;
    padding: 32px 18px 28px;
    border-radius: 30px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.95rem, 9.5vw, 3rem);
    line-height: 1.03;
  }

  .hero-lede,
  .intro-strip p,
  .trust-copy p,
  .download-card p,
  .legal-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .download-actions {
    display: grid;
    min-width: 0;
    width: 100%;
  }

  .button {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    text-align: center;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-meta span {
    padding: 7px 9px;
    font-size: 0.8rem;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 4px;
  }

  .visual-orbit {
    inset: 20px 0 22px;
    width: 100%;
    border-radius: 28px;
  }

  .phone-stack {
    width: min(100%, 320px);
    min-height: 360px;
    margin-inline: auto;
  }

  .phone-shot {
    width: min(64vw, 214px);
    border-radius: 24px;
  }

  .shot-front {
    left: 6px;
  }

  .shot-back {
    top: 34px;
    right: 4px;
    transform: rotate(6deg) translateX(10px) scale(0.88);
  }

  .status-float {
    max-width: 150px;
    white-space: normal;
    line-height: 1.15;
    padding: 10px 11px;
    font-size: 0.82rem;
  }

  .status-top {
    top: 54px;
    left: 0;
  }

  .status-bottom {
    right: 0;
    bottom: 50px;
  }

  .section {
    padding: 64px 0;
  }

  .intro-strip {
    gap: 16px;
    padding: 6px 0;
  }

  .features,
  .screen-rail,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .screen-rail {
    display: flex;
    gap: 14px;
    margin-inline: 0;
    padding: 0 2px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .screen-rail figure {
    flex: 0 0 min(76vw, 280px);
    margin-top: 0;
    padding: 8px;
    border-radius: 28px;
    scroll-snap-align: center;
  }

  .screen-rail img {
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
  }

  .screen-showcase {
    width: min(100% - 20px, 1320px);
    padding: 46px 16px;
    border-radius: 30px;
  }

  .feature-panel,
  .pricing-card {
    min-height: auto;
    border-radius: 22px;
  }

  .feature-panel {
    padding: 20px;
  }

  .feature-icon {
    margin-bottom: 18px;
  }

  .state-row {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .state-row span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .download-section {
    padding-bottom: 72px;
  }

  .download-card {
    gap: 18px;
    justify-items: start;
    border-radius: 26px;
  }

  .download-card img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    padding-bottom: 28px;
  }

  .legal-page {
    width: min(100% - 20px, 980px);
    padding: 56px 0 52px;
  }

  .legal-hero {
    padding: 34px 0 24px;
  }

  .legal-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
    line-height: 1;
  }

  .legal-index {
    gap: 8px;
    margin-top: 20px;
  }

  .legal-index a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .legal-card {
    padding: 20px;
    border-radius: 24px;
  }

  .legal-language h2 {
    margin-bottom: 20px;
  }

  .legal-language h3 {
    font-size: 1.06rem;
  }

  .legal-divider {
    margin: 32px 0;
  }
}

@media (max-width: 420px) {
  .site-header,
  .hero-section,
  .section,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    padding: 8px 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .language-picker select {
    max-width: 108px;
    padding: 10px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9.5vw, 2.5rem);
  }

  .hero-section {
    padding: 28px 14px 24px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .phone-stack {
    width: min(100%, 288px);
    min-height: 330px;
  }

  .phone-shot {
    width: min(62vw, 190px);
    border-radius: 26px;
  }

  .shot-back {
    transform: rotate(6deg) translateX(8px) scale(0.88);
  }

  .status-float {
    max-width: 134px;
    padding: 9px 10px;
    font-size: 0.76rem;
  }

  .status-bottom {
    bottom: 42px;
  }

  .feature-panel,
  .state-row {
    padding: 18px;
  }

  .download-card {
    border-radius: 28px;
  }

  .screen-rail figure {
    flex-basis: min(78vw, 260px);
  }

  .legal-card {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .site-header,
  .hero-section,
  .section,
  .site-footer,
  .legal-page {
    width: calc(100% - 16px);
  }

  .language-picker select {
    max-width: 96px;
  }

  .phone-shot {
    width: min(60vw, 176px);
  }

  .status-float {
    display: none;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
