@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;1,600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --olive:        #6B7D3C;
  --olive-dark:   #556B2F;
  --olive-light:  #F1F4E8;
  --olive-mid:    #8FAE4A;
  --graphite:     #6B7280;
  --graphite-light: #F4F4F1;
  --gold:         #E5A530;
  --bg:           #F8F7F4;
  --surface:      #FFFFFF;
  --dark:         #121315;
  --dark-soft:    #1E2023;
  --text-primary: #1A1C1E;
  --text-secondary: #6B7280;
  --text-muted:   #9CA3AF;
  --border:       rgba(0,0,0,0.08);
  --border-mid:   rgba(0,0,0,0.12);
  --error:        #EA998B;
  --error-bg:     #FBEAE7;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --radius-xl:    16px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img { height: 28px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links li { flex-shrink: 0; }

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

.nav-account {
  position: relative;
}

.nav-account-toggle {
  display: inline-block;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
  padding: 0;
}

.nav-account-toggle:hover { color: var(--text-primary); }

.nav-account-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px;
  z-index: 110;
}

.nav-account-menu.open { display: block; }

.nav-account-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 4px 8px 0;
}

.nav-account-email {
  font-size: 12px;
  color: var(--text-muted);
  word-break: break-all;
  padding: 2px 8px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.nav-account-logout {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
}

.nav-account-logout:hover { background: var(--olive-light); color: var(--olive-dark); }

.nav-cart-link {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-cart-link:hover { color: var(--olive); }

.nav-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--surface);
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--surface) !important;
  background: var(--olive);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: var(--olive-dark) !important; color: var(--surface) !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,125,60,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--olive);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--olive);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--olive);
  color: var(--surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, transform 0.15s;
}

.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
  transition: border-color 0.15s, transform 0.15s;
}

.btn-secondary:hover { border-color: var(--olive); color: var(--olive); transform: translateY(-1px); }

.appstore-badge { height: 44px; width: auto; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--dark);
  border-radius: 40px;
  border: 8px solid var(--dark-soft);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px; height: 28px;
  background: var(--dark);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  z-index: 2;
  flex-shrink: 0;
}

.phone-screen {
  flex: 1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-topbar {
  height: 44px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid var(--border);
  padding: 0 16px;
}

.phone-logo-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.phone-content {
  flex: 1;
  padding: 12px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}

.phone-card {
  border-radius: 6px;
  background: var(--graphite-light);
  overflow: hidden;
}

.phone-card:nth-child(1) { height: 160px; }
.phone-card:nth-child(2) { height: 120px; margin-top: 20px; }
.phone-card:nth-child(3) { height: 100px; }
.phone-card:nth-child(4) { height: 140px; }

.phone-card-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--graphite-light) 100%);
  opacity: 0.8;
}

.phone-card:nth-child(2) .phone-card-inner {
  background: linear-gradient(135deg, #E8EDD4 0%, var(--olive-light) 100%);
}
.phone-card:nth-child(3) .phone-card-inner {
  background: linear-gradient(135deg, var(--graphite-light) 0%, #E8EDD4 100%);
}
.phone-card:nth-child(4) .phone-card-inner {
  background: linear-gradient(135deg, var(--olive-light) 0%, #F0EDE8 100%);
}

.hero-float-badge {
  position: absolute;
  bottom: 60px;
  right: -24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-badge-icon {
  width: 36px; height: 36px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-float-badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-float-badge-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Under Construction ────────────────────────────────────────────────────── */
.construction {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 112px 24px 28px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.construction::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,125,60,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.construction-inner {
  position: relative;
  max-width: 560px;
}

.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.construction-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.construction-title em {
  font-style: italic;
  color: var(--olive);
}

.construction-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.stats {
  background: var(--dark);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item {
  background: var(--dark);
  padding: 40px 48px;
  text-align: center;
}

.stat-value {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--surface);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value span { color: var(--olive-mid); }

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 64px 0;
  background: var(--bg);
}

.section-header {
  margin-bottom: 56px;
}

.section-header .label { margin-bottom: 16px; }
.section-header .section-title { margin-bottom: 16px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.step-card {
  background: var(--surface);
  padding: 32px 40px;
  position: relative;
}

.steps-grid-2 { grid-template-columns: repeat(2, 1fr); }

.step-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--olive-light);
}

.step-icon {
  width: 52px; height: 52px;
  background: var(--olive-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── For Creators / For Brands ─────────────────────────────────────────────── */
.audience-section {
  padding: 64px 0;
}

.audience-section.brands { background: var(--dark); }
.audience-section.creators { background: var(--olive-light); }

.audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-inner.reverse { direction: rtl; }
.audience-inner.reverse > * { direction: ltr; }

.audience-content .label { margin-bottom: 16px; }
.audience-content .label.light { color: var(--olive-mid); }

.audience-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.audience-title.light { color: var(--surface); }

.audience-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.audience-desc.light { color: rgba(255,255,255,0.6); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list.light li { color: rgba(255,255,255,0.65); }

.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--olive-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%236B7D3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feature-list.light li::before {
  background-color: rgba(143,174,74,0.15);
}

.audience-visual {
  position: relative;
}

.audience-card-stack {
  position: relative;
  height: 400px;
}

.audience-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.audience-card.dark-card {
  background: var(--dark-soft);
  border-color: rgba(255,255,255,0.06);
}

.audience-card.card-1 { width: 260px; top: 0; left: 40px; }
.audience-card.card-2 { width: 220px; top: 80px; right: 0; }
.audience-card.card-3 { width: 200px; bottom: 40px; left: 0; }

.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.card-tag.olive { background: var(--olive-light); color: var(--olive-dark); }
.card-tag.gold { background: rgba(229,165,48,0.15); color: #92660E; }
.card-tag.dark { background: rgba(143,174,74,0.12); color: var(--olive-mid); }

.card-stat-value {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.dark-card .card-stat-value { color: var(--surface); }

.card-stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.dark-card .card-stat-label { color: rgba(255,255,255,0.35); }

.card-bar-row {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}

.card-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--olive-light);
  flex: 1;
}

.card-bar.filled { background: var(--olive); }

/* ── App Download Banner ────────────────────────────────────────────────────── */
.download-banner {
  padding: 64px 0;
  background: var(--bg);
  text-align: center;
}

.download-banner .label { margin-bottom: 16px; }
.download-banner .section-title { margin-bottom: 16px; }
.download-banner .section-subtitle { margin: 0 auto 40px; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── Inner Page ─────────────────────────────────────────────────────────────── */
.inner-hero {
  padding: 96px 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.inner-hero .label { margin-bottom: 16px; }

.inner-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.inner-hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
}

.inner-content {
  padding: 40px 0 64px;
  max-width: 720px;
}

.inner-content h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin: 48px 0 12px;
  color: var(--text-primary);
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.inner-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.inner-content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
}

.inner-hero .eyebrow-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: -8px;
}

.inner-content h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  margin: 24px 0 8px;
  color: var(--text-primary);
}

.inner-content h2:first-of-type,
.inner-content h3:first-child { margin-top: 0; }

.inner-content strong { color: var(--text-primary); font-weight: 600; }

.inner-content a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.inner-content a:hover { color: var(--olive-dark); }

.legal-callout {
  font-style: italic;
  background: var(--olive-light);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
}

.legal-box {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 16px 20px;
  margin: 12px 0 16px;
}

.legal-box-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 10px;
}

.legal-box p,
.legal-box div { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; }
.legal-box p:last-child,
.legal-box div:last-child { margin-bottom: 0; }

.legal-emphasis {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-primary);
  background: var(--graphite-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 16px 0;
  line-height: 1.7;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-mid);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.legal-table thead th {
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table td small { color: var(--text-muted); }

.legal-note {
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ── Auth (Sign Up / Log In / Confirm / Forgot Password) ──────────────────── */
.auth-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  background: var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 32px;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-logo img { height: 32px; width: auto; }

.auth-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-field { display: flex; flex-direction: column; gap: 6px; }

.auth-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.auth-input {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--graphite-light);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.auth-input::placeholder { color: var(--text-muted); }

.auth-input:focus {
  background: var(--surface);
  border-color: var(--olive);
}

.auth-input.has-error { border-color: var(--error); }

.auth-password-wrap { position: relative; }

.auth-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.auth-password-toggle:hover { color: var(--olive); }

.auth-helper {
  font-size: 12px;
  color: var(--text-muted);
  text-wrap: pretty;
}

.auth-strength {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.auth-strength-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.auth-strength-check.met { color: var(--olive-dark); }

.auth-strength-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-mid);
  flex-shrink: 0;
}

.auth-strength-check.met .auth-strength-dot { background: var(--olive); }

.auth-button {
  width: 100%;
  background: var(--olive);
  color: var(--surface);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.auth-button:hover:not(:disabled) { background: var(--olive-dark); }

.auth-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-button-secondary {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
}

.auth-button-secondary:hover:not(:disabled) {
  border-color: var(--olive);
  color: var(--olive);
  background: transparent;
}

.auth-error-banner {
  display: none;
  background: var(--error-bg);
  color: #8A3A2E;
  font-size: 13px;
  line-height: 1.6;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.auth-error-banner.visible { display: block; }

.auth-success-banner {
  display: none;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 13px;
  line-height: 1.6;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.auth-success-banner.visible { display: block; }

.auth-byline {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 20px;
  text-align: justify;
  text-align-last: left;
}

.auth-byline a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.auth-byline a[href="terms.html"],
.auth-byline a[href="privacy-policy.html"] { white-space: nowrap; }
.auth-byline a:hover { color: var(--olive-dark); }

.auth-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 24px;
}

.auth-footer a { color: var(--olive); font-weight: 600; }
.auth-footer a:hover { color: var(--olive-dark); }

.auth-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: -4px;
}

.auth-links-row a { color: var(--olive); font-weight: 500; }
.auth-links-row a:hover { color: var(--olive-dark); }

.auth-step { display: none; }
.auth-step.active { display: flex; flex-direction: column; gap: 16px; }

/* Honeypot: kept in layout/visible to basic bots, hidden from real users & screen readers */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Cart ──────────────────────────────────────────────────────────────────── */
.cart-section {
  padding: 120px 0 64px;
  background: var(--bg);
  min-height: calc(100vh - 64px);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.cart-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.cart-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.cart-panel-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 16px;
}

/* Address picker */
.cart-address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-address-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.cart-address-option:hover { border-color: var(--olive); }
.cart-address-option.selected { border-color: var(--olive); background: var(--olive-light); }

.cart-address-option input { margin-top: 3px; accent-color: var(--olive); }

.cart-address-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.cart-address-text strong { display: block; color: var(--text-primary); font-weight: 600; }

.cart-address-empty {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Address summary row (in the order summary panel, above Checkout) */
.cart-address-summary-row {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cart-address-summary-row strong { display: block; color: var(--text-primary); font-weight: 600; margin-bottom: 4px; }

.cart-address-share-note {
  font-size: 11px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Payment method toggle */
.cart-payment-toggle {
  display: flex;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.cart-payment-option {
  flex: 1;
  background: var(--surface);
  border: none;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.cart-payment-option:first-child { border-right: 1px solid var(--border-mid); }

.cart-payment-option.selected {
  background: var(--olive);
  color: var(--surface);
}

.cart-address-change-link {
  display: inline-block;
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--olive);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart-address-change-link:hover { color: var(--olive-dark); }

/* Address modal */
.cart-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.cart-modal-overlay.open { display: flex; }

.cart-modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
}

.cart-modal-close:hover { color: var(--text-primary); }

/* Brand / outfit grouping */
.cart-brand-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
}

.cart-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--graphite-light);
}

.cart-brand-header input { accent-color: var(--olive); }

.cart-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-brand-subtotal {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-secondary);
}

.cart-fulfillment-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.cart-fulfillment-choice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
}

.cart-fulfillment-choice input { accent-color: var(--olive); }

.cart-shipping-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

.cart-shipping-note.tbd { color: var(--olive-dark); font-weight: 600; }
.cart-shipping-note.undeliverable { color: var(--error); font-weight: 600; }

.cart-pickup-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 14px;
}

.cart-pickup-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.cart-outfit-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--olive-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.cart-item-row:last-child { border-bottom: none; }

.cart-item-row input[type="checkbox"] { accent-color: var(--olive); flex-shrink: 0; }

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--graphite-light);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-item-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.cart-item-chip {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--graphite-light);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-item-price .cart-item-price-original {
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-qty-button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: var(--text-primary);
}

.cart-qty-button:hover { border-color: var(--olive); color: var(--olive); }

.cart-qty-value { font-size: 13px; min-width: 18px; text-align: center; }

.cart-remove-button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.cart-remove-button:hover { color: var(--error); }

/* Order summary */
.cart-summary-brand-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 6px;
}

.cart-summary-divider {
  border-top: 1px solid var(--border);
  margin: 4px 0 12px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.cart-summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-summary-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

#checkoutButton { margin-top: 8px; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .audience-inner,
  .audience-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }

  .hero-visual { order: -1; }
  .hero-phone-mockup { width: 220px; height: 440px; }
  .hero-float-badge { right: 0; bottom: 20px; }

  .cart-layout { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid { border-radius: var(--radius-lg); }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 24px 16px;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 0; }
  .nav-links li:not(:last-child) a { border-bottom: 1px solid var(--border); }
  .nav-links .nav-cta { display: flex; justify-content: center; width: 100%; margin-top: 12px; box-sizing: border-box; }

  .nav-mobile-toggle { display: flex; }

  .audience-card-stack {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .audience-card,
  .audience-card.card-1,
  .audience-card.card-2,
  .audience-card.card-3 {
    position: static;
    width: 100%;
    top: auto; right: auto; bottom: auto; left: auto;
  }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 72px; }
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .how-it-works, .audience-section, .download-banner { padding: 48px 0; }
  .auth-card { padding: 32px 24px; }
  .cart-section { padding: 96px 0 48px; }
  .cart-item-row { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Stack the fee schedule table into cards instead of horizontal-scrolling it */
  .legal-table-wrap { overflow-x: visible; border: none; }

  .legal-table, .legal-table thead, .legal-table tbody, .legal-table th, .legal-table td, .legal-table tr {
    display: block;
    width: 100%;
  }

  .legal-table thead { position: absolute; left: -9999px; }

  .legal-table tr {
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    padding: 4px 0;
  }

  .legal-table tr:last-child { margin-bottom: 0; }

  .legal-table td {
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
  }

  .legal-table tr td:last-child { border-bottom: none; }

  .legal-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--olive-dark);
    margin-bottom: 4px;
  }
}
