:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #111114;
  --line: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.52);
  --gold: #d8c28c;
  --red: #a91d24;
  --sage: #8fa49d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  font-size: 17px;
  letter-spacing: 0.1px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 30px);
  min-width: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

nav a:hover {
  color: var(--text);
}

.account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.account-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.account-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(22px, 6vw, 88px) 34px;
  isolation: isolate;
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  background: #000;
}

.hero-media img {
  object-fit: cover;
  object-position: center 42%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28) 58%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.76) 15%, transparent 46%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 32%);
}

.hero-copy {
  width: min(900px, 100%);
  padding-bottom: clamp(48px, 11vh, 106px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(48px, 8.5vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.28;
  font-weight: 520;
}

.hero-note {
  max-width: 660px;
  margin: -12px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.9px;
}

.button.primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.button.secondary {
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-strip {
  position: absolute;
  left: clamp(22px, 6vw, 88px);
  right: clamp(22px, 6vw, 88px);
  bottom: 18px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.hero-strip::-webkit-scrollbar {
  display: none;
}

.hero-strip span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
}

.intro,
.experience-section,
.how-section,
.formats,
.vision {
  padding: clamp(70px, 10vw, 116px) clamp(22px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 8vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy,
.formats > div:first-child + .format-list {
  color: var(--muted);
}

.intro-copy {
  margin: 38px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.intro-copy p {
  margin-bottom: 16px;
}

.intro-copy p:nth-child(3) {
  color: #fff;
  font-weight: 850;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-lede {
  max-width: 920px;
  margin: -4px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 40px;
}

.process-heading h2 {
  font-size: clamp(38px, 5.2vw, 72px);
}

.process-heading .section-lede {
  max-width: 780px;
  margin: 0;
}

.experience-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 270px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scroll-snap-type: x mandatory;
}

.experience-card {
  display: block;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.experience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #000;
}

.experience-card div {
  min-height: 132px;
  padding: 16px;
}

.experience-card p {
  margin-bottom: 9px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: 0;
}

.experience-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.experience-card.text-card {
  min-height: 100%;
  display: flex;
  align-items: end;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(216, 194, 140, 0.14),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(169, 29, 36, 0.22), transparent 48%),
    #0d0d10;
}

.experience-card.text-card div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
}

.how-section {
  background: #0c0c0e;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.steps.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  min-height: 300px;
  padding: clamp(24px, 4vw, 36px);
  background: #0c0c0e;
}

.steps span {
  display: block;
  margin-bottom: 56px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
}

.steps h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.formats {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: clamp(34px, 7vw, 90px);
}

.formats-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.format-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.format-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 820;
}

.vision {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 7vw, 90px);
  background:
    linear-gradient(120deg, rgba(169, 29, 36, 0.14), transparent 36%),
    #0c0c0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-copy {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.vision-copy p {
  margin-bottom: 18px;
}

.vision-copy .closing-line {
  margin: 28px 0;
  color: #fff;
  font-weight: 900;
}

.page-main {
  min-height: 100vh;
  padding-top: 72px;
}

.page-hero {
  padding: clamp(86px, 12vw, 150px) clamp(22px, 6vw, 88px)
    clamp(56px, 8vw, 96px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, rgba(169, 29, 36, 0.18), transparent 36%),
    radial-gradient(
      circle at 82% 20%,
      rgba(216, 194, 140, 0.1),
      transparent 28%
    ),
    #050505;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 7vw, 92px);
}

.page-hero.narrow-page {
  max-width: none;
}

.page-hero.narrow-page > * {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
}

.page-hero.narrow-page h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
}

.page-hero.narrow-page .hero-subtitle {
  max-width: 860px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.38;
}

.split-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.narrow-page {
  max-width: 1120px;
}

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

.store-button {
  min-width: 190px;
  min-height: 64px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.store-button span {
  font-size: 11px;
  font-weight: 780;
  color: rgba(0, 0, 0, 0.64);
}

.store-button strong {
  font-size: 22px;
  line-height: 1;
}

.store-button.unavailable {
  cursor: not-allowed;
  opacity: 0.88;
}

.waitlist-form {
  max-width: 620px;
  margin-top: 30px;
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.waitlist-form > div {
  display: flex;
  gap: 10px;
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
  font: inherit;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.waitlist-form button {
  height: 54px;
  padding: 0 20px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

#waitlist-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

#waitlist-status[data-state='success'] {
  color: #b6ccc5;
}

#waitlist-status[data-state='error'] {
  color: #ffb1b1;
}

.creator-apply {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 104px) clamp(22px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.creator-apply h2 {
  margin-bottom: 18px;
}

.creator-apply p {
  color: var(--muted);
  line-height: 1.6;
}

.creator-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.creator-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.creator-form input,
.creator-form select,
.creator-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.creator-form input,
.creator-form select {
  height: 52px;
  padding: 0 14px;
}

.creator-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

.creator-form input::placeholder,
.creator-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.creator-form button {
  min-height: 54px;
  margin-top: 6px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.creator-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

#creator-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

#creator-status[data-state='success'] {
  color: #b6ccc5;
}

#creator-status[data-state='error'] {
  color: #ffb1b1;
}

.form-consent {
  margin: 8px 0 0;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.app-card {
  justify-self: end;
  width: min(100%, 420px);
}

.app-card img {
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: 22%;
}

.creator-card {
  justify-self: end;
  width: min(100%, 360px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0b0b0d;
}

.creator-card p,
.creator-card span {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.creator-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 0.92;
  letter-spacing: -1px;
}

.creator-card span {
  display: block;
  margin-top: 28px;
  line-height: 1.45;
}

.creator-prose {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 104px) clamp(22px, 6vw, 88px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-prose h2 {
  max-width: 860px;
  margin-bottom: clamp(24px, 4vw, 42px);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.creator-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
}

.creator-copy-grid p,
.creator-note {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.58;
}

.creator-copy-grid p {
  margin-bottom: 18px;
}

.creator-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 820px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.creator-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 820;
}

.download-panel,
.content-grid,
.legal-content {
  padding: clamp(62px, 9vw, 104px) clamp(22px, 6vw, 88px);
}

.download-panel h2 {
  margin-bottom: 28px;
}

.steps.compact article {
  min-height: 240px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  padding-top: 1px;
  padding-bottom: 1px;
}

.info-panel {
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  background: #0b0b0d;
}

.info-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 48px);
}

.info-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.last-updated {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 760;
}

.legal-content {
  max-width: 980px;
}

.legal-content article {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.2vw, 38px);
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content a {
  color: #fff;
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.seo-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 104px) clamp(22px, 6vw, 88px);
}

.seo-content article {
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.seo-content h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.seo-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.seo-content p,
.seo-content li {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.seo-content a {
  color: #fff;
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 18px;
  border-left: 2px solid rgba(216, 194, 140, 0.52);
}

.seo-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin: 34px 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
}

.seo-stats span {
  min-height: 86px;
  padding: 18px;
  background: rgba(10, 10, 12, 0.86);
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
}

.seo-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 920;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.seo-card-grid section {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  background: #0b0b0d;
}

.seo-card-grid .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
}

.seo-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.faq-list details {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 850;
  line-height: 1.32;
}

.faq-list details p {
  margin: 14px 0 0;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 420px);
  gap: clamp(32px, 6vw, 82px);
  align-items: end;
  padding: clamp(96px, 13vw, 160px) clamp(22px, 6vw, 88px)
    clamp(56px, 8vw, 92px);
  background:
    linear-gradient(120deg, rgba(169, 29, 36, 0.16), transparent 38%),
    radial-gradient(
      circle at 78% 22%,
      rgba(216, 194, 140, 0.12),
      transparent 30%
    ),
    #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story-hero-copy {
  max-width: 760px;
}

.story-hero img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-grid article {
  min-height: 150px;
  padding: 22px;
  background: #0b0b0d;
  border: 0;
}

.meta-grid p {
  margin: 0;
}

.legal-note {
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 194, 140, 0.28);
  border-radius: 8px;
  background: rgba(216, 194, 140, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

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

footer img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

footer p {
  margin: 0;
  font-weight: 850;
  color: var(--text);
}

footer span {
  display: block;
  margin-top: 3px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .header-actions nav {
    display: none;
  }

  .hero {
    min-height: 91vh;
    padding-top: 96px;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.3)),
      linear-gradient(
        0deg,
        #050505 0%,
        rgba(5, 5, 5, 0.82) 20%,
        transparent 55%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 34%);
  }

  .intro,
  .formats,
  .vision,
  .split-page,
  .content-grid,
  .creator-apply,
  .creator-copy-grid,
  .story-hero,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .seo-stats,
  .seo-card-grid,
  .seo-story-grid {
    grid-template-columns: 1fr;
  }

  .seo-card-grid section {
    min-height: auto;
  }

  .creator-list {
    grid-template-columns: 1fr;
  }

  .app-card {
    justify-self: start;
    width: min(100%, 380px);
  }

  .creator-card {
    justify-self: start;
    width: min(100%, 280px);
  }

  footer {
    display: grid;
    justify-content: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .intro-copy {
    margin-top: 0;
  }

  .section-heading {
    display: block;
  }

  .process-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .steps article {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding-bottom: 76px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .waitlist-form > div {
    display: grid;
  }

  .waitlist-form button {
    width: 100%;
  }

  .experience-row {
    grid-auto-columns: minmax(172px, 68vw);
  }
}
