:root {
  --bg: #05060a;
  --surface: #0c0f1a;
  --surface-alt: #101429;
  --text: #f7f6ff;
  --muted: #b6bdd8;
  --accent: #ffd347;
  --accent-strong: #ff7a18;
  --gradient: radial-gradient(circle at 20% 20%, rgba(87, 32, 255, 0.08), #05060a 60%);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "SF Pro Display", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

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

.hero {
  display: grid;
  gap: 48px;
  padding: 96px clamp(24px, 6vw, 96px) 120px;
  background: var(--gradient);
  overflow: hidden;
}

.hero__content {
  max-width: 640px;
}

h1,
h2,
h3 {
  margin: 0 0 24px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 4.5rem);
}

h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.lead {
  font-size: 1.25rem;
  color: var(--text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.app-store-badge {
  display: inline-block;
  line-height: 0;
}

.app-store-badge img {
  display: block;
  height: 48px;
  width: auto;
}

.app-store-badge--small img {
  height: 44px;
}

.app-store-badge:hover {
  opacity: 0.9;
}

.link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0;
}

.link-ghost:hover {
  color: var(--accent);
}

.hero__image {
  justify-self: end;
  max-width: 420px;
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.card__header,
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.card__header span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__body li {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgb(5 6 10 / 60%);
  border: 1px solid rgb(255 255 255 / 8%);
}

.card__body li > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.line {
  font-weight: 600;
  color: var(--text);
}

.eta {
  color: var(--accent);
  font-size: 1rem;
}

.status {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.status--warn {
  color: var(--accent);
}

.feature {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 6vw, 120px);
  display: grid;
  gap: 48px;
  background: linear-gradient(120deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 2%));
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 10%);
  margin: -48px clamp(16px, 4vw, 80px) 120px;
  position: relative;
  z-index: 1;
}

.feature__panel {
  background: var(--surface-alt);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 6%);
  box-shadow: 0 15px 35px rgb(5 6 10 / 40%);
}

.feature__panel ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgb(255 255 255 / 8%);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.main {
  padding-bottom: 80px;
}

.cta {
  margin: 0 clamp(24px, 6vw, 120px) 120px;
  padding: 56px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.cta__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.cta__content {
  max-width: 640px;
}

.cta__image {
  max-width: 100%;
  justify-self: end;
}

.cta__image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 600px;
}

.footer {
  padding: 40px 24px 80px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer__credit {
  margin: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__locale {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer__locale-active {
  color: var(--text);
  font-weight: 600;
}

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

.footer__locale-link:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
  }

  .feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

@media (max-width: 599px) {
  .hero__image {
    justify-self: stretch;
  }

  .button {
    width: 100%;
    justify-content: center;
  }
}

body.page {
  background: var(--bg);
  color: var(--text);
}

.page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(20px, 4vw, 80px) 0;
  gap: 16px;
}

.page__brand {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.page__header .link-ghost {
  flex-shrink: 0;
  color: var(--text);
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 80px) clamp(20px, 6vw, 80px) 80px;
}

.legal h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 16px;
}

.legal h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 12px;
}

.legal h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.legal p {
  color: var(--muted);
  margin-bottom: 20px;
}

.legal__section {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.legal__section:last-child {
  border-bottom: none;
}

.legal__stamp {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.legal__highlight {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
}

.legal__divider {
  border: none;
  border-top: 1px solid rgb(255 255 255 / 10%);
  margin: 32px 0;
}

.legal__list {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
  margin-bottom: 24px;
}

.legal__list li + li {
  margin-top: 8px;
}

.legal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 24px;
}

.legal__chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 10%);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal__footer-note {
  font-size: 0.95rem;
  color: var(--muted);
}
