@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --bg-alt: #111720;
  --panel: rgba(17, 24, 34, 0.78);
  --panel-strong: rgba(18, 25, 36, 0.92);
  --text: #f4efe6;
  --muted: rgba(244, 239, 230, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #f7b267;
  --accent-2: #9fe7db;
  --accent-3: #8ca8ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(247, 178, 103, 0.18), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(159, 231, 219, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(140, 168, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #090c10 0%, #0b1118 42%, #0f141b 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 75%);
  opacity: 0.35;
}

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

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

::selection {
  background: rgba(247, 178, 103, 0.28);
}

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(9, 12, 17, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(247, 178, 103, 0.95), rgba(140, 168, 255, 0.95));
  color: #10151d;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(247, 178, 103, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  outline: none;
}

.hero,
.band,
.flow,
.split,
.feature-grid,
.gallery,
.launch {
  margin-top: 24px;
  scroll-margin-top: 120px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16, 22, 31, 0.84), rgba(10, 14, 19, 0.92));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 18px 8px 18px 6px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
  line-height: 0.96;
}

.lede,
.section-heading p,
.pillar p,
.flow-step p,
.split-copy p,
.feature-card p,
.launch p,
.visual-overlay p {
  color: var(--muted);
}

.lede {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.store-links--compact {
  margin-top: 0;
}

.store-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 188px;
  min-height: 60px;
  padding: 10px 16px 10px 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.store-link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: currentColor;
  opacity: 0.95;
}

.store-link::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background: #0b0f14;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.store-link span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.store-link strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.store-link:hover,
.store-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.store-link--apple {
  color: #f4efe6;
}

.store-link--google {
  color: #9fe7db;
}

.launch-actions {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #ffd7a6);
  color: #11151c;
  border-color: transparent;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #ffc985, #ffe6c5);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stats article,
.pillar,
.flow-step,
.mini-card,
.feature-card,
.launch,
.floating-note {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.stats article {
  padding: 18px;
  border-radius: var(--radius-md);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  min-height: 560px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.85) contrast(1.02);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.18), rgba(7, 10, 14, 0.62)),
    radial-gradient(circle at top right, rgba(247, 178, 103, 0.24), transparent 32%),
    radial-gradient(circle at bottom left, rgba(140, 168, 255, 0.16), transparent 26%);
}

.visual-overlay {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  max-width: 72%;
}

.visual-overlay h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.live-pill,
.pillar span,
.flow-step span,
.feature-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 239, 230, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  min-height: 170px;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: auto -28px -28px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 231, 219, 0.36), transparent 68%);
}

.mini-card span {
  display: block;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.mini-card h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.section-heading {
  max-width: 760px;
  padding: 6px 4px 2px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.02;
  margin-bottom: 10px;
}

.section-heading--compact {
  max-width: 620px;
}

.band,
.flow,
.feature-grid,
.gallery {
  padding: 30px;
}

.pillars,
.flow-grid,
.cards,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.pillar,
.flow-step {
  border-radius: 24px;
  padding: 22px;
}

.pillar h3,
.flow-step h3,
.feature-card h3 {
  margin: 14px 0 10px;
  font-size: 1.55rem;
}

.pillar p,
.flow-step p,
.feature-card p,
.split-copy p,
.launch p {
  margin: 0;
}

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
}

.split-media {
  position: relative;
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 10, 0.1), rgba(4, 7, 10, 0.4));
}

.floating-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
}

.floating-note strong {
  font-size: 1rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.split-copy {
  padding: 12px 12px 12px 10px;
}

.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: rgba(244, 239, 230, 0.9);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-card > div {
  padding: 18px 18px 18px 0;
}

.feature-card--text {
  grid-template-columns: 1fr;
  min-height: 210px;
  padding: 24px;
}

.feature-card--text > div {
  padding: 0;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.gallery figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  padding: 28px 30px;
}

.launch h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  margin: 0 0 10px;
}

.launch p {
  max-width: 60ch;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.hero-visual,
.visual-card,
.mini-card {
  animation: drift 8s ease-in-out infinite;
}

.hero-visual .mini-card:last-child {
  animation-delay: -3s;
}

@media (max-width: 1080px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 460px;
  }

  .pillars,
  .flow-grid,
  .cards,
  .gallery-grid,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .feature-card > div {
    padding: 0 18px 18px;
  }

  .launch-actions {
    justify-items: start;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    padding-top: 10px;
  }

  .topbar {
    position: static;
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  html {
    scroll-padding-top: 16px;
  }

  .hero,
  .band,
  .flow,
  .split,
  .feature-grid,
  .gallery,
  .launch {
    scroll-margin-top: 16px;
  }

  .hero,
  .band,
  .flow,
  .split,
  .feature-grid,
  .gallery,
  .launch {
    padding: 20px;
    border-radius: 28px;
  }

  .hero {
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.1rem);
  }

  .visual-overlay {
    max-width: none;
    inset: auto 18px 18px;
  }

  .visual-card {
    min-height: 380px;
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .store-links,
  .store-links--compact {
    width: 100%;
  }

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

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

  .launch-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
