/* ============================================================
   ZenPogo Sports — main.css
   ============================================================ */

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ----------------------------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------------------------- */
.text-gold {
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-fire {
  background: var(--g-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--g-fire);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,69,0,0.35);
}
.btn--primary:hover { box-shadow: 0 8px 30px rgba(255,69,0,0.5); }

.btn--ghost {
  background: transparent;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border-bright);
  font-size: 0.85rem;
}
.btn--ghost:hover { color: var(--c-text); border-color: var(--c-gold); }

/* ----------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay  { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   CURSOR SANCTUARY OVERLAY
   ---------------------------------------------------------- */
#cursorSanctuary {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}
#sanctuaryCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#sanctuaryAura {
  position: absolute;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(127,181,211,0.7) 0%,
    rgba(91,157,191,0.45) 20%,
    rgba(58,120,161,0.22) 45%,
    rgba(58,120,161,0.08) 65%,
    rgba(58,120,161,0) 80%
  );
  mix-blend-mode: screen;
  filter: blur(8px);
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
#sanctuaryRing {
  position: absolute;
  top: 0; left: 0;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1.5px solid rgba(168,207,227,0.55);
  box-shadow:
    0 0 60px rgba(91,157,191,0.35),
    0 0 120px rgba(91,157,191,0.2),
    inset 0 0 60px rgba(91,157,191,0.25);
  will-change: transform, opacity;
  opacity: 0;
}
#sanctuarySplit {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 400px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(255,107,53,0.8) 30%,
    rgba(255,214,138,0.9) 50%,
    rgba(127,181,211,0.8) 70%,
    transparent
  );
  filter: blur(0.5px);
  transform-origin: center;
  will-change: transform, opacity;
  opacity: 0;
}

/* ----------------------------------------------------------
   HERO ENTRANCE ANIMATION
   ---------------------------------------------------------- */
.hero-enter {
  opacity: 0;
  transform: translateY(24px);
}
.hero-enter--active {
  animation: heroIn 0.9s var(--ease-out-expo) forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav--scrolled {
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.nav__logo-wordmark span { color: var(--c-gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--c-text); }

/* Product-level tabs in the nav */
.nav__product-link {
  font-weight: 600 !important;
  color: var(--c-text) !important;
  position: relative;
  padding-bottom: 2px;
}
.nav__product-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--g-fire);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s var(--ease-out-expo);
}
.nav__product-link:hover::after,
.nav__product-link--active::after { transform: scaleX(1); }
.nav__product-link--active { color: var(--c-text) !important; }

/* Thin vertical divider between product tabs and section links */
.nav__divider {
  width: 1px;
  height: 16px;
  background: var(--c-border-bright);
  align-self: center;
}

/* Sub-nav for product pages (Bowl, etc.) */
.nav__subnav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--c-border);
}
.nav__subnav a {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: var(--c-text-faint) !important;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav__subnav a:hover { color: var(--c-text-muted) !important; }
.nav__subnav a.active { color: var(--c-gold) !important; }

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Radial glow at bottom to ground the embers */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse at bottom, rgba(255,69,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Right-side calm wash */
.hero__calm-wash {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(58,120,161,0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* Sphere wrap — contains the ring + blended logo */
.hero__sphere-wrap {
  position: relative;
  width: clamp(320px, 55vw, 600px);
  margin: 0 auto 2rem;
}

/* Chaos/calm split ring behind the logo */
.chaos-calm-ring {
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 35vw, 420px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}
.chaos-calm-ring__fire {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(255,69,0,0.55) 30deg,
    rgba(255,179,0,0.7) 70deg,
    rgba(255,107,53,0.5) 110deg,
    rgba(255,69,0,0.2) 150deg,
    transparent 190deg,
    transparent 360deg
  );
  filter: blur(18px);
  animation: rotateCW 18s linear infinite;
  mix-blend-mode: screen;
}
.chaos-calm-ring__calm {
  position: absolute; inset: 10%; border-radius: 50%;
  background: conic-gradient(from 180deg,
    transparent 0deg,
    rgba(58,120,161,0.55) 30deg,
    rgba(127,181,211,0.7) 70deg,
    rgba(91,157,191,0.5) 110deg,
    rgba(58,120,161,0.2) 150deg,
    transparent 190deg,
    transparent 360deg
  );
  filter: blur(20px);
  animation: rotateCCW 24s linear infinite;
  mix-blend-mode: screen;
}
.chaos-calm-ring__gold {
  position: absolute; inset: 30%; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.22) 0%, rgba(245,166,35,0) 70%);
  animation: pulseGlow 6s ease-in-out infinite;
}
.chaos-calm-ring__split {
  position: absolute; top: -6%; bottom: -6%; left: 50%; width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(255,214,138,0.45) 30%,
    rgba(255,214,138,0.65) 50%,
    rgba(91,157,191,0.45) 70%,
    transparent
  );
  transform: translateX(-50%) rotate(8deg);
  filter: blur(0.5px);
  animation: shimmer 4s ease-in-out infinite;
}

/* Logo — faded edges via mask so dark PNG background disappears */
.hero__sphere-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 78% 92% at 50% 46%,
    black 50%,
    rgba(0,0,0,0.7) 68%,
    rgba(0,0,0,0.15) 86%,
    transparent 98%
  );
  mask-image: radial-gradient(ellipse 78% 92% at 50% 46%,
    black 50%,
    rgba(0,0,0,0.7) 68%,
    rgba(0,0,0,0.15) 86%,
    transparent 98%
  );
  filter: drop-shadow(0 0 40px rgba(255,69,0,0.35)) drop-shadow(0 0 80px rgba(58,120,161,0.25));
  animation: breathe 7s ease-in-out infinite;
  z-index: 2;
}

/* Keyframes */
@keyframes rotateCW   { from { transform: rotate(0deg) }   to { transform: rotate(360deg) } }
@keyframes rotateCCW  { from { transform: rotate(360deg) } to { transform: rotate(0deg) } }
@keyframes pulseGlow  { 0%,100% { opacity: 0.7; transform: scale(1); }    50% { opacity: 1; transform: scale(1.08); } }
@keyframes shimmer    { 0%,100% { opacity: 0.5; }  50% { opacity: 1; } }
@keyframes breathe    {
  0%,100% { transform: scale(1);      filter: drop-shadow(0 0 40px rgba(255,69,0,0.35)) drop-shadow(0 0 80px rgba(58,120,161,0.25)); }
  50%     { transform: scale(1.025);  filter: drop-shadow(0 0 55px rgba(255,69,0,0.5))  drop-shadow(0 0 100px rgba(58,120,161,0.35)); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  max-width: 800px;
}

.hero__brand {
  margin-bottom: 1.75rem;
}
.hero__brand-zen {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__brand-sports {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: 0.35rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero__headline-line { display: block; }
.hero__headline-line--fire {
  background: var(--g-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-text-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* ----------------------------------------------------------
   FIRE DIVIDER
   ---------------------------------------------------------- */
.fire-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: 1120px;
  margin-inline: auto;
}
.fire-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-fire-hot), var(--c-fire-gold), var(--c-calm), transparent);
  opacity: 0.4;
}

/* ----------------------------------------------------------
   PHILOSOPHY
   ---------------------------------------------------------- */
.philosophy {
  padding: clamp(5rem, 12vw, 9rem) 0;
}
.philosophy__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-top: 2rem;
}
.philosophy__visual {
  position: relative;
}
.philosophy__quote-mark {
  font-family: Georgia, serif;
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 0.7;
  color: var(--c-fire-hot);
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: -1rem;
  pointer-events: none;
  user-select: none;
}
.philosophy__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--c-text);
  padding-top: 3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--c-gold);
  padding-left: 1.5rem;
}
.philosophy__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
}
.philosophy__text p {
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.philosophy__conclusion {
  color: var(--c-gold) !important;
  font-weight: 500;
  font-style: italic;
}

/* ----------------------------------------------------------
   METHOD
   ---------------------------------------------------------- */
.method {
  padding: clamp(5rem, 12vw, 9rem) 0;
}
.method__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  max-width: 600px;
}
.method__sub {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.method__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.method__card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border-top: 2px solid var(--c-gold);
  padding: 2rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}
.method__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.08);
}
.method__card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--c-gold);
}
.method__card-icon svg { width: 100%; height: 100%; }
.method__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.method__card p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   BOWL TEASER (home page)
   ---------------------------------------------------------- */
.bowl-teaser {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(58,120,161,0.06) 0%, transparent 60%);
}
.bowl-teaser__card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-fire-hot);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 800px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.bowl-teaser__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 24px rgba(255,69,0,0.08);
  border-left-color: var(--c-fire-gold);
}
.bowl-teaser__icon-wrap { flex-shrink: 0; }
.bowl-teaser__body { flex: 1; }
.bowl-teaser__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.bowl-teaser__desc {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Google Play badge (alongside App Store badge) */
.store-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.app-store-badge + .app-store-badge { border-left: none; }

/* ----------------------------------------------------------
   BOWL PRODUCT PAGE
   ---------------------------------------------------------- */
.bowl-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.bowl-hero__inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.bowl-hero__icon { border-radius: 26px; box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 40px rgba(255,69,0,0.15); }
.bowl-hero__text { flex: 1; min-width: 260px; }
.bowl-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.bowl-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.bowl-features { padding: clamp(4rem, 10vw, 7rem) 0; }
.bowl-waitlist-section { padding: 0 0 clamp(5rem, 10vw, 8rem); }
.waitlist__legal {
  font-size: 0.78rem;
  color: var(--c-text-faint);
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   ZENPOGO BOWL
   ---------------------------------------------------------- */
.bowl {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(58,120,161,0.06) 0%, transparent 60%);
}
.bowl__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-top: 2rem;
}
.bowl__icon-wrap {
  margin-bottom: 1.5rem;
}
.bowl__icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 30px rgba(255,69,0,0.15);
}
.bowl__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.bowl__desc {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.bowl__features {
  margin-bottom: 2rem;
}
.bowl__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.bowl__features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--g-fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* checkmark via mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23F5A623'/%3E%3Cpath d='M7 12.5l3.5 3.5 6.5-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23F5A623'/%3E%3Cpath d='M7 12.5l3.5 3.5 6.5-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* App Store badge */
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border-bright);
  border-radius: var(--r-md);
  padding: 0.75rem 1.25rem;
  opacity: 0.55;
  cursor: default;
  user-select: none;
}
.app-store-badge svg { color: var(--c-text-muted); }
.badge-coming {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  font-weight: 600;
}
.badge-store {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-top: 1px;
}

/* iPhone Mockup */
.bowl__mockup { display: flex; justify-content: center; }
.iphone {
  width: clamp(200px, 40%, 260px);
}
.iphone__body {
  background: linear-gradient(160deg, #2c2c2c, #1a1a1a);
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(58,120,161,0.1);
}
.iphone__inner {
  background: #0a0a16;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  min-height: 500px;
}
/* Screenshot variant — real app image fills the screen */
.iphone__inner--screenshot {
  background: #f2f2f7;
  padding-top: 0;
  min-height: auto;
}
.iphone__screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.iphone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.mockup-content {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mockup-topbar {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 0.5rem 0 0.25rem;
}
.mockup-subtitle {
  text-align: center;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -0.3rem;
  margin-bottom: 0.25rem;
}
.mockup-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.mockup-block {
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
  text-align: center;
}
.mockup-block.clean {
  background: rgba(245,166,35,0.18);
  border-color: rgba(245,166,35,0.55);
}
.mockup-block-label {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.mockup-block-marks {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--c-gold);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.2rem;
}
.mockup-block.clean .mockup-block-marks { color: #FFD166; }
.mockup-divider {
  height: 1px;
  background: var(--c-border);
  margin: 0.2rem 0;
}
.mockup-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
}
.mockup-stat-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mockup-stat-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-gold);
}
.mockup-cta {
  background: var(--g-fire);
  border-radius: 8px;
  padding: 0.55rem;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-top: 0.2rem;
}

/* Waitlist */
.waitlist {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 620px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  text-align: center;
}
.waitlist__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.waitlist__sub {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.waitlist__input-group {
  display: flex;
  gap: 0.5rem;
}
.waitlist__input {
  flex: 1;
  background: var(--c-bg);
  border: 1px solid var(--c-border-bright);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.waitlist__input:focus { border-color: var(--c-gold); }
.waitlist__input::placeholder { color: var(--c-text-faint); }
.waitlist__success {
  color: var(--c-gold);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem;
}

/* ----------------------------------------------------------
   THE NAME
   ---------------------------------------------------------- */
.the-name {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) 0;
  text-align: center;
  overflow: hidden;
}
.the-name__silhouette {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 60vw, 600px);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.tagline-words {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.tagline-word,
.tagline-dot {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.tagline-word.visible,
.tagline-dot.visible {
  opacity: 1;
  transform: translateY(0);
}
.tagline-dot { color: var(--c-text-faint); margin: 0 0.15em; }
.tagline-word--calm { color: var(--c-calm-light); }
.tagline-word--fire {
  background: var(--g-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.the-name__text {
  max-width: 600px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.the-name__text p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.the-name__text em { color: var(--c-gold); font-style: italic; }

/* ----------------------------------------------------------
   LEGAL PAGES (Privacy, Terms)
   ---------------------------------------------------------- */
.legal-page {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: 80vh;
}
.legal-page__inner {
  max-width: 760px;
}
.legal-page__back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}
.legal-page__back:hover { color: var(--c-text); }
.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.legal-page__meta {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
}
.legal-page__header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--c-border); }

.legal-page__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  letter-spacing: 0.04em;
  font-weight: 400;
  margin: 2.5rem 0 0.75rem;
  color: var(--c-text);
}
.legal-page__body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 1.5rem 0 0.5rem;
}
.legal-page__body p,
.legal-page__body li {
  color: var(--c-text-muted);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-page__body ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 0.75rem;
}
.legal-page__body a {
  color: var(--c-calm-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page__body a:hover { color: var(--c-text); }
.legal-caps {
  font-size: 0.85rem !important;
  letter-spacing: 0.01em;
}
.legal-contact {
  font-style: normal;
  color: var(--c-text-muted);
  font-size: 0.975rem;
  line-height: 2;
}
.legal-contact a { color: var(--c-calm-light); }

/* Legal table (third-party services) */
.legal-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.legal-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  background: var(--c-surface);
  color: var(--c-text);
  font-weight: 600;
  border-bottom: 1px solid var(--c-border-bright);
}
.legal-table td {
  padding: 0.6rem 1rem;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.legal-table a { color: var(--c-calm-light); text-decoration: underline; text-underline-offset: 2px; }

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--c-border);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.footer__logo-wordmark span { color: var(--c-gold); }
.footer__tagline {
  font-size: 0.85rem;
  color: var(--c-text-faint);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}
.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-link:hover { border-color: var(--c-gold); color: var(--c-gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
}
.footer__nav a {
  font-size: 0.8rem;
  color: var(--c-text-faint);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--c-text); }
.footer__copy {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .philosophy__layout,
  .bowl__layout {
    grid-template-columns: 1fr;
  }
  .philosophy__visual { order: 2; }
  .philosophy__text   { order: 1; }
  .method__cards {
    grid-template-columns: 1fr;
  }
  .bowl__mockup { order: -1; }
  .iphone { width: 200px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .waitlist__input-group { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .bowl-teaser__card { flex-direction: column; align-items: flex-start; }
  .store-badges { flex-direction: column; }
  .nav__subnav { display: none; }
}
