:root {
  --black: #0a0a0a;
  --white: #fafaf7;
  --paper: #f3f1ec;
  --ink: #161616;
  --accent: #2d2d2d;         /* charcoal — distinguishable from --ink body on cream */
  --accent-2: #25f4ee;       /* cyan */
  --accent-3: #ff3b8e;       /* pink */
  --accent-4: #00c46a;       /* green */
  --line: rgba(10,10,10,0.12);
  --soft: rgba(10,10,10,0.04);
}

.storefront-section,
.how-section,
.feature-large,
.philosophy,
footer {
  --accent: var(--paper);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
body {
  font-family: 'Geist', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02';
  -webkit-font-smoothing: antialiased;
  padding-top: 76px;
}

/* --- Grain overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 247, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link[href="/login"] {
  margin-left: 56px;
}
.nav-link[href="/login"]::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: var(--line);
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--accent); }

/* Hamburger (mobile only) */
.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  margin-left: 4px;
}
.nav-burger span {
  position: absolute;
  left: 8px;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-burger span:nth-child(1) { top: 12px; }
.nav-burger span:nth-child(2) { top: 17px; }
.nav-burger span:nth-child(3) { top: 22px; }
.nav.menu-open .nav-burger span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Mobile dropdown panel */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 12px 20px 22px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav.menu-open .nav-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s;
}
.nav-menu a:last-child { border-bottom: none; }
.nav-menu a:hover { opacity: 0.6; }
.nav-menu a em { font-style: italic; color: var(--accent); }

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

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Eyebrow (consolidated from .storefront-label, .benefits-eyebrow,
   .showcase-eyebrow, .manifesto-eyebrow, .philosophy-eyebrow, .how-eyebrow,
   .apply-eyebrow). Keep .creator-eyebrow (pill) and .brand-eyebrow (line)
   as separate variants — they have distinct visual treatments. --- */
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.6;
}
.eyebrow.on-dark { color: var(--white); opacity: 1; }
.eyebrow.is-accent { color: var(--accent); opacity: 1; }
.eyebrow.is-accent2 { color: var(--accent-2); opacity: 1; }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.btn-primary, .btn-secondary {
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-arrow {
  transition: transform 0.3s;
}
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Floating ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--white);
}
.ticker-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 64px;
}
.ticker-item::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--ink);
  transform: rotate(45deg);
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Single-card brand redirect strip (bottom of creator page) */
.brand-redirect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.brand-redirect-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.brand-redirect-title em {
  font-style: italic;
  font-weight: 400;
}

/* =================== CREATOR PAGE =================== */
.creator-hero {
  padding: 80px 40px 60px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
/* Creator-hero reuses brand-hero's .hero-blobs/.hero-blob system, with these
   position overrides: pink top-right, cyan bottom-left, purple bottom-right. */
.creator-hero .hero-blob.pink {
  top: -10%; right: -10%; bottom: auto; left: auto;
  width: 600px; height: 600px;
  animation-duration: 8s;
}
.creator-hero .hero-blob.cyan {
  bottom: -15%; left: -15%; top: auto; right: auto;
  width: 520px; height: 520px;
}
.creator-hero .hero-blob.purple {
  bottom: -10%; right: -10%; top: auto; left: auto;
  width: 460px; height: 460px;
  animation: float 11s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.creator-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
}
.creator-eyebrow .live-dot {
  width: 8px; height: 8px;
  background: var(--accent-4);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.creator-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(60px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.creator-hero h1 .word {
  display: inline-block;
  overflow: hidden;
}
.creator-hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.creator-hero h1 .colored {
  color: var(--accent);
}
.creator-hero-sub {
  max-width: 600px;
  font-size: 22px;
  line-height: 1.4;
  opacity: 0.75;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

/* Storefront demo */
.storefront-section {
  padding: 120px 40px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.storefront-section::before {
  content: 'IMPRESSION STOREFRONT  IMPRESSION STOREFRONT  IMPRESSION STOREFRONT  ';
  position: absolute;
  top: 30px;
  left: 0;
  width: 200%;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 200px;
  font-weight: 300;
  opacity: 0.04;
  white-space: nowrap;
  animation: scrollSlow 60s linear infinite;
  pointer-events: none;
}
@keyframes scrollSlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.storefront-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}
.storefront-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.storefront-title em { font-style: italic; color: var(--accent); }
.storefront-desc {
  font-size: 18px;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.demo-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
}
.demo-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
}
.demo-step:hover { transform: translateY(-6px); border-color: var(--accent); }
.demo-step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}
.demo-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.demo-step p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Step 1: socials */
.demo-socials {
  background: var(--paper);
  border-radius: 16px;
  padding: 22px;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  overflow: hidden;
}
.demo-tile {
  border-radius: 22%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.6s cubic-bezier(.2,.7,.2,1) backwards;
}
.demo-tile svg, .demo-tile img { width: 56%; height: 56%; object-fit: contain; }
.demo-tile:nth-child(1) { animation-delay: 0s; }
.demo-tile:nth-child(2) { animation-delay: 0.1s; }
.demo-tile:nth-child(3) { animation-delay: 0.2s; }
.demo-tile:nth-child(4) { animation-delay: 0.3s; }
.demo-tile:nth-child(5) { animation-delay: 0.4s; }
.demo-tile:nth-child(6) { animation-delay: 0.5s; }
.demo-tile:nth-child(7) { animation-delay: 0.6s; }
.demo-tile:nth-child(8) { animation-delay: 0.7s; }
.demo-tile:nth-child(9) { animation-delay: 0.8s; }
.demo-tile-instagram { background: transparent; }
.demo-tile-instagram img { width: 100%; height: 100%; }
.demo-tile-tiktok { background: #000; color: #fff; }
.demo-tile-youtube { background: #ff0000; color: #fff; }
.demo-tile-pinterest { background: #e60023; color: #fff; }
.demo-tile-snapchat { background: #fffc00; }
.demo-tile-snapchat img { width: 100%; height: 100%; }
.demo-tile-twitch { background: #9146ff; color: #fff; }
.demo-tile-bluesky { background: #0085ff; color: #fff; }
.demo-tile-x { background: #000; color: #fff; }
.demo-tile-substack { background: #ff6719; color: #fff; }
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Step 2: AI parse */
.demo-ai {
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 20px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.demo-ai-pills {
  height: calc(100% - 22px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}
.demo-ai-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--paper);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  margin: 3px 3px 0 0;
  border: 1px solid var(--line);
  animation: slideIn 0.5s cubic-bezier(.2,.7,.2,1) backwards;
}
.demo-ai-pill.pink   { background: #ff3b8e; color: #fff; border-color: #ff3b8e; }
.demo-ai-pill.purple { background: #8b3fff; color: #fff; border-color: #8b3fff; }
.demo-ai-pill.cyan   { background: #25f4ee; color: #003a3a; border-color: #25f4ee; }
.demo-ai-pill.orange { background: #ff7a3f; color: #fff; border-color: #ff7a3f; }
.demo-ai-pill.yellow { background: #ffd84d; color: #161616; border-color: #ffd84d; }
.demo-ai-pill.green  { background: #00c46a; color: #fff; border-color: #00c46a; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.demo-ai-pulse {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  z-index: 2;
}
.demo-ai-pulse-dot {
  width: 8px; height: 8px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

/* Step 3: storefront */
.demo-store {
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.demo-store-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.demo-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #d8d6d0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12c2.7 0 4.9-2.2 4.9-4.9S14.7 2.2 12 2.2 7.1 4.4 7.1 7.1 9.3 12 12 12zm0 2.4c-3.3 0-9.8 1.6-9.8 4.9V22h19.6v-2.7c0-3.3-6.5-4.9-9.8-4.9z'/%3E%3C/svg%3E") center/70% no-repeat;
}
.demo-store-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
}
.demo-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}
.demo-product {
  background: var(--paper);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  animation: slideUp 0.6s cubic-bezier(.2,.7,.2,1) backwards;
}
.demo-product:nth-child(1) { animation-delay: 0.1s; }
.demo-product:nth-child(2) { animation-delay: 0.2s; }
.demo-product:nth-child(3) { animation-delay: 0.3s; }
.demo-product:nth-child(4) { animation-delay: 0.4s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.demo-product::after {
  content: '$' attr(data-price);
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  font-family: 'Geist Mono', monospace;
}

.demo-arrow {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--accent);
  animation: arrowBob 2s ease-in-out infinite;
}
@keyframes arrowBob {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Benefits grid */
.benefits {
  padding: 120px 40px;
  background: var(--white);
}
.benefits-header {
  max-width: 1400px;
  margin: 0 auto 80px;
}
.benefits-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 1000px;
}
.benefits-title em { font-style: italic; color: var(--accent); }

.benefits-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.benefit:hover { background: var(--paper); }
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 32px;
}
.benefit h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.benefit p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.7;
}

/* Showcase — creator storefronts */
.showcase {
  padding: 96px 40px;
  background: var(--paper);
}
.showcase-header {
  max-width: 1400px;
  margin: 0 auto 56px;
}
.showcase-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 900px;
}
.showcase-title em { font-style: italic; color: var(--accent); }
.showcase-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.showcase-grid:has(.shop-card:only-of-type) {
  max-width: 520px;
  grid-template-columns: 1fr;
}
.spotlight {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.spotlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -32px rgba(10, 10, 10, 0.22);
}
.spotlight-image {
  position: relative;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.spotlight-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(10, 10, 10, 0.4);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.spotlight-meta {
  padding: 32px 36px 36px;
}
.shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(10, 10, 10, 0.18);
}
.shop-preview {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.shop-preview-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 10, 10, 0.35);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.shop-meta {
  padding: 24px 24px 28px;
}
.shop-handle {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.55;
  margin-bottom: 8px;
}
.shop-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.shop-tag {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.65;
}

/* Manifesto */
.manifesto {
  padding: 96px 40px;
  background: var(--ink);
  color: var(--white);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.manifesto-headline em {
  font-style: italic;
  font-weight: 400;
}
.manifesto-inner p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto 12px;
  opacity: 0.72;
}
.manifesto-inner p:last-of-type {
  margin-bottom: 0;
}
.manifesto-inner p.manifesto-signoff {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  opacity: 1;
}

/* Apply form */
.apply {
  padding: 140px 40px;
  background: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.08;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}
.apply h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  position: relative;
}
.apply h2 em { font-style: italic; color: var(--accent); }
.apply-sub {
  font-size: 19px;
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.5;
  position: relative;
}
.apply-cta-wrap {
  display: flex;
  justify-content: center;
}
.apply-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  position: relative;
  flex-wrap: wrap;
}
.apply-perks span::before { content: '✓ '; color: var(--accent-4); }

/* Apply modal */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.apply-modal.open { display: flex; }
.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: applyFade 0.25s ease;
}
.apply-modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.35);
  animation: applyRise 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.apply-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  opacity: 0.55;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}
.apply-modal-close:hover { opacity: 1; background: var(--soft); }
.apply-modal-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
}
.apply-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.apply-modal-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.apply-modal-sub {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.65;
  margin-bottom: 24px;
}
.apply-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.apply-modal-form.is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.apply-modal-form.is-grid .is-full { grid-column: 1 / -1; }
.apply-modal-form.is-grid textarea { min-height: 88px; }
.apply-modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apply-modal-form label > span {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.apply-modal-form input,
.apply-modal-form select,
.apply-modal-form textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.apply-modal-form input:focus,
.apply-modal-form select:focus,
.apply-modal-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.apply-modal-form textarea { min-height: 84px; line-height: 1.45; }
.apply-modal-submit {
  margin-top: 6px;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.apply-modal-submit:hover { background: var(--accent); transform: translateY(-1px); }
.apply-modal-submit[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.apply-modal-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.apply-modal-error {
  display: none;
  grid-column: 1 / -1;
  font-size: 13px;
  color: #b3261e;
  margin-top: 4px;
}
.apply-modal-error.show { display: block; }
.apply-modal-success {
  display: none;
  text-align: center;
  padding: 16px 0 4px;
}
.apply-modal-success.show { display: block; animation: applyFade 0.4s ease; }
.apply-modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.apply-modal-success p { font-size: 14px; opacity: 0.7; }
.apply-modal-check {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.apply-modal-check svg { display: block; }
.apply-modal-check-circle {
  stroke: var(--accent);
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: checkCircle 0.5s ease forwards;
}
.apply-modal-check-path {
  stroke: var(--accent);
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkPath 0.35s 0.4s ease forwards;
}
@keyframes checkCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes checkPath {
  to { stroke-dashoffset: 0; }
}
@keyframes applyFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes applyRise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .apply-modal-card { padding: 32px 22px 24px; border-radius: 16px; }
  .apply-modal-title { font-size: 26px; }
  .apply-modal-form.is-grid { grid-template-columns: 1fr; }
}

/* =================== BRAND PAGE =================== */
.brand-hero {
  padding: 80px 40px 60px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.brand-hero-content { position: relative; z-index: 2; }
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob.pink {
  top: -12%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #fe2c55 0%, transparent 70%);
  opacity: 0.22;
  animation: float 8s ease-in-out infinite;
}
.hero-blob.cyan {
  bottom: -16%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #25f4ee 0%, transparent 70%);
  opacity: 0.26;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-blob.purple {
  top: 42%;
  right: 15%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  opacity: 0.22;
  animation: float-alt 12s ease-in-out infinite;
}
@keyframes float-alt {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.08); }
}
.brand-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--ink);
}
.brand-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.brand-hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.brand-hero h1 .underline {
  position: relative;
  display: inline-block;
}
.brand-hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}
.brand-hero-sub {
  font-size: 19px;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 540px;
  margin-bottom: 40px;
}

/* Stats */
.brand-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}
.stat {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  opacity: 0.6;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Creator showcase visual */
.brand-visual {
  position: relative;
  height: 600px;
  z-index: 2;
}
.creator-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.creator-card:hover { transform: translateY(-4px) scale(1.02); }
.creator-card .ca {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.creator-card .cn {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}
.creator-card .ch {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  opacity: 0.6;
}
.creator-card .cs {
  margin-left: auto;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--accent-4);
  font-weight: 600;
}
.creator-card.c1 {
  top: 0; left: 20%;
  animation: floatCard 6s ease-in-out infinite;
}
.creator-card.c2 {
  top: 25%; right: 0;
  animation: floatCard 6s ease-in-out infinite 1s;
}
.creator-card.c3 {
  top: 50%; left: 0;
  animation: floatCard 6s ease-in-out infinite 2s;
}
.creator-card.c4 {
  top: 70%; right: 10%;
  animation: floatCard 6s ease-in-out infinite 3s;
}
.creator-card.c5 {
  bottom: 0; left: 30%;
  animation: floatCard 6s ease-in-out infinite 4s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.c1 .ca { background-image: url('https://images.unsplash.com/photo-1565793244233-3d09028aad47?w=200&h=200&fit=crop&crop=faces&auto=format&q=70'); }
.c2 .ca { background-image: url('https://images.unsplash.com/photo-1619950472726-f9478a604339?w=200&h=200&fit=crop&crop=faces&auto=format&q=70'); }
.c3 .ca { background-image: url('https://images.unsplash.com/photo-1656417670990-cf239b816e7a?w=200&h=200&fit=crop&crop=faces&auto=format&q=70'); }
.c4 .ca { background-image: url('https://images.unsplash.com/photo-1558306055-7a2dbf8877cd?w=200&h=200&fit=crop&crop=faces&auto=format&q=70'); }
.c5 .ca { background-image: url('https://images.unsplash.com/photo-1683924214569-aba017b912f5?w=200&h=200&fit=crop&crop=faces&auto=format&q=70'); }

/* How it works (brand) */
.how-section {
  padding: 120px 40px;
  background: var(--ink);
  color: var(--white);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 900px;
}
.how-title em { font-style: italic; color: var(--accent); }

.how-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-step {
  padding: 32px 0;
  border-top: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.3s;
}
.how-step:hover { border-top-color: var(--accent); }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}
.how-num em { font-style: italic; color: var(--accent); }
.how-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.how-step p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
}

/* Features grid (brand) */
.features {
  padding: 120px 40px;
  background: var(--white);
}
.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.feature-large, .feature-small {
  background: var(--paper);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.feature-large:hover, .feature-small:hover { transform: translateY(-4px); }
.feature-large {
  grid-row: span 2;
  background: var(--ink);
  color: var(--white);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}
.feature-large .feature-tag {
  color: var(--ink);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 100px;
}
.feature-large .feature-tag .live-dot {
  width: 8px; height: 8px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.feature-large h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.feature-large h3 em { font-style: italic; color: var(--accent); }
.feature-large p {
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.8;
  max-width: 480px;
}
.feature-small h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.feature-small p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
}

/* Mock dashboard inside feature-large */
.mock-dash {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mock-row:last-child { border: none; }
.mock-creator { display: flex; align-items: center; gap: 10px; }
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.mock-row .up { color: var(--accent-4); }
.mock-row .num { font-weight: 600; }

/* Philosophy */
.philosophy {
  padding: 96px 40px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.philosophy-lead {
  margin-bottom: 28px;
}
.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.philosophy-headline em {
  font-style: italic;
  font-weight: 400;
}
.philosophy-body p {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.72;
  margin: 0 auto 12px;
}
.philosophy-body p:last-child { margin-bottom: 0; }
.philosophy-body p.philosophy-close {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  opacity: 1;
  color: var(--white);
}

/* Demo form */
.demo-cta {
  padding: 140px 40px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.demo-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
}
.demo-cta-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.demo-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.demo-cta h2 em { font-style: italic; color: var(--accent); }
.demo-cta-sub {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.demo-perks {
  list-style: none;
}
.demo-perks li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.demo-perks li::before {
  content: '→';
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
  font-size: 24px;
  font-style: italic;
}

.demo-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}
.demo-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.demo-form-sub {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 24px;
}
.form-row {
  margin-bottom: 16px;
}
.form-row label {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}
.form-row input, .form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus, .form-row select:focus {
  border-color: var(--accent);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.demo-form button {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}
.demo-form button:hover { background: var(--accent); }

.demo-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.demo-success.show { display: block; }
.demo-success-icon {
  width: 60px; height: 60px;
  background: var(--accent-4);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  animation: pop 0.5s cubic-bezier(.2,.7,.2,1);
}
.demo-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

/* --- Footer --- */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 56px 40px 28px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.footer-logo em { font-style: italic; color: var(--accent); }
.footer-tag {
  font-size: 14px;
  opacity: 0.6;
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}
.footer-col a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
}
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.5;
  font-family: 'Geist Mono', monospace;
}

/* --- Mobile --- */
@media (max-width: 900px) {
  html { scroll-padding-top: 69px; }
  body { padding-top: 69px; }
  .nav { padding: 16px 20px; }
  .nav-links { gap: 12px; }
  .nav-link { display: none; }
  .nav-link.always { display: inline-block; }
  .nav-burger { display: inline-block; }
  .nav-menu { display: flex; }
  .creator-hero, .brand-hero, .apply, .demo-cta, .storefront-section, .benefits, .how-section, .features, .manifesto, .philosophy, .showcase { padding-left: 20px; padding-right: 20px; }
  .showcase { padding-top: 64px; padding-bottom: 64px; }
  .showcase-header { margin-bottom: 32px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 20px; }
  .philosophy { padding-top: 64px; padding-bottom: 64px; }
  .philosophy-lead { margin-bottom: 20px; }
  .philosophy-body p { font-size: 15px; line-height: 1.5; margin-bottom: 10px; }
  .philosophy-body p.philosophy-close { font-size: 19px; margin-top: 14px; }
  .philosophy-pull { font-size: 20px; }
  .manifesto { padding-top: 64px; padding-bottom: 64px; }
  .manifesto-headline { margin-bottom: 16px; }
  .manifesto-inner p { font-size: 15px; line-height: 1.5; margin-bottom: 10px; }
  .manifesto-inner p.manifesto-signoff { font-size: 19px; margin-top: 14px; }
  .brand-redirect { padding: 44px 20px; }
  .demo-flow { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .brand-hero { grid-template-columns: 1fr; }
  .brand-visual { height: 500px; margin-top: 32px; }
  .hero-blob.pink { top: auto; bottom: 18%; right: auto; left: 30%; }
  .hero-blob.purple { top: auto; bottom: 8%; right: 5%; }
  .hero-blob.cyan { bottom: -6%; left: -15%; }
  /* Creator-hero: push blobs to bottom of section on mobile so they don't fight the headline. */
  .creator-hero .hero-blob.pink {
    top: auto; right: -22%; bottom: -22%; left: auto;
    width: 360px; height: 360px;
  }
  .creator-hero .hero-blob.cyan {
    top: auto; left: -22%; bottom: -22%; right: auto;
    width: 360px; height: 360px;
  }
  .creator-hero .hero-blob.purple {
    top: auto; left: 25%; bottom: -28%; right: auto;
    width: 320px; height: 320px;
  }
  .brand-stats { gap: 24px; flex-wrap: wrap; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-row: auto; min-height: auto; }
  .demo-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-logo { font-size: clamp(40px, 12vw, 64px); }
  .footer-bottom { flex-direction: column-reverse; gap: 14px; align-items: center; text-align: center; padding-top: 28px; line-height: 1.5; opacity: 1; }
  .footer-bottom > span:first-child { opacity: 0.4; }
  .footer-bottom > span:last-child { opacity: 0.75; }
  .form-row-2 { grid-template-columns: 1fr; }
  .legal-page { padding: 48px 20px 96px; }
}

/* =================== LEGAL PAGE =================== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.legal-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-meta::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.legal-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
}
.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 80px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-page h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-page h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 56px;
  margin-bottom: 20px;
}
.legal-page h4 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.legal-page p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ink);
  opacity: 0.85;
}
.legal-page p strong {
  font-weight: 600;
  opacity: 1;
}
.legal-page .last-revised {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* =================== Accessibility =================== */

/* Reveal-on-scroll relies on JS (IntersectionObserver). Reset to visible when
   the user prefers reduced motion so content never stays hidden. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =================== AUTH PAGES (login, reset) =================== */
.auth-page {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 120px;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.06;
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
  pointer-events: none;
}
.auth-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 40px 36px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.18);
}
.auth-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
}
.auth-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.auth-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.auth-sub {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.65;
  margin-bottom: 28px;
}
.auth-error {
  display: none;
  background: var(--soft);
  border-left: 3px solid var(--accent-3);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
}
.auth-error.show { display: block; animation: applyFade 0.25s ease; }
.auth-error strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.auth-error span { opacity: 0.7; }
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-form label > span {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.auth-form input {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.auth-submit {
  margin-top: 10px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.auth-submit:hover { transform: translateY(-1px); background: var(--accent); }
.auth-submit span { transition: transform 0.2s; }
.auth-submit:hover span { transform: translateX(3px); }
.auth-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  opacity: 0.75;
}
.auth-meta a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: border-color 0.2s, opacity 0.2s;
}
.auth-meta a:hover { border-color: var(--ink); }
@media (max-width: 600px) {
  .auth-card { padding: 36px 24px 28px; border-radius: 16px; }
  .auth-page { padding: 56px 16px 80px; }
}

/* =================== LANGUAGE SWITCHER =================== */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}
.lang-toggle:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
}
.lang-globe {
  display: block;
  opacity: 0.75;
}
.lang-current {
  letter-spacing: 0.04em;
  font-family: 'Geist', 'Inter', sans-serif;
}
.lang-caret {
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.2s;
}
.lang-switcher.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 1px;
  z-index: 1100;
}
.lang-switcher.open .lang-menu { display: flex; }
.lang-menu button {
  background: none;
  border: none;
  text-align: left;
  padding: 9px 14px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.lang-menu button:hover { background: var(--paper); }
.lang-menu button.active {
  background: var(--paper-deep);
  font-weight: 500;
}
@media (max-width: 900px) {
  .lang-toggle { padding: 6px 10px; font-size: 11px; }
  .lang-menu { right: -4px; min-width: 156px; }
}
/* RTL/long-language label safety */
html[lang^="ja"] .lang-current,
html[lang^="ko"] .lang-current,
html[lang^="zh"] .lang-current,
html[lang^="th"] .lang-current {
  font-family: inherit;
  letter-spacing: 0;
}
