/* ============================================================
   USAY — Design Tokens
   ============================================================ */
:root {
  --ink: #071a22;
  --ink-soft: #0d2a35;
  --brand: #0b5566;
  --brand-deep: #043044;
  --section-dark: #ece3d5;
  --section-ink: #dfcfb9;
  --brand-mist: #e4eef0;
  --paper: #faf7f2;
  --paper-deep: #f1ebe1;
  --header-bg: #efe7dc;
  --line: rgba(7, 26, 34, 0.12);
  --line-on-dark: rgba(101, 87, 73, 0.22);
  --text: #17262a;
  --muted: #5b6b6e;
  --muted-on-dark: #655749;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: min(1280px, 92vw);
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: var(--container); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Type
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(40px, 6vw, 78px); line-height: 1.04; font-weight: 400; color: #fff; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12; }
h2.on-dark { color: #fff; }
h3 { font-size: 22px; line-height: 1.3; }
.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 20px 0 0;
}
.lede.on-dark { color: #dce7e6; }
.soft { color: var(--muted); line-height: 1.85; font-size: 16px; max-width: 48ch; margin: 16px 0 0; }
.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 16px;
}
.kicker-on-dark { color: #e6cfa8; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-deep); color: #fff; }
.btn-primary:hover { background: var(--brand); }
.btn-ghost { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-nav { border-color: var(--line); color: var(--text); background: transparent; height: 44px; padding: 0 20px; font-size: 14px; }
.btn-nav:hover { background: var(--paper-deep); }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce { background: var(--brand-deep); color: #fff; }
.announce-inner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 10px 0; font-size: 13px; text-align: center; flex-wrap: wrap;
}
.announce-inner p { margin: 0; color: #cfe4df; }
.announce-inner a { color: #fff; font-weight: 600; text-decoration: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(239, 231, 220, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-on-dark);
  transition: background 0.4s var(--ease);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 26px; width: auto; }
.main-nav { align-self: stretch; display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.25s; }
.main-nav a:hover { color: var(--ink); }
.nav-item { align-self: stretch; display: flex; align-items: center; }
.nav-link-mega { display: inline-flex; align-items: center; }
.nav-link-mega::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  margin-left: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: 0.7;
}
.mega-panel {
  position: absolute; top: 100%; left: 0; right: 0; width: 100%;
  background: var(--header-bg); border-top: 1px solid var(--line-on-dark);
  box-shadow: 0 28px 56px rgba(60, 45, 25, 0.16);
  opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.mega-panel-inner {
  display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 56px; padding: 44px 0 52px; align-items: start;
}
.mega-heading {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 600;
  color: var(--muted-on-dark); margin: 0 0 14px;
}
.mega-links { display: flex; flex-direction: column; }
.mega-links a {
  padding: 13px 0; font-size: 17px; font-family: var(--font-display);
  color: var(--ink-soft); border-bottom: 1px solid var(--line-on-dark);
}
.mega-links a:first-of-type { padding-top: 0; }
.mega-links a:hover { color: var(--ink); }
.mega-media { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 18px; }
.mega-media img { border-radius: var(--radius-md); width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; }
.mega-media-card { position: relative; overflow: hidden; border-radius: var(--radius-md); color: #fff; text-decoration: none; aspect-ratio: 4 / 5; isolation: isolate; }
.mega-media-card img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; transition: transform 0.6s var(--ease); }
.mega-media-card:hover img, .mega-media-card:focus-visible img { transform: scale(1.04); }
.mega-media-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 16, 22, 0.04) 34%, rgba(3, 16, 22, 0.8) 100%); }
.mega-media-card-copy { position: absolute; inset: auto 18px 17px; z-index: 1; display: grid; gap: 5px; }
.mega-media-card-copy strong { font-family: var(--font-display); font-size: 20px; font-weight: 400; line-height: 1.1; }
.mega-media-card-copy > span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.86); }
.mega-media-card-copy b { margin-left: 4px; font-size: 16px; font-weight: 400; }
.mega-feature-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 54px; padding: 30px 0 34px; align-items: center; }
.mega-feature-card {
  position: relative; min-height: 300px; overflow: hidden; border-radius: var(--radius-md);
  color: #fff; text-decoration: none; isolation: isolate;
}
.mega-feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mega-feature-card:hover img, .mega-feature-card:focus-visible img { transform: scale(1.04); }
.mega-feature-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 16, 22, 0.1), rgba(3, 16, 22, 0.82)); }
.mega-feature-copy { position: absolute; inset: auto 26px 24px; display: grid; gap: 7px; z-index: 1; }
.mega-feature-kicker { color: #dfcfb9; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.mega-feature-copy strong { font-family: var(--font-display); font-size: clamp(25px, 2.1vw, 34px); font-weight: 400; line-height: 1.08; }
.mega-feature-copy > span:not(.mega-feature-kicker):not(.mega-feature-arrow) { max-width: 39ch; color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.55; }
.mega-feature-arrow { margin-top: 6px; font-size: 13px; font-weight: 600; }
.mega-feature-arrow b { font-size: 17px; font-weight: 400; margin-left: 5px; }
.mega-feature-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 38px; }
.mega-feature-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 74px;
  color: var(--ink-soft); text-decoration: none; font-family: var(--font-display); font-size: 20px;
  border-bottom: 1px solid var(--line-on-dark); transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.mega-feature-links a:hover, .mega-feature-links a:focus-visible { color: var(--brand-deep); padding-left: 5px; }
.mega-feature-links b { color: var(--brand); font-family: var(--font-body); font-size: 18px; font-weight: 400; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.site-header .btn-nav { border-color: var(--line-on-dark); color: var(--ink); }
.site-header .btn-nav:hover { background: rgba(7, 26, 34, 0.06); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 12px var(--container) 24px;
  background: var(--header-bg);
}
.mobile-nav a { color: var(--ink-soft); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line-on-dark); font-size: 15px; }
.mobile-nav .btn { margin-top: 14px; }
.site-header.nav-open .mobile-nav { display: flex; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,20,26,.35) 0%, rgba(4,20,26,.28) 40%, rgba(3,15,20,.86) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 0 0 96px; }
.hero-lead {
  margin: 22px 0 0; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.75;
  color: rgba(255,255,255,0.86); max-width: 54ch;
}
.hero-cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 0; padding: 0; }
.hero-meta li {
  border: 1px solid rgba(255,255,255,0.35); border-radius: 999px;
  padding: 8px 16px; font-size: 12px; letter-spacing: 0.04em; color: #eef6f4;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 1; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; border-radius: 999px;
  background: #fff; transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { 0% { top: 8px; opacity: 1; } 70% { top: 22px; opacity: 0; } 100% { top: 22px; opacity: 0; } }

/* ============================================================
   Sections — shared rhythm
   ============================================================ */
.section { padding: 120px 0; }
.section-alt { background: var(--paper-deep); }
.section-dark { background: var(--section-dark); color: var(--text); }
.section-ink { background: var(--section-ink); color: var(--text); }
.section-dark h2.on-dark, .section-ink h2.on-dark { color: var(--ink); }
.section-dark .lede.on-dark, .section-ink .lede.on-dark { color: var(--ink-soft); }
.section-dark .kicker-on-dark, .section-ink .kicker-on-dark { color: var(--brand); }
.section-dark .feature-list-on-dark li, .section-ink .feature-list-on-dark li {
  color: var(--ink-soft); border-bottom-color: var(--line-on-dark);
}
.section-dark .feature-list-on-dark li::before, .section-ink .feature-list-on-dark li::before { background: var(--brand); }

/* Split layout: copy + single large image */
.split-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
.split-media-right .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); width: 100%; height: auto; }
.split-copy h2 { max-width: 14ch; }

/* Lights section */
.lights-section { position: relative; }
.lights-section h2 { max-width: 20ch; }
.lights-grid {
  margin-top: 64px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px;
}
.light-card-media {
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  background: #050f14; margin-bottom: 22px;
}
.light-card-media img { width: 100%; height: 100%; object-fit: cover; }
.light-card-tag { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; color: var(--brand); font-weight: 600; margin: 0 0 8px; }
.light-card h3 { color: var(--ink); margin-bottom: 8px; }
.light-card p { color: var(--muted-on-dark); line-height: 1.75; margin: 0; max-width: 34ch; }

/* App section */
.app-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 0; }
.feature-list li {
  padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink-soft);
  position: relative; padding-left: 26px;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 22px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--brand);
}
.feature-list-on-dark li { color: rgba(255,255,255,0.86); border-bottom-color: rgba(255,255,255,0.14); }
.feature-list-on-dark li::before { background: #e6cfa8; }
.app-media { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
.app-media-main img { border-radius: var(--radius-lg); width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.app-media-stack { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.app-media-stack img { border-radius: var(--radius-md); width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }

/* Everyday gallery — horizontal editorial strip */
.everyday-heading { margin-bottom: 40px; }
.gallery-carousel { position: relative; }
.gallery-controls { position: absolute; inset: 50% 20px auto; z-index: 3; display: contents; }
.gallery-control {
  position: absolute; top: 50%; z-index: 3; width: 52px; height: 52px; border: 1px solid rgba(7, 26, 34, 0.12); border-radius: 50%; background: rgba(255,255,255,0.95);
  color: var(--ink); cursor: pointer; font-family: var(--font-display); font-size: 34px; line-height: 1; box-shadow: 0 8px 22px rgba(7, 26, 34, 0.14);
  transform: translateY(-50%); transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.gallery-control[data-gallery-direction="previous"] { left: clamp(10px, 2vw, 32px); }
.gallery-control[data-gallery-direction="next"] { right: clamp(10px, 2vw, 32px); }
.gallery-control:hover:not(:disabled), .gallery-control:focus-visible:not(:disabled) { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; box-shadow: 0 10px 26px rgba(4, 48, 68, 0.26); }
.gallery-control:disabled { cursor: default; opacity: 0.34; }
.gallery-strip {
  display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none;
  padding: 4px max(34px, calc((100vw - min(1440px, 96vw)) / 2)) 20px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-item {
  margin: 0; flex: 0 0 auto; width: clamp(260px, 21vw, 330px); scroll-snap-align: start;
}
.gallery-card { position: relative; display: block; overflow: hidden; border-radius: var(--radius-md); color: #fff; text-decoration: none; aspect-ratio: 1.15 / 1; isolation: isolate; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 16, 22, 0.04) 25%, rgba(3, 16, 22, 0.82) 100%); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.05); }
.gallery-card-copy { position: absolute; inset: auto 24px 22px; z-index: 1; display: grid; gap: 7px; }
.gallery-card-copy span { color: #dfcfb9; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.gallery-card-copy strong { font-family: var(--font-display); font-size: 27px; font-weight: 400; line-height: 1.12; }
.gallery-card-copy em { margin-top: 5px; font-size: 13px; font-style: normal; font-weight: 600; }
.gallery-card-copy b { margin-left: 5px; font-size: 17px; font-weight: 400; }

/* Insights */
.insights-section h2 { max-width: 22ch; }
.insights-grid {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px;
}
.insight-card { display: block; text-decoration: none; color: inherit; }
.insight-card-media {
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  background: var(--paper-deep); margin-bottom: 18px;
}
.insight-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insight-card:hover .insight-card-media img { transform: scale(1.04); }
.insight-card-tag { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--brand); font-weight: 600; margin: 0 0 8px; }
.insight-card h3 { font-size: 20px; margin-bottom: 8px; }
.insight-card p { color: var(--muted); line-height: 1.7; margin: 0; }

/* Awards */
.awards-section { text-align: center; }
.awards-section h2 { margin: 0 auto; max-width: 20ch; }
.awards-section .kicker { display: block; }
.awards-row {
  margin-top: 56px; display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; filter: grayscale(1); opacity: 0.75;
}
.awards-row img { height: 64px; width: auto; object-fit: contain; }

/* Creator */
.creator-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.creator-grid h2 { max-width: 16ch; }
.creator-copy .btn { margin-top: 34px; }
.creator-media { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 18px; }
.creator-media img:first-child { margin-top: 40px; }
.creator-media img { border-radius: var(--radius-lg); width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }
.creator-intro-band { overflow: hidden; }
.creator-intro-grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.94fr); gap: 9vw; align-items: center; }
.creator-intro-copy h2 { max-width: 12ch; }
.creator-collage { position: relative; min-height: 570px; padding: 0 15% 0 0; }
.creator-collage img { object-fit: cover; box-shadow: 0 22px 44px rgba(43, 31, 18, 0.16); }
.creator-collage-main { width: min(78%, 460px); height: 540px; border-radius: var(--radius-lg); }
.creator-collage-small { position: absolute; right: 0; bottom: 10px; width: min(46%, 260px); height: 285px; border: 10px solid var(--paper); border-radius: var(--radius-md); }
.creator-collage-note { position: absolute; right: 4%; top: 50px; max-width: 15ch; color: var(--brand-deep); font-family: var(--font-display); font-size: clamp(22px, 2.3vw, 34px); font-style: italic; line-height: 1.08; }
.creator-statement { text-align: center; }
.creator-statement-inner { max-width: 880px; }
.creator-statement h2 { max-width: 18ch; margin: 0 auto; }
.creator-statement .lede { margin-inline: auto; }

/* Support */
.support-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.support-card {
  display: block; text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px 26px; background: #fff;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.support-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.support-card h3 { margin-bottom: 10px; color: var(--ink); }
.support-card p { color: var(--muted); line-height: 1.75; margin: 0; }

/* Early access */
.early-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.early-form { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }
.early-form input {
  flex: 1 1 220px; height: 54px; border-radius: 999px; border: 1px solid var(--line-on-dark);
  background: rgba(255,255,255,0.55); padding: 0 22px; color: var(--text); font-size: 15px; font-family: var(--font-body);
}
.early-form input::placeholder { color: var(--muted-on-dark); opacity: 0.7; }
.early-form input:focus { outline: 2px solid var(--brand); outline-offset: 2px; }
.early-form-note { width: 100%; margin: 4px 0 0; font-size: 13px; color: var(--brand); min-height: 18px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--section-ink); color: var(--ink-soft); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-on-dark); }
.footer-brand img { height: 22px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted-on-dark); max-width: 32ch; line-height: 1.7; margin: 0; }
.footer-col h3.footer-heading { color: var(--ink); font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted-on-dark); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { padding-top: 24px; font-size: 13px; color: var(--muted-on-dark); }

/* ============================================================
   Sub-pages — FAQ / Sizing / Shipping / Creator
   ============================================================ */
.page-hero { padding: 100px 0 72px; }
.page-hero-alt { background: var(--paper-deep); }
.page-title { font-size: clamp(36px, 5vw, 58px); line-height: 1.06; margin: 0; color: var(--ink); }
.page-title.on-dark { color: #fff; }
.page-hero .lede { margin-top: 18px; }

/* How It Works */
.how-page-hero { position: relative; min-height: min(760px, 78vh); display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.how-page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.how-page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 20, 25, 0.7) 0%, rgba(5, 20, 25, 0.28) 55%, rgba(5, 20, 25, 0.04) 100%); }
.how-page-hero-copy { position: relative; z-index: 1; padding: 0 0 92px; }
.how-page-hero-copy h1 { max-width: 13ch; }
.how-page-hero-copy .btn { margin-top: 30px; }
.how-intro-grid { display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.9fr); gap: 64px; align-items: start; }
.how-intro-grid h2 { max-width: 14ch; }
.how-story-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.55fr); gap: 11vw; align-items: center; }
.how-story-grid-reverse { grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.82fr); }
.how-story-grid-reverse .how-story-copy { order: 2; }
.how-story-grid-reverse .how-story-media { order: 1; }
.how-story-copy h2 { max-width: 12ch; }
.how-story-media { overflow: hidden; border-radius: var(--radius-lg); }
.how-story-media-tall { max-width: 520px; justify-self: end; }
.how-story-grid-reverse .how-story-media-tall { justify-self: start; }
.how-story-media img { width: 100%; height: 100%; object-fit: cover; }
.how-story-media-tall img { aspect-ratio: 2 / 3; }
.how-light-heading { display: grid; grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.86fr); column-gap: 64px; align-items: start; }
.how-light-heading .kicker { grid-row: span 2; }
.how-light-heading h2 { max-width: 15ch; }
.how-light-heading .lede { margin-top: 18px; }
.how-light-media { margin-top: 58px; overflow: hidden; border-radius: var(--radius-lg); }
.how-light-media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.how-verification-note { max-width: 64ch; margin: 18px 0 0 auto; color: rgba(255,255,255,0.62); font-size: 12px; line-height: 1.65; }
.how-app-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr); gap: 64px; align-items: center; }
.how-app-media { overflow: hidden; border-radius: var(--radius-lg); }
.how-app-media img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.how-app-copy h2 { max-width: 12ch; }
.how-app-copy .btn { margin-top: 30px; }

/* Meet UU */
.uu-page-hero { position: relative; min-height: min(760px, 78vh); display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.uu-page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.uu-page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 23, 33, 0.74) 0%, rgba(3, 23, 33, 0.28) 54%, rgba(3, 23, 33, 0.02) 100%); }
.uu-page-hero-copy { position: relative; z-index: 1; padding: 0 0 92px; }
.uu-page-hero-copy h1 { max-width: 12ch; }
.uu-page-hero-copy .btn, .uu-understanding-copy .btn, .uu-close .btn { margin-top: 30px; }
.uu-intro-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.72fr); gap: 74px; align-items: end; }
.uu-intro-grid h2 { max-width: 13ch; }
.uu-intro-grid .lede { margin: 0; }
.uu-rhythm-grid, .uu-understanding-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.uu-rhythm-copy h2, .uu-circle-copy h2, .uu-understanding-copy h2 { max-width: 13ch; }
.uu-rhythm-media, .uu-circle-media, .uu-understanding-media, .uu-close-media { overflow: hidden; border-radius: var(--radius-lg); }
.uu-rhythm-media img, .uu-circle-media img, .uu-understanding-media img, .uu-close-media img { width: 100%; height: 100%; object-fit: cover; }
.uu-rhythm-media img { aspect-ratio: 16 / 10; }
.uu-circle-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr); gap: 72px; align-items: center; }
.uu-circle-media img { aspect-ratio: 4 / 3; }
.uu-day-heading { display: grid; grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.9fr); gap: 64px; align-items: end; }
.uu-day-heading h2 { max-width: 13ch; }
.uu-day-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 0.7fr)); gap: 20px; margin-top: 54px; }
.uu-day-card { min-height: 330px; border-radius: var(--radius-md); overflow: hidden; }
.uu-day-card img { width: 100%; height: 100%; object-fit: cover; }
.uu-day-card:first-child { position: relative; }
.uu-day-card:first-child::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(3, 18, 25, 0.8)); }
.uu-day-card:first-child p { position: absolute; z-index: 1; inset: auto 24px 22px; margin: 0; color: #fff; font-family: var(--font-display); font-size: 24px; line-height: 1.2; }
.uu-day-note { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 26px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); }
.uu-day-note h3 { color: #fff; margin: 0 0 12px; }
.uu-day-note p { color: rgba(255,255,255,0.72); line-height: 1.7; margin: 0; }
.uu-day-note a { margin-top: 20px; color: #dfcfb9; font-size: 13px; font-weight: 600; text-decoration: none; }
.uu-day-note b { margin-left: 5px; font-size: 17px; font-weight: 400; }
.uu-understanding-media img { aspect-ratio: 16 / 10; }
.uu-close-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr); gap: 70px; align-items: center; }
.uu-close-media img { aspect-ratio: 16 / 10; }
.uu-close h2 { max-width: 12ch; }

/* FAQ */
.faq-section { padding-top: 20px; }
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px 26px; background: #fff;
}
.faq-item summary {
  cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 19px;
  color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: 0 0 auto; font-family: var(--font-body); font-size: 22px; font-weight: 400;
  color: var(--brand); transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); line-height: 1.8; margin: 16px 0 0; }
.faq-cta-inner, .sizing-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* Sizing steps */
.sizing-steps { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.sizing-step-media {
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  background: var(--paper); margin-bottom: 22px; display: flex; align-items: center; justify-content: center;
}
.sizing-step-media img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.sizing-step .light-card-tag { color: var(--brand); }
.sizing-step h3 { margin-bottom: 8px; }
.sizing-step p { color: var(--muted); line-height: 1.75; margin: 0; }

/* Policy grid (Shipping & Returns) */
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.policy-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; }
.policy-card h3 { margin-bottom: 12px; }
.policy-card p { color: var(--muted); line-height: 1.8; margin: 0; }

/* Creator page */
.creator-hero { position: relative; padding: 0; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.creator-hero-media { position: absolute; inset: 0; z-index: 0; }
.creator-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.creator-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,20,26,.35) 0%, rgba(4,20,26,.28) 40%, rgba(3,15,20,.86) 100%);
}
.creator-hero-inner { position: relative; z-index: 1; padding: 0 0 88px; }
.creator-hero-inner .btn { margin-top: 30px; }
.creator-perks-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.creator-perk-media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; margin-bottom: 20px; }
.creator-perk-media img { width: 100%; height: 100%; object-fit: cover; }
.creator-perk h3 { margin-bottom: 8px; }
.creator-perk p { color: var(--muted); line-height: 1.75; margin: 0; }
.creator-who .split-media img { aspect-ratio: 3/4; object-fit: cover; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  .hero-video { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .split-grid, .app-grid, .early-grid, .creator-grid { grid-template-columns: 1fr; }
  .creator-intro-grid { grid-template-columns: 1fr; gap: 46px; }
  .how-intro-grid, .how-story-grid, .how-story-grid-reverse, .how-light-heading, .how-app-grid { grid-template-columns: 1fr; gap: 32px; }
  .uu-intro-grid, .uu-rhythm-grid, .uu-circle-grid, .uu-understanding-grid, .uu-close-grid { grid-template-columns: 1fr; gap: 32px; }
  .uu-day-heading { grid-template-columns: 1fr; gap: 16px; }
  .uu-day-grid { grid-template-columns: 1fr 1fr; }
  .uu-day-card:first-child { grid-column: 1 / -1; min-height: 420px; }
  .how-story-grid-reverse .how-story-copy, .how-story-grid-reverse .how-story-media { order: initial; }
  .how-story-media-tall, .how-story-grid-reverse .how-story-media-tall { max-width: 640px; justify-self: start; }
  .how-light-heading .kicker { grid-row: auto; }
  .split-media-right .split-media { order: -1; }
  .app-media { grid-template-columns: 1fr; }
  .app-media-stack { grid-template-columns: 1fr 1fr; }
  .lights-grid, .support-grid, .insights-grid, .sizing-steps, .policy-grid, .creator-perks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .hero { min-height: 100vh; }
  .how-page-hero { min-height: 680px; align-items: flex-end; }
  .how-page-hero > img { object-position: 58% center; }
  .how-page-hero-copy { padding-bottom: 62px; }
  .how-page-hero-copy h1 { max-width: 11ch; }
  .how-story-media-tall img { aspect-ratio: 4 / 5; }
  .uu-page-hero { min-height: 680px; }
  .uu-page-hero > img { object-position: 60% center; }
  .uu-page-hero-copy { padding-bottom: 62px; }
  .uu-page-hero-copy h1 { max-width: 10ch; }
  .uu-day-grid { grid-template-columns: 1fr; }
  .uu-day-card:first-child { grid-column: auto; min-height: 330px; }
  .announce-inner { font-size: 12px; }
  .gallery-control { width: 44px; height: 44px; font-size: 30px; }
  .gallery-control[data-gallery-direction="previous"] { left: 8px; }
  .gallery-control[data-gallery-direction="next"] { right: 8px; }
  .gallery-strip { padding-inline: 24px; }
  .gallery-item { width: min(78vw, 330px); }
  .gallery-card { aspect-ratio: 1 / 1; }
  .mega-feature-grid { grid-template-columns: 1fr; gap: 22px; }
  .mega-feature-card { min-height: 240px; }
  .mega-feature-links { grid-template-columns: 1fr; }
  .app-media-stack { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .creator-media img:first-child { margin-top: 0; }
  .creator-collage { min-height: 460px; padding-right: 10%; }
  .creator-collage-main { height: 430px; }
  .creator-collage-small { width: 47%; height: 220px; border-width: 7px; }
  .creator-collage-note { top: 24px; right: 2%; font-size: 24px; }
}

/* Creator Stories is intentionally visible but unavailable until genuine stories are approved. */
.mega-link-static { display: grid; gap: 3px; padding: 13px 0; font-size: 17px; font-family: var(--font-display); color: var(--muted-on-dark); border-bottom: 1px solid var(--line-on-dark); cursor: default; }
.mega-link-static em { font-family: var(--font-body); font-size: 11px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.mega-link-static + * { }
.mega-media-card-static { cursor: default; }
.mega-media-card-static img { transition: none; }
