:root {
  --bg: #230036;
  --bg-dark: #1a0028;
  --hero-gradient: linear-gradient(180deg, #5a0788 0%, #230036 100%);
  --hero-gradient-oklab: linear-gradient(
    in oklab 180deg,
    oklab(37% 0.112 -0.146) 0%,
    oklab(19.8% 0.064 -0.077) 100%
  );
  --headline: #fff5bd;
  --caption: #ffeeda;
  --subtle: #b8b0c2;
  --muted: #7c6a8c;
  --primary: #faff6a;
  --card: #301046;
  --badge-bg: rgba(10, 6, 16, 0.45);
  --border: rgba(255, 255, 255, 0.12);
  --header-bg: rgba(35, 0, 54, 0.88);
  --max-width: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.page {
  background: var(--bg);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
}

.brand__name {
  display: none;
  font-size: 17.6px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.site-nav a {
  font-size: 15.2px;
  line-height: 1.6;
  color: var(--caption);
}

.site-nav a.is-active {
  color: var(--primary);
  font-weight: 600;
}

.hero {
  background: var(--hero-gradient);
  background: var(--hero-gradient-oklab);
  padding: 112px 20px 56px;
}

.hero__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero__headline {
  margin: 0 0 12px;
  font-family: "Roboto Flex", system-ui, sans-serif;
  font-size: clamp(2.25rem, 8vw, 50px);
  font-style: italic;
  font-weight: 903;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--headline);
  font-variation-settings: "wght" 903, "slnt" -10, "GRAD" 69, "XOPQ" 112,
    "XTRA" 425;
}

.hero__tagline {
  margin: 0 0 20px;
  max-width: 401px;
  font-size: 18.4px;
  line-height: 1.6;
  color: var(--caption);
}

.hero__tagline--desktop-only {
  display: none;
}

.hero__summary {
  margin: 0 0 28px;
  max-width: 431px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--subtle);
}

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

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--badge-bg);
  cursor: not-allowed;
  user-select: none;
}

.store-badge--app-store {
  width: 247px;
  flex-shrink: 0;
}

.store-badge__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.store-badge__label {
  font-size: 14.4px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--caption);
}

.store-badge__status {
  font-size: 14.4px;
  line-height: 1.6;
  color: var(--muted);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-mockup {
  width: 228px;
  height: 409px;
  max-width: 100%;
  aspect-ratio: 19 / 18;
  object-fit: cover;
  transform: rotate(4.11deg);
  transform-origin: center;
}

.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

.features__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--headline);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary);
}

.feature-card__text {
  margin: 0;
  font-size: 15.2px;
  line-height: 1.6;
  color: var(--subtle);
}

.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 28px 20px;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__copy {
  margin: 0;
  font-size: 14.4px;
  line-height: 1.6;
  color: var(--muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer__nav a {
  font-size: 14.4px;
  line-height: 1.6;
  color: var(--subtle);
}

.site-footer__nav a:hover {
  color: var(--caption);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: var(--headline);
}

.legal-meta {
  margin: 0 0 32px;
  font-size: 14.4px;
  color: var(--muted);
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
  color: var(--caption);
}

.legal-page p,
.legal-page li {
  color: var(--subtle);
  font-size: 16px;
  line-height: 1.6;
}

.legal-page ul {
  padding-left: 1.25rem;
}

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

.legal-page a {
  color: var(--primary);
}

.legal-page a:hover {
  text-decoration: underline;
}

.contact-card {
  margin-top: 24px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
}

.contact-card p {
  margin: 0;
}

.faq-title {
  margin: 24px 0 0;
  font-size: 1rem;
  color: var(--caption);
}

@media (min-width: 900px) {
  .hero {
    padding-top: 48px;
  }

  .brand__name {
    display: block;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero__tagline--mobile-only {
    display: none;
  }

  .hero__tagline--desktop-only {
    display: block;
  }
}
