:root {
  --primary: #543f9e;
  --primary-variant: #3c2d6e;
  --secondary: #ebe8f1;
  --accent: #3772e7;
  --background: #f8f9fa;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #1f2937;
  --muted: #6b7280;
  --hint: #9ca3af;
  --divider: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --orange: #ea580c;
  --pink: #ec4899;
  --shadow-soft: 0 22px 58px rgba(31, 41, 55, 0.12);
  --shadow-purple: 0 26px 78px rgba(84, 63, 158, 0.24);
  --radius-card: 24px;
  --radius-button: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: Outfit, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(120deg, rgba(235, 232, 241, 0.82), rgba(248, 249, 250, 0.98) 45%, rgba(55, 114, 231, 0.08)),
    var(--background);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(229, 231, 235, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(31, 41, 55, 0.12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(84, 63, 158, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 58px rgba(31, 41, 55, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--primary-variant);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(84, 63, 158, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  background: rgba(84, 63, 158, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(84, 63, 158, 0.2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-variant), var(--accent));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  color: var(--primary);
  background: rgba(84, 63, 158, 0.08);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: max(660px, 82svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px max(28px, calc((100vw - 1180px) / 2)) 86px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(84, 63, 158, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 114, 231, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, black 64%, transparent 100%);
}

.hero-rings {
  position: absolute;
  right: -8vw;
  top: 92px;
  z-index: -1;
  width: 58vw;
  height: 62svh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(55, 114, 231, 0.14)),
    repeating-linear-gradient(135deg, rgba(84, 63, 158, 0.12) 0 1px, transparent 1px 22px);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  opacity: 0.9;
}

.hero-content {
  width: min(620px, 100%);
  padding-top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero h1 {
  margin: 0;
  color: var(--primary-variant);
  font-size: 5.35rem;
  line-height: 0.92;
  font-weight: 800;
}

.hero-lede {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.68;
  overflow-wrap: normal;
  word-break: normal;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.store-actions.centered {
  justify-content: center;
}

.store-badge-link {
  min-width: 168px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  filter: drop-shadow(0 16px 24px rgba(31, 41, 55, 0.16));
  outline: none;
  transform: translateY(-3px);
}

.store-badge {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(31, 41, 55, 0.14));
}

.google-play-badge {
  height: 68px;
}

.hero-countdown-card {
  width: min(440px, 100%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(84, 63, 158, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 22px 56px rgba(31, 41, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.hero-countdown-main {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.hero-countdown-main strong {
  display: block;
  color: var(--primary-variant);
  font-size: 4.85rem;
  line-height: 0.82;
  font-weight: 800;
}

.hero-countdown-main span {
  display: block;
  max-width: 96px;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-countdown-time {
  min-width: 166px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-countdown-time span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 63, 158, 0.1);
  border-radius: 14px;
  color: var(--primary);
  background: rgba(84, 63, 158, 0.08);
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-visual {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 56px;
  width: min(480px, 42vw);
  height: min(640px, 68svh);
  pointer-events: none;
}

.device {
  position: absolute;
  overflow: hidden;
  border: 10px solid #111827;
  border-radius: 46px;
  background: #111827;
  box-shadow:
    0 34px 90px rgba(31, 41, 55, 0.26),
    0 18px 52px rgba(84, 63, 158, 0.2);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.device-bar {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 27px;
  border-radius: 999px;
  background: #050816;
  transform: translateX(-50%);
}

.device-main {
  right: 58px;
  bottom: 0;
  width: 250px;
  height: 540px;
  transform: rotate(3deg);
}

.device-back {
  right: 224px;
  bottom: 64px;
  width: 204px;
  height: 444px;
  opacity: 0.9;
  filter: saturate(0.94);
  transform: rotate(-8deg);
}

.floating-note {
  position: absolute;
  z-index: 5;
  min-width: 188px;
  padding: 14px 16px;
  border: 1px solid rgba(84, 63, 158, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(31, 41, 55, 0.16);
  backdrop-filter: blur(16px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-note strong {
  margin-top: 4px;
  color: var(--primary-variant);
  font-size: 0.98rem;
}

.note-one {
  right: 20px;
  top: 154px;
}

.note-two {
  left: 2px;
  bottom: 134px;
}

.quick-strip {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-card);
  background: var(--divider);
  box-shadow: 0 20px 52px rgba(31, 41, 55, 0.12);
}

.quick-strip div {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.86);
}

.quick-strip span {
  color: var(--primary-variant);
  font-weight: 700;
  line-height: 1.45;
}

.coming-soon-banner {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 26px auto 0;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(84, 63, 158, 0.14);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 232, 241, 0.84) 58%, rgba(55, 114, 231, 0.14)),
    #ffffff;
  box-shadow:
    0 24px 62px rgba(31, 41, 55, 0.12),
    0 14px 38px rgba(84, 63, 158, 0.12);
}

.coming-soon-banner::after {
  position: absolute;
  inset: auto -80px -150px auto;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 114, 231, 0.2), transparent 66%);
}

.coming-soon-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.coming-soon-copy .eyebrow {
  margin-bottom: 12px;
}

.coming-soon-copy h2 {
  margin: 0;
  color: var(--primary-variant);
  font-size: 2.15rem;
  line-height: 1.08;
}

.coming-soon-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.coming-soon-countdown {
  position: relative;
  z-index: 1;
  min-width: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:
    0 22px 48px rgba(84, 63, 158, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.countdown-main {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.countdown-main strong {
  display: block;
  font-size: 5.2rem;
  line-height: 0.82;
  font-weight: 800;
}

.countdown-main span {
  display: block;
  max-width: 86px;
  padding-bottom: 7px;
  font-size: 1.08rem;
  line-height: 1.05;
  font-weight: 800;
}

.countdown-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.countdown-detail span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1rem;
  font-weight: 800;
}

.coming-soon-countdown p {
  display: block;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

.section-heading.compact {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact .eyebrow {
  justify-content: center;
}

.section-heading h2,
.workflow h2,
.language-band h2,
.final-cta h2 {
  margin: 0;
  color: var(--primary-variant);
  font-size: 3.1rem;
  line-height: 1.04;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.workflow-copy p:not(.eyebrow),
.language-band p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 52px rgba(31, 41, 55, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: rgba(84, 63, 158, 0.24);
  box-shadow: 0 28px 66px rgba(31, 41, 55, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(31, 41, 55, 0.18);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-icon.purple {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.feature-icon.orange {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

.feature-icon.blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.feature-icon.green {
  background: linear-gradient(135deg, #059669, #34d399);
}

.feature-icon.pink {
  background: linear-gradient(135deg, #db2777, #f472b6);
}

.feature-icon.amber {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}

.feature-card h3 {
  margin: 20px 0 0;
  color: var(--text);
  font-size: 1.28rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.workflow {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  margin: 96px auto 0;
  padding: 42px;
  border: 1px solid rgba(84, 63, 158, 0.12);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.86)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.workflow-steps article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 41, 55, 0.08);
}

.workflow-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 800;
}

.workflow-steps h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
}

.workflow-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.screenshots {
  padding-top: 96px;
}

.screen-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.screen-track {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-card {
  margin: 0;
  padding: 10px 10px 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(31, 41, 55, 0.12);
  opacity: 0.74;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.screen-card.is-active {
  opacity: 1;
  box-shadow: var(--shadow-purple);
  transform: translateY(-8px);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 600 / 1100;
  object-fit: cover;
  border: 8px solid #111827;
  border-radius: 32px;
  background: #111827;
}

.screen-card figcaption {
  margin-top: 14px;
  color: var(--primary-variant);
  font-weight: 800;
  text-align: center;
}

.screen-control {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 63, 158, 0.18);
  border-radius: 999px;
  color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease;
}

.screen-control:hover,
.screen-control:focus-visible {
  color: #ffffff;
  border-color: var(--primary);
  background: var(--primary);
  outline: none;
  transform: translateY(-2px);
}

.screen-control svg {
  width: 21px;
  height: 21px;
  transform: rotate(180deg);
}

.screen-control.next svg {
  transform: none;
}

.language-band {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  margin: 96px auto 0;
  padding: 46px;
  border-radius: var(--radius-card);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(60, 45, 110, 0.96), rgba(84, 63, 158, 0.92) 55%, rgba(55, 114, 231, 0.92)),
    var(--primary);
  box-shadow: var(--shadow-purple);
}

.language-band .eyebrow,
.language-band h2,
.language-band p {
  color: #ffffff;
}

.language-band .eyebrow span {
  background: #ffffff;
}

.language-band p {
  opacity: 0.86;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.language-grid article {
  min-height: 164px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.12);
}

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

.language-grid strong {
  font-size: 1.28rem;
}

.language-grid span {
  margin-top: 10px;
  line-height: 1.55;
  opacity: 0.86;
}

.pricing {
  padding-top: 92px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.plan-card {
  padding: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.plan-highlight {
  border-color: rgba(84, 63, 158, 0.22);
  background:
    linear-gradient(135deg, rgba(235, 232, 241, 0.94), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.plan-card h3 {
  margin: 0;
  color: var(--primary-variant);
  font-size: 1.6rem;
}

.plan-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.plan-card li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--success);
}

.faq {
  width: min(850px, calc(100% - 44px));
  margin: 96px auto 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(31, 41, 55, 0.09);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--primary-variant);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--accent);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  width: min(950px, calc(100% - 44px));
  margin: 96px auto 0;
  padding: 56px 32px;
  border: 1px solid rgba(84, 63, 158, 0.13);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 232, 241, 0.74)),
    #ffffff;
  box-shadow: var(--shadow-purple);
  text-align: center;
}

.final-cta > img {
  margin: 0 auto 20px;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(84, 63, 158, 0.18);
}

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

.site-footer {
  width: min(1180px, calc(100% - 44px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 54px auto 0;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
  outline: none;
}

@media (max-width: 1080px) {
  .hero {
    padding-inline: 28px;
  }

  .hero-content {
    width: min(560px, 58%);
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-visual {
    right: -22px;
    width: 46vw;
  }

  .device-main {
    right: 24px;
    width: 252px;
    height: 546px;
  }

  .device-back {
    right: 206px;
    width: 196px;
    height: 426px;
  }

  .floating-note {
    display: none;
  }

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

  .workflow,
  .language-band {
    grid-template-columns: 1fr;
  }

  .screen-track {
    grid-template-columns: repeat(4, minmax(188px, 1fr));
    overflow-x: auto;
    padding: 10px 4px 20px;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    scroll-snap-align: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    width: min(calc(100% - 24px), 680px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 42px rgba(31, 41, 55, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 800px;
    padding: 100px 22px 120px;
  }

  .hero-rings {
    right: -28vw;
    top: 170px;
    width: 92vw;
    height: 52svh;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 540px);
    max-width: calc(100vw - 44px);
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-lede {
    max-width: 480px;
    font-size: 1.04rem;
  }

  .hero-visual {
    right: -96px;
    bottom: 18px;
    width: 360px;
    height: 560px;
    opacity: 0.42;
  }

  .device-main {
    right: 22px;
    width: 220px;
    height: 476px;
  }

  .device-back {
    display: none;
  }

  .hero-countdown-card {
    max-width: 430px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .quick-strip div {
    min-height: 66px;
  }

  .coming-soon-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px;
  }

  .coming-soon-countdown {
    min-width: 0;
  }

  .section {
    padding-top: 72px;
  }

  .section-heading h2,
  .workflow h2,
  .language-band h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .workflow {
    margin-top: 74px;
    padding: 28px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .language-band {
    margin-top: 74px;
    padding: 30px;
  }

  .language-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .screen-stage {
    grid-template-columns: 1fr;
  }

  .screen-control {
    display: none;
  }

  .screen-track {
    margin-inline: -4px;
  }

  .screen-card {
    min-width: 230px;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 92px;
    padding-inline: 18px;
    padding-bottom: 132px;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  .eyebrow span {
    width: 24px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lede {
    margin-top: 18px;
    max-width: min(100%, 330px);
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .store-actions {
    gap: 10px;
    margin-top: 22px;
    width: min(100%, 360px);
  }

  .store-badge-link {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .store-badge {
    height: 48px;
  }

  .google-play-badge {
    height: 68px;
  }

  .hero-countdown-card {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
    padding: 18px;
  }

  .hero-countdown-main strong {
    font-size: 4rem;
  }

  .hero-countdown-time {
    min-width: 0;
  }

  .hero-visual {
    right: -130px;
    bottom: 0;
    width: 330px;
    height: 510px;
  }

  .device-main {
    width: 196px;
    height: 424px;
    border-width: 8px;
    border-radius: 38px;
  }

  .device img {
    border-radius: 29px;
  }

  .device-bar {
    width: 72px;
    height: 22px;
  }

  .quick-strip,
  .coming-soon-banner,
  .section,
  .workflow,
  .language-band,
  .faq,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section-heading h2,
  .coming-soon-copy h2,
  .workflow h2,
  .language-band h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .coming-soon-banner {
    padding: 22px;
  }

  .countdown-main strong {
    font-size: 4.3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow,
  .language-band {
    padding: 22px;
  }

  .final-cta {
    padding: 42px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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