:root {
  --purple: #a575b7;
  --red: #e52d27;
  --ink: #121118;
  --muted: #6d6a75;
  --paper: #f7f4f8;
  --white: #ffffff;
  --gradient: linear-gradient(115deg, var(--purple), var(--red));
  --display: "Bricolage Grotesque", Georgia, serif;
  --body: "Manrope", sans-serif;
  --radius: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at top right, rgba(165, 117, 183, 0.12), transparent 32%),
    radial-gradient(circle at 20% 40%, rgba(229, 45, 39, 0.08), transparent 28%),
    var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px);
}

.brand-logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: white;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 17, 24, 0.28) 0%, rgba(18, 17, 24, 0.18) 35%, rgba(18, 17, 24, 0.78) 100%),
    linear-gradient(90deg, rgba(165, 117, 183, 0.18), rgba(229, 45, 39, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 6vw, 72px);
  padding-bottom: clamp(40px, 8vh, 80px);
  max-width: 760px;
}

.brand-wordmark {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  opacity: 0;
  animation: rise 0.9s ease forwards 0.15s;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 14ch;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.35s;
}

.lede {
  margin: 16px 0 0;
  max-width: 36ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
  opacity: 0;
  animation: rise 0.9s ease forwards 0.5s;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.65s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: white;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(229, 45, 39, 0.28);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 18px 8px 14px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.store-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-btn small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.store-btn-light {
  background: var(--ink);
}

.store-btn.is-recommended {
  outline: 2px solid var(--purple);
  box-shadow: 0 0 0 4px rgba(165, 117, 183, 0.25);
}

.download {
  background:
    linear-gradient(180deg, rgba(165, 117, 183, 0.08), transparent 50%),
    var(--paper);
}

.download-inner {
  text-align: left;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.download-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 1.4em;
}

.section {
  padding: clamp(64px, 10vw, 112px) clamp(20px, 4vw, 48px);
}

.section-inner,
.hosts-copy {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section h2,
.hosts-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 14ch;
}

.section-lede {
  margin: 16px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  padding-top: 18px;
  border-top: 2px solid transparent;
  border-image: var(--gradient) 1;
}

.step-index {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

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

.hosts {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
}

.hosts-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
}

.hosts-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hosts-copy .section-lede {
  margin-bottom: 28px;
}

.site-footer {
  padding: 48px clamp(20px, 4vw, 48px) 28px;
  border-top: 1px solid rgba(18, 17, 24, 0.08);
  background: #0f0e13;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 36px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}

.legal {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

@keyframes drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

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

@media (max-width: 900px) {
  .steps,
  .hosts {
    grid-template-columns: 1fr;
  }

  .hosts-media,
  .hosts-image {
    min-height: 280px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-image {
    transform: none;
  }
}
