/*
  CONTRAST AUDIT — WCAG AA COMPLIANCE (index.html hero)
  All text elements verified against their actual rendered backgrounds.
  Minimum ratio: 4.5:1 normal text, 3:1 large text (18px+ bold)
  
  nav links (#FDFAF6 on dark overlay):         ~12:1  PASS AAA
  wordmark (#FDFAF6 on dark overlay):          ~12:1  PASS AAA
  est. label (#F77F00 on dark overlay):        ~5.8:1 PASS AA
  headline (#FDFAF6 on dark overlay):          ~12:1  PASS AAA
  subline (rgba 0.75 on dark overlay):         ~7:1   PASS AAA
  social proof (rgba 0.65 on dark overlay):    ~5.3:1 PASS AA
  hint text (rgba 0.6 on dark overlay):        ~4.8:1 PASS AA
*/

:root {
  --bg: #F6F0E7;
  --bg-warm: #F0E8DC;
  --surface: #FFF8F0;
  --primary: #FF7A00;
  --secondary: #FFB347;
  --deep: #2E241D;
  --muted: #8B7355;
  --card-bg: #FFFFFF;
  --card-border: rgba(255,122,0,0.15);
  --card-border-hover: rgba(255,122,0,0.4);
  --glass-bg: rgba(255,255,255,0.7);
  --glass-bg-strong: rgba(255,255,255,0.9);
  --glass-border: rgba(255,255,255,0.7);
  --shadow: 0 8px 24px rgba(46,36,29,0.08);
  --glass-shadow: 0 20px 50px rgba(46,36,29,0.1), inset 0 1px 0 rgba(255,255,255,0.9), 0 0 0 1px rgba(255,255,255,0.15);
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after {
  font-family: 'Nunito', 'Fredoka', 'Baloo', 'Quicksand', sans-serif !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3 { font-weight: 600; }
p, body { font-weight: 400; }
.section-pill, .feature-box-pill { font-weight: 500; }
button, .btn, a.btn { font-weight: 600; }
nav .nav-wordmark { font-weight: 700; }
nav .nav-btn { font-weight: 500; }

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

html, body {
  width: 100%;
  height: auto;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

section {
  scroll-margin-top: 80px;
  padding-top: 80px;
  box-sizing: border-box;
  overflow: visible;
}

.hero-section {
  padding-top: 0 !important;
  scroll-margin-top: 0 !important;
}

body {
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,190,0,0.18), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(247,127,0,0.15), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255,190,0,0.08), transparent 40%),
    linear-gradient(180deg, var(--bg), var(--bg-warm));
  color: var(--deep);

  line-height: 1.75;
  cursor: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.fade-in { opacity: 1; }
body.fade-out { opacity: 0; transition-duration: 0.25s; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

::selection { background: var(--primary); color: #FFFFFF; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: none; background: none; }

/* ============ CUSTOM CURSOR (we-flow style) ============ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z' fill='%23EA580C'/%3E%3Cpath d='M11.5 17.5a2.4 2.4 0 0 0 2.4-2.4c0-1-.5-1.7-1.2-2.5-.4 1-.9 1.3-1.5 1.4.2-1.5-.4-2.4-1.1-3.2-.3 1.6-1.5 2.3-1.5 3.8a2.4 2.4 0 0 0 2.4 2.9z' fill='%23FBBF24'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 2px rgba(194, 65, 12, 0.45));
  animation: cursorFlicker 1.6s ease-in-out infinite;
}

@keyframes cursorFlicker {
  0%, 100% { filter: drop-shadow(0 1px 2px rgba(194, 65, 12, 0.45)); }
  50% { filter: drop-shadow(0 1px 5px rgba(234, 88, 12, 0.6)); }
}

/* trailing ring + orb retired in favor of the fire cursor */
.cursor-ring,
.cursor-orb {
  display: none !important;
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring, .cursor-orb { display: none !important; }
}

/* ============ BIRD GAME ============ */
.bird-game-wrapper {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.bird-game-wrapper canvas {
  display: block;
  background: transparent;
}

.bird-hint {
  font-size: 11px;
  color: rgba(26, 16, 8, 0.45);
  margin-top: 4px;
  text-align: center;
}

.hero-active .bird-hint {
  color: rgba(253, 250, 246, 0.45);
}

@media (max-width: 768px) {
  .bird-game-wrapper { display: none; }
}

/* ============ HEADLINE HIGHLIGHT ============ */
.headline-highlight {
  position: relative;
  display: inline-block;
  color: #1A1008;
  z-index: 1;
}

.headline-highlight::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 8px;
  background: #FFBE00;
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}

nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  min-width: 580px;
  max-width: 800px;
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 9000;
  box-sizing: border-box;

  background: rgba(130, 130, 130, 0.24);
  backdrop-filter: blur(46px) saturate(150%) brightness(1.04);
  -webkit-backdrop-filter: blur(46px) saturate(150%) brightness(1.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -1px 0 rgba(0, 0, 0, 0.05) inset;
  
  transition: box-shadow 0.3s ease;
}

nav:hover {
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

nav *,
nav a,
nav .nav-link,
nav .wordmark {
  color: #1A1008 !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

nav .nav-link {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #1A1008 !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

nav .nav-link:hover {
  background: #F77F00 !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  transform: translateY(-1px);
}

nav .nav-link.active {
  background: rgba(247, 127, 0, 0.12);
  border-color: rgba(247, 127, 0, 0.3);
  color: #F77F00 !important;
}

nav .nav-link.active:hover {
  background: #F77F00 !important;
  color: #FFFFFF !important;
}

nav .wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #F77F00 !important;
}

nav .nav-join-btn,
nav a.btn {
  background: #F77F00 !important;
  color: #FFFFFF !important;
  border: none !important;
}

nav .nav-join-btn:hover,
nav a.btn:hover {
  background: #FFF3E8 !important;
  transform: translateY(-1px) !important;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-mascot {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-bird-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.nav-wordmark-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-left { display: flex; align-items: center; gap: 8px; }
.nav-right { display: flex; align-items: center; gap: 32px; }

.nav-bird-canvas,
.footer-bird-canvas {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.footer-bird-canvas {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.nav-wordmark {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.footer-wordmark {

  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

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

.nav-cta,
.btn-primary,
.btn-ghost,
.waitlist-submit {
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-cta {
  padding: 8px 22px;
  border: 1px solid transparent;
  background: #EA580C;
  color: #FFFFFF !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-btn {
  padding: 8px 18px;
  border: 1px solid transparent;
  background: transparent;
  color: #1A1008;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-btn:hover {
  background: #F77F00;
  border-color: #F77F00;
  color: #1A1008;
}

.nav-cta:hover {
  background: #F77F00;
  border-color: #F77F00;
  color: #1A1008;
}

.nav-cta:hover,
.btn-primary:hover,
.waitlist-submit:hover {
  transform: translateY(-2px);
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--deep);
  box-shadow: 0 8px 24px rgba(247,127,0,0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: #FFFFFF;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span { width: 18px; height: 2px; background: var(--deep); border-radius: 2px; }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(12, 8, 4, 0.55) 0%,
    rgba(12, 8, 4, 0.35) 35%,
    rgba(12, 8, 4, 0.65) 70%,
    rgba(12, 8, 4, 0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}

#hero-canvas {
  display: none;
}

.hero-bg-workflow {
  display: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 24px 80px 24px;
}

.hero-headline-group {
  align-self: flex-start;
}

.hero-cta-group {
  align-self: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 160px;
}

.hero-content > * {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-label {

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #FF7A00;
  margin-bottom: 20px;
}

.hero-label,
.section-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(247,127,0,0.14);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 14px;
}

.hero-headline {
  font-family: 'EB Garamond', 'Georgia', serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.018em;
  line-height: 1.0;
  font-size: clamp(48px, 7.8vw, 96px);
  color: #FDFAF6;
  margin-bottom: 24px;
}

.hero-headline,
.hero-headline * {
  color: #FFFFFF !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-sub {

  font-size: clamp(19px, 3vw, 30px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(26, 16, 8, 0.75), 0 1px 4px rgba(26, 16, 8, 0.65);
}

.hero-waitlist-input {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 999px;
  border: 1px solid rgba(247, 127, 0, 0.2);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(247, 127, 0, 0.12);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.hero-email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 22px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #1A1008;
  background: transparent;
}

.hero-email-input::placeholder {
  color: #B0A090;
}

.hero-join-btn {
  background: #F77F00;
  color: #FFFFFF;
  border: none;
  padding: 14px 24px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0 999px 999px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.hero-join-btn:hover {
  background: #e06e00;
}

.hero-join-btn .btn-sub {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-ctas a {
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.btn-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: #F77F00;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 20px rgba(247, 127, 0, 0.35);
}

.btn-primary:hover {
  background: #e06e00;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247, 127, 0, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #1A1008;
  border: 1.5px solid rgba(26, 16, 8, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(247, 127, 0, 0.1);
  border-color: rgba(247, 127, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.15);
}

.hero-section .btn-secondary {
  color: #FDFAF6;
  border-color: rgba(253, 250, 246, 0.3);
  background: rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-secondary:hover {
  color: #FDFAF6;
  background: rgba(247, 127, 0, 0.2);
  border-color: rgba(247, 127, 0, 0.5);
}

.btn-arrow {
  width: 28px;
  height: 28px;
  background: #F77F00;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.hero-social-proof {

  font-size: 13px;
  color: rgba(253, 250, 246, 0.65);
  text-align: center;
}

.hero-arkire-core {
  display: none;
}

.hero-mascot {
  position: absolute;
  right: 12%;
  top: 35%;
  z-index: 2;
  pointer-events: none;
  width: min(280px, 24vw);
  animation: mascotFloat 5s ease-in-out infinite;
  display: none;
}

.hero-mascot-left,
.hero-mascot-right {
  position: absolute;
  bottom: 32px;
  z-index: 3;
  width: 72px;
  height: auto;
}

.hero-mascot-left {
  left: 32px;
  animation: float 3.5s ease-in-out infinite;
}

.hero-mascot-right {
  right: 32px;
  animation: float 3.5s ease-in-out infinite 1.75s;
}

.hero-mascot-left .mascot-img,
.hero-mascot-right .mascot-img {
  width: 100%;
  height: auto;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 480px) {
  .hero-mascot-left,
  .hero-mascot-right {
    width: 48px;
    bottom: 20px;
  }
  .hero-mascot-left { left: 16px; }
  .hero-mascot-right { right: 16px; }
}

@media (max-width: 768px) {
  nav {
    top: 12px;
    min-width: 280px;
    max-width: calc(100vw - 32px);
    height: 48px;
    padding: 0 16px;
    gap: 16px;
  }

  nav .nav-link {
    font-size: 13px;
  }

  nav .wordmark {
    font-size: 13px;
  }

  nav .nav-join-btn,
  nav a.btn {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }

  .feature-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .feature-box {
    min-width: 240px;
    flex-shrink: 0;
  }

  .feature-box:nth-child(1),
  .feature-box:nth-child(4) {
    min-width: 240px;
    grid-column: unset;
  }

  .bird-game-box {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(36px, 10vw, 56px);
  }
}

.bird-game-box {
  position: fixed;
  bottom: 16px;
  left: 16px;
  transform: translateY(16px);
  z-index: 1001;
  width: 160px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(247, 127, 0, 0.25);
  border-radius: 12px;
  padding: 4px 6px;
  box-shadow: 
    0 8px 32px rgba(247, 127, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.bird-game-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.bird-game-header {
  display: none;
}

.bird-game-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FF7A00;
}

.bird-game-hint {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: rgba(26, 16, 8, 0.45);
  transition: opacity 0.4s ease;
}

body.hero-active .bird-game-hint {
  color: rgba(253, 250, 246, 0.45);
}

body.hero-active .bird-game-box {
  background: rgba(12, 8, 4, 0.25);
  border-color: rgba(247, 127, 0, 0.3);
}

.bird-game-canvas {
  width: 148px;
  height: 32px;
  display: block;
  border-radius: 8px;
  background: transparent;
  image-rendering: pixelated;
}

.type-cursor {
  color: #F77F00 !important;
  text-shadow: none !important;
  font-weight: 300;
  margin-left: 2px;
  animation: blink 0.75s step-end infinite;
}

.subline-cursor {
  color: #F77F00 !important;
  text-shadow: none !important;
  font-weight: 300;
  margin-left: 2px;
  animation: blink 0.75s step-end infinite;
}

.type-cursor.typing {
  animation: none;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  padding: 14px 0;
  border-top: 1px solid rgba(247,127,0,0.12);
  background: rgba(253,250,246,0.82);
}

.marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 42s linear infinite; }
.marquee-track span {
  flex: 0 0 auto;
  padding: 0 20px;
  color: rgba(247,127,0,0.72);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ GENERAL SECTIONS ============ */
.section,
.waitlist-band {
  position: relative;
  padding: 100px 80px 60px 80px;
  background: rgba(253,250,246,0.85);
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 100px 80px 60px 80px; }
.alt-section {
  background: rgba(245,239,230,0.9);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

/* ============ STACKING CARDS (scroll-driven scaling deck) ============ */
.stack-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 14vh;
  background: #FDFAF6;
}
.stack-intro {
  height: 16vh;
}
.stack-intro-label {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B0936F;
}
.stack-intro-label::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(176,147,111,0.6), transparent);
}
.stack-sticky {
  position: sticky;
  top: 14vh;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50vh;
  pointer-events: none;
}
.stack-sticky:last-child { margin-bottom: 12vh; }
.stack-card {
  pointer-events: auto;
  position: relative;
  width: min(940px, 92vw);
  min-height: 62vh;
  box-sizing: border-box;
  transform-origin: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 52px 56px;
  border-radius: 34px;
  background: #FFFFFF;
  border: 1px solid rgba(247, 127, 0, 0.16);
  box-shadow: 0 30px 80px rgba(61, 42, 27, 0.18);
  will-change: transform;
}
.stack-card--problem  { background: #FFF3E8; }
.stack-card--solution { background: #FFFFFF; }
.stack-card--features { background: #FBF4EA; }

.stack-card-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C2410C;
  background: rgba(194, 65, 12, 0.08);
  padding: 7px 16px;
  border-radius: 999px;
}
.stack-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  color: #C2410C;
  max-width: 16ch;
}
.stack-card-body {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #6B5743;
  max-width: 54ch;
}
.stack-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(16px, 1.7vw, 21px);
  color: #3D2A1B;
}
.stack-stat {
  font-weight: 600;
  color: #EA580C;
}

.stack-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}
.stack-feature {
  text-align: left;
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(247, 127, 0, 0.14);
}
.stack-feature-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C2410C;
}
.stack-feature h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #3D2A1B;
  margin: 6px 0 4px;
}
.stack-feature p {
  font-size: 13px;
  line-height: 1.5;
  color: #6B5743;
}

@media (max-width: 700px) {
  .stack-feature-grid { grid-template-columns: 1fr 1fr; }
  .stack-card { padding: 36px 24px; min-height: 70vh; }
}

@media (prefers-reduced-motion: reduce) {
  .stack-sticky { position: relative; height: auto; padding: 30px 0; }
  .stack-card { transform: none !important; }
}

/* ============ JOURNEY STEPS ============ */
.journey-step {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.journey-icon {
  margin-bottom: 24px;
  opacity: 0.7;
}

.journey-headline {

  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 700px;
}

.journey-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 500px;
}

.journey-detail {
  max-width: 660px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

/* ============ MOST CREATORS QUIT ============ */
#most-quit {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.problem-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-stats li {
  font-size: 18px;
  color: #7A6652;
  line-height: 1.5;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.stat-highlight {
  font-size: 28px;
  font-weight: 800;
  color: #F77F00;
  font-style: italic;
}

.stat-emphasis {
  font-weight: 700;
  color: #1A1008;
  text-decoration: underline;
  text-decoration-color: rgba(247, 127, 0, 0.4);
  text-underline-offset: 3px;
}

.problem-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 100px 80px 60px 80px;
  box-sizing: border-box;
}

.problem-section .section-pill {
  align-self: flex-start;
  margin-bottom: 24px;
}

.problem-section h2 {
  text-align: left;
  margin: 0 0 32px 0;
  max-width: 100%;
}

.problem-section p {
  text-align: left;
  max-width: 600px;
  margin: 0 0 32px 0;
}

.problem-section .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .problem-section { padding: 60px 24px; }
}

.quit-headline {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 48px;
}

.quit-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 0 auto 48px;
}

#quit-canvas {
  width: 100%;
  height: 100%;
}

.quit-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.quit-stat {
  text-align: center;
}

.quit-number {
  display: block;

  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--deep);
  line-height: 1;
}

.quit-number-highlight {
  color: var(--primary);
  position: relative;
}

.quit-number-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.quit-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.quit-insight {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
}

/* ============ CREATOR LOOP ============ */
#creator-loop-section {
  text-align: center;
}

.loop-main-headline {

  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 60px;
}

.creator-loop-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.loop-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--glass-bg-strong);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  transition: all var(--transition);
  min-width: 100px;
}

.loop-node.active {
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(247,127,0,0.15);
  transform: scale(1.05);
}

.loop-node-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loop-node-label {

  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.loop-connector {
  width: 40px;
  height: 2px;
  background: rgba(247,127,0,0.2);
  position: relative;
}

.loop-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: rgba(247,127,0,0.2);
}

/* ============ WHAT ARKIRE DOES ============ */
#what-arkire-does {
  text-align: center;
}

.arkire-does-headline {

  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 60px;
}

.arkire-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.arkire-card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  transition: all var(--transition);
  text-align: center;
}

.arkire-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: 0 8px 28px rgba(247,127,0,0.1);
}

.arkire-card-number {
  color: rgba(247,127,0,0.18);

  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.arkire-card-icon {
  margin-bottom: 20px;
}

.arkire-card h3 {

  font-size: 24px;
  margin-bottom: 12px;
  color: var(--deep);
}

.arkire-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
#how-it-works {
  text-align: center;
}

.cards-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 28px auto 0;
}

.hiw-card {
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-bg-strong);
  box-shadow: var(--glass-shadow);
  text-align: left;
  transition: all var(--transition);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.hiw-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}

.card-number {

  color: rgba(247,127,0,0.28);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.card-3d-canvas {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(247,127,0,0.1);
  background: rgba(255,243,232,0.62);
}

.hiw-card h3 {

  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hiw-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ DATA FLYWHEEL ============ */
#flywheel { text-align: center; }
.flywheel-headline { max-width: 760px; margin: 0 auto 60px; font-size: clamp(32px, 4vw, 56px); line-height: 1.08; }

.flywheel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 60px;
  align-items: center;
}

.flywheel-network {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

#flywheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(247,127,0,0.12);
}

.flywheel-metrics {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flywheel-metric {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: 16px;
}

.flywheel-metric-value {

  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.flywheel-metric-label {
  font-size: 14px;
  color: var(--muted);
}

.flywheel-metric-bar {
  height: 6px;
  background: rgba(247,127,0,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.flywheel-metric-bar span {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.flywheel-caption { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 20px; font-style: italic; }

/* ============ BIG JOURNEY ============ */
#big-journey {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.big-journey-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#big-journey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.big-journey-content {
  position: relative;
  z-index: 1;
}

.big-journey-headline {

  font-size: clamp(32px, 5vw, 64px);
  margin: 16px 0;
  opacity: 1;
  transform: translateY(0);
}

.big-journey-arrow {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.5;
  margin: 8px 0;
}

.big-journey-sub {
  color: var(--muted);
  font-size: 20px;
  margin-top: 40px;
  font-style: italic;
}

.big-journey-ecosystem {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  padding: 40px;
  border: 1px solid rgba(247,127,0,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.5);
}

.eco-node {
  padding: 12px 24px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--card-bg);

  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.eco-node:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============ WAITLIST ============ */
.waitlist-content { position: relative; z-index: 15; width: min(780px, 100%); margin: 0 auto; text-align: center; }
.waitlist-headline {

  color: var(--deep);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.waitlist-sub { color: var(--muted); font-size: 18px; margin-bottom: 28px; }

.waitlist-form { display: flex; justify-content: center; gap: 0; margin-bottom: 16px; }
.waitlist-input {
  width: min(380px, 100%);
  height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(247,127,0,0.28);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: #FFFFFF;
  color: var(--deep);
  outline: none;
  transition: border-color var(--transition);
}

.waitlist-input:focus { border-color: var(--primary); }
.waitlist-submit {
  height: 52px;
  padding: 0 24px;
  border: 1px solid var(--primary);
  border-radius: 0 8px 8px 0;
  background: var(--primary);
  color: #FFFFFF;

  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.waitlist-disclaimer { color: var(--muted); font-size: 13px; }

.waitlist-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  z-index: 10;
  display: grid;
  place-items: center;
  background: var(--surface);
}
.waitlist-page .waitlist-headline { font-size: clamp(64px, 10vw, 120px); }

/* ============ FOOTER ============ */
#footer {
  background: #1A1008;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 48px 60px 24px;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

/* ponytail: footer-specific text color — #D8C7B0 on #1A1008 ≈ 9:1, passes AA. --muted (#8B7355) failed at ~4.1 */
.footer-tagline,
.footer-links a,
.footer-bottom p { color: #D8C7B0; font-size: 14px; }
.footer-links { display: flex; gap: 28px; list-style: none; justify-content: center; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-socials { display: flex; gap: 20px; justify-content: center; }
.footer-socials svg { width: 20px; height: 20px; fill: #D8C7B0; transition: fill var(--transition); }
.footer-socials a:hover svg { fill: var(--primary); }
.footer-bottom { max-width: 1100px; margin: 0 auto; text-align: center; padding-top: 20px; border-top: 1px solid rgba(247,127,0,0.1); }

/* ============ PRODUCT PAGE ============ */
.product-headline {

  font-size: clamp(40px, 5vw, 64px);
  max-width: 700px;
  margin-bottom: 16px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.product-sub {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Room Scan */
#room-scan .product-headline,
#room-scan .product-sub { margin-left: auto; margin-right: auto; text-align: center; }

.room-scan-demo {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--deep);
  min-height: 500px;
}

.room-scan-view {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.room-scan-room {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  padding: 20px;
}

.room-object {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.03);
}

.scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4FC3F7, transparent);
  box-shadow: 0 0 20px rgba(79,195,247,0.5);
  animation: scanSweep 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes scanSweep {
  0% { top: 0; opacity: 1; }
  50% { top: 100%; opacity: 0.3; }
  100% { top: 0; opacity: 1; }
}

.scan-tag {
  position: absolute;
  padding: 3px 8px;
  background: rgba(79,195,247,0.2);
  border: 1px solid rgba(79,195,247,0.4);
  border-radius: 4px;
  color: #4FC3F7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.scan-tag[data-tag="window"] { top: 12%; left: 12%; }
.scan-tag[data-tag="desk"] { top: 45%; left: 45%; }
.scan-tag[data-tag="light"] { top: 15%; right: 20%; }
.scan-tag[data-tag="background"] { bottom: 30%; right: 10%; }
.scan-tag[data-tag="tripod"] { bottom: 20%; left: 30%; }

.scan-tag.visible { opacity: 1; }

.scan-positions {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  justify-content: center;
}

.scan-position {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 180px;
}

.scan-position-bad .pos-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,50,50,0.2);
  color: #ff3232;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.scan-position-good .pos-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(50,255,50,0.2);
  color: #32ff32;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.pos-detail {
  display: flex;
  flex-direction: column;
}

.pos-name {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
}

.pos-reason {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.scan-result {
  padding: 24px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  position: relative;
}

.scan-result-label {

  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.scan-result-confidence {
  font-size: 16px;
  color: #4FC3F7;
}

.scan-result-confidence span {
  font-weight: 700;
  font-size: 20px;
}

.scan-grid-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  pointer-events: none;
  opacity: 0.15;
}

.grid-line-h, .grid-line-v {
  border: 1px solid #FFFFFF;
}

.grid-center {
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  place-self: center;
}

/* Frame Generator */
#frame-generator {
  text-align: center;
}

.frame-generator-demo {
  max-width: 900px;
  margin: 0 auto;
}

.frame-input-area {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.frame-input {
  width: min(400px, 100%);
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--deep);
  outline: none;
  font-size: 15px;
}

.frame-input:focus {
  border-color: var(--primary);
}

.frame-generate-btn {
  height: 48px;
  padding: 0 24px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 8px;

  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--primary);
  transition: all var(--transition);
}

.frame-generate-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--deep);
  transform: translateY(-2px);
}

.frame-storyboard {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.frame-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.frame-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
}

.frame-canvas-wrapper {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--bg-warm);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.frame-canvas-wrapper canvas {
  width: 100%;
  height: 100%;
}

.frame-label {
  display: block;

  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--deep);
}

.frame-desc {
  color: var(--muted);
  font-size: 12px;
}

/* Analytics Learning */
#analytics-learning {
  text-align: center;
}

.analytics-demo {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.analytics-video-card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.analytics-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.7;
}

.analytics-meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.analytics-title {
  font-weight: 600;
  font-size: 15px;
}

.analytics-views {
  color: var(--muted);
  font-size: 13px;
}

.analytics-data-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.analytics-data-item {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: 12px;
}

.data-label {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.data-bar-container {
  height: 8px;
  background: rgba(247,127,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.data-bar {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 1s ease;
}

.data-value {
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

.analytics-loop-indicator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.analytics-pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.analytics-next-rec {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.rec-label {
  width: 100%;

  font-weight: 700;
  font-size: 14px;
  color: var(--deep);
  margin-bottom: 4px;
}

.rec-value {
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* Experiment Mode */
#experiment-mode {
  text-align: center;
}

.experiment-demo {
  max-width: 600px;
  margin: 0 auto;
}

.experiment-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.experiment-toggle {
  position: relative;
  display: flex;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.toggle-option {
  padding: 14px 32px;

  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
  position: relative;
}

.toggle-option.toggle-active {
  color: #FFFFFF;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--primary);
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.toggle-slider.experiment {
  transform: translateX(100%);
}

.experiment-info {
  text-align: left;
}

.experiment-description {
  padding: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.experiment-description p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.exp-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.exp-stats span {
  padding: 8px 16px;
  background: var(--surface);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
}

/* ============ CREATORS PAGE ============ */
#creators-hero,
#skill-tree,
#badges,
#leaderboards {
  text-align: center;
}

.creators-hero-headline {

  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 20px;
  line-height: 1.05;
}

.creators-headline {

  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

/* Skill Tree */
.skill-tree-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 600px;
  margin: 40px auto 0;
}

#skill-tree-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 24px;
  background: var(--deep);
}

.skill-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.skill-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  border: 1px solid rgba(247,127,0,0.3);
  border-radius: 8px;
  background: rgba(26,16,8,0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  transition: all var(--transition);
  cursor: pointer;
}

.skill-node:hover {
  border-color: var(--primary);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 20px rgba(247,127,0,0.2);
}

.skill-node.unlocked {
  border-color: var(--primary);
  background: rgba(247,127,0,0.15);
}

.skill-level {
  font-size: 10px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.skill-name {

  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.skill-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Badges */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  justify-content: center;
  gap: 18px;
  max-width: 820px;
  margin: 40px auto 0;
}

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  transition: all var(--transition);
  width: 100%;
  min-height: 178px;
}

.badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(247,127,0,0.12);
}

.badge-icon svg {
  width: 48px;
  height: 48px;
}

.badge-name {

  font-weight: 700;
  font-size: 13px;
  text-align: center;
}

/* Leaderboards */
.leaderboard-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.leaderboard-tab {
  padding: 10px 24px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--glass-bg-strong);

  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: all var(--transition);
}

.leaderboard-tab.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.leaderboard-tab:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.leaderboard-category {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.leaderboard-category h3 {

  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.lb-entry {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  font-size: 13px;
  border-bottom: 1px solid rgba(247,127,0,0.06);
}

.lb-entry:last-child { border-bottom: none; }

.lb-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 11px;
}

.lb-entry.gold .lb-rank { background: rgba(255,190,0,0.2); color: #CC9900; }
.lb-entry.silver .lb-rank { background: rgba(192,192,192,0.2); color: #808080; }
.lb-entry.bronze .lb-rank { background: rgba(205,127,50,0.2); color: #8B5E3C; }

.lb-name {
  font-weight: 500;
  text-align: left;
}

.lb-value {
  font-weight: 700;
  color: var(--primary);
}

/* ============ VISION PAGE ============ */
#vision-hero,
#vision-timeline,
#vision-ecosystem {
  text-align: center;
}

.vision-headline {

  font-size: clamp(40px, 6vw, 72px);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.05;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(247,127,0,0.2);
}

.timeline-item {
  position: relative;
  padding: 24px 0;
  padding-left: 32px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-warm);
}

.timeline-year {

  font-weight: 800;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content h3 {

  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Ecosystem */
.ecosystem-visual {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 40px auto 0;
}

#ecosystem-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--deep);
  border: 1px solid rgba(247,127,0,0.12);
}

.ecosystem-nodes {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1;
  padding: 60px;
}

.eco-node-lg {
  padding: 16px 28px;
  border: 1px solid rgba(247,127,0,0.3);
  border-radius: 8px;
  background: rgba(26,16,8,0.8);
  backdrop-filter: blur(8px);
  color: #FFFFFF;

  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition);
}

.eco-node-lg:hover {
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(247,127,0,0.2);
}

/* ============ MASCOT PLACEMENTS ============ */
.section-mascot {
  z-index: 2;
  line-height: 0;
}

.mascot-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(247,127,0,0.14));
}

.mascot-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Vision page - bottom right */
.vision-mascot {
  position: absolute;
  bottom: 28px;
  right: 40px;
  width: 80px;
}

/* Product page - analytics accent */
.product-mascot {
  position: absolute;
  top: 34px;
  right: max(28px, calc((100vw - 980px) / 2));
  width: 78px;
  pointer-events: none;
}

/* Creators page - top right of hero */
.creators-mascot {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 100px;
}

/* Waitlist page - centered above headline */
.waitlist-mascot {
  width: 90px;
  margin: 0 auto 24px;
  display: block;
}

/* How it works - centered below cards */
.how-mascot {
  position: absolute;
  top: 48%;
  left: calc(66.666% + 12px);
  transform: translate(-50%, -50%);
  width: 64px;
  display: block;
  pointer-events: none;
}

.about-mascot {
  position: absolute;
  right: max(28px, calc((100vw - 920px) / 2));
  top: 64px;
  width: 70px;
  pointer-events: none;
}

.ecosystem-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-style: italic;
  white-space: nowrap;
  z-index: 2;
}

/* ============ ABOUT PAGE ============ */
#about-hero,
#about-story,
#about-founder,
#about-team,
#about-faq,
#about-waitlist {
  text-align: center;
}

.about-headline {

  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 20px;
  line-height: 1.05;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-block {
  padding: 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  text-align: left;
  transition: all var(--transition);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.about-block:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
}

.about-block-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface);
  border-radius: 999px;

  font-weight: 700;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-block-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-block-text em {
  color: var(--deep);
  font-style: italic;
}

/* Founder */
.founder-card {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  text-align: left;
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.founder-avatar {
  flex-shrink: 0;
}

.founder-info h3 {

  font-size: 24px;
  margin-bottom: 4px;
}

.founder-role {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.founder-bio {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.team-member {
  text-align: center;
  padding: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--glass-shadow);
  width: 160px;
  transition: all var(--transition);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.team-member:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
}

.team-avatar svg {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.team-member h4 {

  font-size: 16px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--muted);
  font-size: 13px;
}

/* Team Unique Layout */
.team-grid-unique {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.team-row {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.team-row:first-child {
  justify-content: center;
}

.team-member {
  text-align: center;
  padding: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 280px;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
}

.team-photo-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  border: 2px dashed var(--card-border);
  position: relative;
  background: var(--surface);
}

.team-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(247, 127, 0, 0.92);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 16px;
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: none;
  margin-top: 0;
}

.team-member:hover .team-description,
.team-member:focus .team-description {
  opacity: 1;
  transform: translateY(0);
}

.team-description p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: #FFFFFF;
}

.team-member h3 {

  font-size: 18px;
  margin-bottom: 6px;
}

.team-member .team-role {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
  }
  
  .team-member {
    max-width: 100%;
  }

  .team-description {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    background: #FFF3E8;
    color: #1A1008;
    border-radius: 12px;
    margin-top: 8px;
    max-height: none;
  }
  .team-description p {
    color: #1A1008;
  }
}

.team-member {
  min-height: 280px;
}

.contact-section {
  padding: 80px 24px;
  text-align: center;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-sub {
  font-size: 18px;
  color: #7A6652;
  margin: 16px 0 32px 0;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 32px;
  background: #FFFFFF;
  border: 1px solid rgba(247, 127, 0, 0.15);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 127, 0, 0.4);
  box-shadow: 0 8px 24px rgba(247, 127, 0, 0.1);
}

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F77F00;
}

.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: #1A1008;
}

.waitlist-bird-hint {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.waitlist-bird-img {
  width: 84px;
  height: auto;
  animation: birdBob 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(247, 127, 0, 0.2));
}

/* compact stats pulled into the waitlist hero (above the fold) */
.waitlist-stats {
  margin: 26px auto 22px;
  max-width: 600px;
}
.waitlist-stats .stat-number { font-size: clamp(26px, 4vw, 40px); }
.waitlist-stats .stat-label { font-size: 11px; max-width: 120px; }
.waitlist-stats .stat-divider { height: 44px; }

@keyframes birdBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.social-proof-section {
  background: #F5EFE6;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 100px 80px 60px 80px;
}

.social-proof-inner {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  font-style: italic;
  color: #F77F00;
  line-height: 1;
}

.stat-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #8B7355;
  letter-spacing: 0.04em;
  max-width: 140px;
  text-align: center;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(247, 127, 0, 0.2);
  flex-shrink: 0;
}

.proof-quote-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: #1A1008;
  line-height: 1.5;
  margin: 0;
}

.proof-attribution {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #7A6652;
}

.team-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(247, 127, 0, 0.15);
  border-radius: 999px;
  padding: 12px 24px;
}

.team-strip-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F77F00;
}

.team-avatars {
  display: flex;
  gap: -6px;
}

.team-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  margin-left: -6px;
}

.team-avatar:first-child {
  margin-left: 0;
}

.team-strip-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #7A6652;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 32px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .team-strip {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
  }
  .team-strip-text {
    white-space: normal;
    text-align: center;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.how-it-works-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
  margin: 32px 0 0 0;
}

.hiw-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hiw-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: #F77F00;
  line-height: 1;
  min-width: 56px;
}

.hiw-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1008;
  margin: 0 0 6px 0;
}

.hiw-body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #7A6652;
  line-height: 1.7;
  margin: 0;
}

.opportunity-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.opportunity-badge {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F77F00;
  border: 1px solid rgba(247, 127, 0, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(247, 127, 0, 0.05);
}

.team-section {
  padding: 100px 80px;
  background: #FDFAF6;
}

.team-section .section-pill {
  margin-bottom: 16px;
}

.team-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #1A1008;
  margin-bottom: 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-section {
    padding: 80px 24px;
  }
}

.team-card {
  --accent: #F77F00;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  padding: 26px 16px 22px;
  border-radius: 22px;
  border: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, #FFFFFF);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #FFFFFF);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 28%, transparent);
}

/* Avatar circle — shown when no real photo */
.team-card-placeholder {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F77F00, #FFBE00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  border: 3px solid var(--accent, #FFFFFF);
  box-shadow: 0 4px 16px rgba(247, 127, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .team-card-placeholder {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(247, 127, 0, 0.3);
}

/* Real photo — same size as placeholder */
.team-card-image {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--accent, #FFFFFF);
  box-shadow: 0 4px 16px rgba(247, 127, 0, 0.2);
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .team-card-image {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(247, 127, 0, 0.3);
}

.team-card-name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1A1008;
  margin: 0;
  line-height: 1.3;
}

.team-card-role {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #FF7A00);
  letter-spacing: 0.06em;
}

/* Description tooltip on hover */
.team-card-overlay {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(26, 16, 8, 0.92);
  backdrop-filter: blur(12px);
  color: #FDFAF6;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  width: 180px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
  white-space: normal;
}

/* Arrow pointing down from tooltip */
.team-card-overlay::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(26, 16, 8, 0.92);
}

.team-card:hover .team-card-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* On mobile show overlay always */
@media (max-width: 768px) {
  .team-card-overlay {
    position: static;
    transform: none;
    opacity: 1;
    width: 100%;
    background: #FFF3E8;
    color: #1A1008;
    pointer-events: auto;
    margin-top: 4px;
  }
  .team-card-overlay::after {
    display: none;
  }
  .team-card:hover .team-card-overlay {
    transform: none;
  }
}

.contact-item {
  text-align: center;
  padding: 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
}

.contact-item h3 {

  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-item p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-animate-fade.visible {
  opacity: 1;
}

/* Staggered animations */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }

/* FAQ */
.faq-list {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(247, 127, 0, 0.1);
}

.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #1A1008;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 15px;
  color: #7A6652;
  line-height: 1.8;
  margin-top: 12px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--glass-bg-strong);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;

  font-weight: 600;
  font-size: 16px;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--surface);
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-mascot { display: none; }
  .vision-mascot { display: none; }
  .how-mascot { display: none; }
  .about-mascot { display: none; }
  .cards-row { grid-template-columns: 1fr; }
  .opps-grid { grid-template-columns: 1fr; gap: 40px; }
  .arkire-cards-row { grid-template-columns: 1fr; }
  .flywheel-container { grid-template-columns: 1fr; gap: 40px; }
  .frame-storyboard { grid-template-columns: repeat(3, 1fr); }
  .leaderboard-grid { grid-template-columns: repeat(2, 1fr); }
  .analytics-demo { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: repeat(2, minmax(0, 160px)); }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-orb { display: none !important; }
  nav { padding: 14px 20px; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 12px; }
  .nav-cta { display: none; }
  .nav-btn { display: none; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 16px 40px rgba(26,16,8,0.1);
    backdrop-filter: blur(22px) saturate(1.22);
    -webkit-backdrop-filter: blur(22px) saturate(1.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
  }
  body.nav-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { display: block; padding: 12px 14px; }
  .section { padding: 80px 24px; }
  .waitlist-band { padding: 40px 24px; }
  .hero-content { padding: 80px 24px 48px 24px; }
  .hero-label { margin-top: 24px; }
  .hero-headline { font-size: clamp(40px, 13vw, 64px); }
  .waitlist-form { flex-direction: column; align-items: center; gap: 12px; }
  .waitlist-input, .waitlist-submit { width: 100%; max-width: 380px; border-radius: 8px; border: 1px solid rgba(247,127,0,0.28); }
  .frame-storyboard { grid-template-columns: repeat(2, 1fr); }
  .leaderboard-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: minmax(0, 180px); }
  .quit-stats { gap: 24px; }
  .scan-positions { flex-direction: column; align-items: center; }
  .scan-tag { display: none; }
  .creator-loop-animation { flex-direction: column; gap: 12px; }
  .loop-connector { width: 2px; height: 24px; }
  .loop-connector::after { display: none; }
  .skill-tree-container { height: 400px; }
  .skill-node { padding: 8px 12px; }
  .skill-name { font-size: 11px; }
  .founder-card { flex-direction: column; text-align: center; }
  .product-mascot { display: none; }
  .creators-mascot { width: 60px; position: static; margin: 0 auto 18px; display: block; }
  .ecosystem-nodes { padding: 20px; }
  .eco-node-lg { padding: 10px 16px; font-size: 12px; }
  .flywheel-metric { grid-template-columns: 60px 1fr 40px; gap: 8px; }
  #footer { padding: 48px 24px 24px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ============ FEATURE BOXES ============ */
.section-pill {
  display: inline-block;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FF7A00;
  background: #FFF8F0;
  padding: 5px 14px;
  border-radius: 999px;
  width: fit-content;
}

.feature-boxes {
  background: #FDFAF6;
  padding: 100px 40px;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.feature-boxes-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.feature-boxes-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-boxes-headline {

  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #1A1008;
  line-height: 1.15;
  margin: 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1100px;
  width: 100%;
  margin: 32px auto 0 auto;
}

.feature-box {
  background: #FFFFFF;
  border: 1px solid rgba(247, 127, 0, 0.12);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(247, 127, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 127, 0, 0.35);
  box-shadow: 0 8px 32px rgba(247, 127, 0, 0.12);
}

.feature-box-pill {

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #F77F00;
  background: #FFF3E8;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}

.feature-box-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1008;
  margin: 0;
  line-height: 1.2;
}

.feature-box-body {
  font-size: 12px;
  color: #7A6652;
  line-height: 1.5;
  margin: 0;
}

.feature-box:nth-child(1),
.feature-box:nth-child(4) {
  grid-column: span 2;
}

/* Feature box UI elements */
.fb-ui {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
}

.fb-scan {
  justify-content: center;
  width: 100%;
}

.fb-phone-outline {
  width: 28px;
  height: 50px;
  border: 1.5px solid #F77F00;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.fb-scan-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #F77F00, transparent);
  animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
  0% { transform: translateY(-35px); }
  100% { transform: translateY(35px); }
}

.fb-frames {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.fb-bar {
  height: 8px;
  border-radius: 4px;
  width: 100%;
  position: relative;
}

.fb-bar-1 { background: #F77F00; }
.fb-bar-2 { background: #FFBE00; opacity: 0.7; }
.fb-bar-3 { background: #FFF3E8; border: 1px solid rgba(247,127,0,0.3); }

.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F77F00;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: dotSlide 2.5s ease-in-out infinite alternate;
}

@keyframes dotSlide {
  0% { left: 0; }
  100% { left: calc(100% - 8px); }
}

.fb-chart {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 44px;
}

.fb-chart-bar {
  width: 10px;
  border-radius: 2px 2px 0 0;
  flex-shrink: 0;
}

.fb-chart-bar-1 { height: 16px; background: #FFBE00; opacity: 0.8; }
.fb-chart-bar-2 { height: 24px; background: #FFBE00; opacity: 0.6; }
.fb-chart-bar-3 { height: 20px; background: #FFBE00; opacity: 0.5; }
.fb-chart-bar-4 { height: 32px; background: #FFBE00; opacity: 0.4; }
.fb-chart-bar-5 { height: 40px; background: #F77F00; }

.fb-match {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.fb-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0;
  font-size: 11px;
  color: #1A1008;

}

.fb-chip-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFF3E8;
  border: 1px solid rgba(247, 127, 0, 0.3);
  flex-shrink: 0;
}

.fb-connector {
  position: relative;
  border-left: 1.5px dashed rgba(247, 127, 0, 0.4);
  height: 24px;
  margin-left: 16px;
  width: 0;
}

.fb-pulse-dot {
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F77F00;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.4); opacity: 0.5; }
}

.fb-level {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
}

.fb-level-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #7A6652;

}

.fb-level-track {
  width: 100%;
  height: 8px;
  background: #FFF3E8;
  border-radius: 4px;
  overflow: hidden;
}

.fb-level-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #F77F00, #FFBE00);
  border-radius: 5px;
}

.fb-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.fb-lock-icon {
  width: 28px;
  height: 32px;
  animation: lockBob 2s ease-in-out infinite;
}

@keyframes lockBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.fb-lock-label {
  font-size: 10px;
  color: #7A6652;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-box:nth-child(1),
  .feature-box:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-boxes {
    padding: 60px 20px;
  }
}


/* ============ Hero Glass Button ============ */
.hero-section .btn-primary,
.hero-section a[href*="waitlist"].btn {
  background: rgba(255, 255, 255, 0.15);
  color: #FDFAF6;
  border: 1.5px solid rgba(253, 250, 246, 0.4);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-section .btn-primary:hover,
.hero-section a[href*="waitlist"].btn:hover {
  background: rgba(247, 127, 0, 0.3);
  border-color: rgba(247, 127, 0, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PHASE 1 — display font, 3D buttons, scroll-away nav,
   waitlist modal, floating CTA, mascot fly-in
   ============================================================ */

/* --- Fraunces editorial-serif display on big headlines --- */
.hero-headline,
.hero-headline span,
.stack-card-title,
.about-headline {
  font-family: 'EB Garamond', 'Georgia', serif !important;
  letter-spacing: -0.018em;
  font-weight: 600;
}

/* --- nav: lives only on the hero, scrolls away, no hamburger, white + larger --- */
nav#navbar {
  position: absolute;
  min-width: 0;
  width: auto;
  max-width: min(880px, calc(100vw - 32px));
  height: 68px;
  padding: 0 16px 0 28px;
  gap: 30px;
  background: rgba(120, 120, 120, 0.22);
  backdrop-filter: blur(44px) saturate(150%) brightness(1.05);
  -webkit-backdrop-filter: blur(44px) saturate(150%) brightness(1.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255,255,255,0.45);
}
nav#navbar .wordmark { font-size: 17px; }
.nav-toggle { display: none !important; }
nav .nav-btn,
nav .nav-links a {
  font-family: 'Fredoka', sans-serif !important;
  color: #FFFFFF !important;
  font-weight: 500;
  font-size: 15px;
  text-shadow: 0 1px 6px rgba(26,16,8,0.5);
}
nav .nav-cta { font-size: 15px; padding: 10px 24px; }
nav .nav-btn:hover { background: rgba(255,255,255,0.18); }
/* keep every page link visible (no hamburger) on every width */
@media (max-width: 768px) {
  nav#navbar { min-width: 0; width: auto; max-width: calc(100vw - 24px); padding: 7px 8px 7px 16px; gap: 8px; }
  .nav-right { gap: 6px; }
  .nav-btn { display: inline-block !important; padding: 7px 11px; font-size: 13px; }
  .nav-cta { display: inline-block !important; padding: 7px 14px; font-size: 13px; }
  nav .wordmark { font-size: 14px; }
}

/* --- 3D candy button system --- */
.btn-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: lowercase;
  line-height: 1;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(180deg, #FB923C 0%, #EA580C 100%);
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.5),
    inset 0 -4px 0 rgba(120,40,8,0.34),
    0 10px 22px rgba(234,88,12,0.30);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.btn-3d:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.55),
    inset 0 -4px 0 rgba(120,40,8,0.34),
    0 16px 30px rgba(234,88,12,0.40);
}
.btn-3d:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 3px 8px rgba(120,40,8,0.40),
    0 4px 10px rgba(234,88,12,0.26);
}
.btn-3d:focus-visible { outline: 3px solid #7C2D12; outline-offset: 3px; }
.btn-3d--xl { font-size: 1.5rem; padding: 21px 56px; }

/* --- hero: group headline + subline + one big CTA, nudged up --- */
.hero-content { justify-content: center; gap: 22px; padding-top: 0; padding-bottom: 8vh; }
.hero-cta-group { margin-bottom: 0; }
.hero-headline-group { align-self: center; }

/* --- mascot fly-in + speech bubble (ark greeter) --- */
.ark-greet {
  position: fixed;
  right: 7vw;
  top: 19vh;
  z-index: 30;
  width: 120px;
  opacity: 0;
  transform: translate(60px, -20px) rotate(8deg);
  pointer-events: none;
  will-change: transform, opacity;
}
.ark-greet.flew-in {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.34,1.4,0.64,1);
}
.ark-greet img { width: 100%; height: auto; display: block; animation: arkBob 3s ease-in-out infinite; filter: drop-shadow(0 10px 18px rgba(120,40,8,0.25)); }
.ark-greet__bubble {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 6px) scale(0.8);
  margin-bottom: 6px;
  white-space: nowrap;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #C2410C;
  background: #fff;
  padding: 10px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(120,40,8,0.20);
  opacity: 0;
}
.ark-greet__bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #fff;
}
.ark-greet.flew-in .ark-greet__bubble {
  animation: arkSpeak 0.5s ease 0.7s forwards;
}
@keyframes arkSpeak {
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes arkBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 820px) {
  /* on small screens Ark stays in the hero and scrolls away (no flight) */
  .ark-greet { position: absolute; width: 92px; right: 5%; top: 18%; }
  .ark-greet__bubble { font-size: 0.9rem; }
}

/* --- waitlist popup modal --- */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wl-modal.open { display: flex; }
.wl-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(61,42,27,0.45);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  animation: wlFade 0.25s ease;
}
.wl-modal__card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #FFF7E8;
  border: 1.5px solid rgba(234,88,12,0.18);
  border-radius: 28px;
  padding: 30px 30px 28px;
  box-shadow: 0 40px 90px rgba(61,42,27,0.32);
  text-align: center;
  animation: wlPop 0.34s cubic-bezier(0.34,1.56,0.64,1);
}
.wl-modal__mascot { width: 76px; margin: -64px auto 6px; display: block; filter: drop-shadow(0 8px 16px rgba(120,40,8,0.22)); animation: arkBob 3s ease-in-out infinite; }
.wl-modal__title { font-family: 'EB Garamond','Georgia',serif; font-weight: 600; font-size: 1.95rem; color: #C2410C; letter-spacing: -0.01em; }
.wl-modal__sub { font-family: 'Fredoka',sans-serif; color: #6B5743; font-size: 0.98rem; margin-top: 6px; margin-bottom: 18px; }
.wl-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.wl-form label { font-family: 'Fredoka',sans-serif; font-size: 0.8rem; font-weight: 600; color: #6B5743; margin-bottom: -6px; letter-spacing: 0.02em; }
.wl-form input {
  font-family: 'Fredoka',sans-serif;
  font-size: 1rem;
  color: #3D2A1B;
  background: #fff;
  border: 1.5px solid rgba(234,88,12,0.22);
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.wl-form input:focus { border-color: #EA580C; box-shadow: 0 0 0 3px rgba(234,88,12,0.14); }
.wl-form .btn-3d { width: 100%; margin-top: 6px; }
.wl-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(61,42,27,0.06);
  color: #6B5743;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.16s ease;
}
.wl-modal__close:hover { background: rgba(61,42,27,0.12); }
.wl-modal__note { font-family: 'Fredoka',sans-serif; font-size: 0.78rem; color: #9A8369; margin-top: 12px; }
@keyframes wlFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes wlPop { from { opacity: 0; transform: translateY(18px) scale(0.95) } to { opacity: 1; transform: none } }

/* --- floating "get on the waitlist" CTA (appears during card scroll) --- */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9500;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-cta.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
@media (max-width: 560px) {
  .float-cta { bottom: 16px; }
  .float-cta .btn-3d { font-size: 0.95rem; padding: 13px 22px; }
}

/* ============================================================
   PHASE 2 — about overhaul, xyz rotator, contact page,
   hero readability
   ============================================================ */

/* hero readability: stronger, cleaner overlay so the headline wins */
.hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(26,16,8,0.34) 0%, rgba(26,16,8,0.24) 45%, rgba(26,16,8,0.44) 100%),
    radial-gradient(120% 78% at 50% 44%, rgba(26,16,8,0.06) 28%, rgba(26,16,8,0.36) 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.hero-headline { text-shadow: 0 2px 28px rgba(26,16,8,0.55), 0 1px 4px rgba(26,16,8,0.5); }

/* about: kill forced full-height gaps, calmer rhythm */
body[data-page="about"] .page-section { min-height: auto; }
body[data-page="about"] .section.about-section {
  padding-top: 92px;
  padding-bottom: 80px;
  min-height: 0;
}
body[data-page="about"] .about-cta.waitlist-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 62vh;
  padding-left: 24px;
  padding-right: 24px;
}
body[data-page="about"] .about-cta .waitlist-content {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* xyz rotating word */
.xyz-rotator {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  color: #C2410C;
  font-weight: 600;
}
.xyz-word {
  display: inline-block;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.xyz-word.swap-out { opacity: 0; transform: translateY(-8px); }
.xyz-word.swap-in { opacity: 0; transform: translateY(8px); }

/* vision: ark duo on a soft shelf, reads as part of the UI */
.vision-ark {
  position: relative;
  margin-top: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 460px;
}
.vision-ark-img { width: 96px; height: auto; position: relative; z-index: 2; animation: arkBob 3s ease-in-out infinite; }
.vision-ark-b { width: 80px; animation-delay: 0.6s; }
.vision-ark-shelf {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(234,88,12,0.22), rgba(234,88,12,0));
  z-index: 1;
}

/* how it works: two columns + image on the right, spaced numbers */
.hiw-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hiw-aside { display: flex; align-items: center; justify-content: center; }
.hiw-aside-img { width: min(260px, 80%); height: auto; animation: arkBob 3.4s ease-in-out infinite; filter: drop-shadow(0 16px 26px rgba(120,40,8,0.18)); }
.hiw-item { gap: 28px; }
.hiw-number { margin-right: 8px; }
@media (max-width: 860px) {
  .hiw-layout { grid-template-columns: 1fr; gap: 24px; }
  .hiw-aside { order: -1; }
  .hiw-aside-img { width: 150px; }
}

/* team: bigger breathing room */
.team-headline { margin-bottom: 40px; }
body[data-page="about"] .team-grid { gap: 32px; }
body[data-page="about"] .team-card { padding: 36px 24px 32px; gap: 14px; }

/* ready to grow: truly centered both axes */
.about-cta .waitlist-content { text-align: center; margin: 0 auto; }
.about-cta .waitlist-headline { text-align: center; }

/* ============ CONTACT PAGE ============ */
.contact-page {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  gap: 8px;
}
.contact-page .about-headline { margin-bottom: 6px; }
.contact-lead { font-family: 'Fredoka', sans-serif; font-size: clamp(1rem, 2vw, 1.25rem); color: #6B5743; max-width: 44ch; margin: 0 auto 14px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 18px;
  margin: 22px auto 8px;
}
.contact-tile {
  --c: #EA580C;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 20px;
  border-radius: 22px;
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--c) 26%, transparent);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.contact-tile:hover {
  transform: translateY(-4px);
  border-color: var(--c);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--c) 26%, transparent);
}
.contact-tile:focus-visible { outline: 3px solid var(--c); outline-offset: 3px; }
.contact-tile-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--c) 12%, #fff);
}
.contact-tile-icon svg { width: 26px; height: 26px; fill: var(--c); }
.contact-tile-label { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; color: #3D2A1B; }
.contact-tile-sub { font-family: 'Fredoka', sans-serif; font-size: 0.82rem; color: #9A8369; }
.contact-mascot { width: 96px; height: auto; margin: 4px auto 0; animation: arkBob 3s ease-in-out infinite; filter: drop-shadow(0 10px 18px rgba(120,40,8,0.2)); }
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PHASE 3 — cinematic hero atmosphere (Ken Burns + edge blend)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero-video {
    animation: heroKenBurns 28s ease-in-out infinite alternate;
    transform-origin: 55% 45%;
    will-change: transform;
  }
}
@keyframes heroKenBurns {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09); }
}
/* soft cream blend so the hero melts into the next section (cinematic depth) */
.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(253,250,246,0) 0%, #FDFAF6 100%);
  z-index: 3;
  pointer-events: none;
}

/* ============ a11y focus polish + mobile nav density ============ */
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #EA580C;
  outline-offset: 2px;
}
.faq-question:focus { outline: none; }
.faq-question:focus-visible { outline: 2px solid #EA580C; outline-offset: 3px; border-radius: 10px; }

/* stop the nav from squeezing on tiny screens: drop the wordmark text, tighten */
nav#navbar .nav-cta { white-space: nowrap; }
nav#navbar .nav-btn { white-space: nowrap; }
@media (max-width: 480px) {
  /* keep all page links visible (no hamburger); the long CTA chip moves out of
     the cramped pill since the hero + floating CTA already cover conversion */
  nav#navbar { gap: 7px; padding: 7px 16px; }
  nav#navbar .wordmark { display: none; }
  nav#navbar .nav-cta { display: none !important; }
  nav#navbar .nav-btn { padding: 7px 9px !important; font-size: 13px; }
  .nav-bird-logo { margin-right: 0; }
}

/* serif descenders (g/y/p) never clip in multi-line headings */
.stack-card-title { line-height: 1.12; padding-bottom: 0.06em; }
.about-headline { line-height: 1.12; padding-bottom: 0.04em; }

/* ============================================================
   PHASE 4 — hybrid: mono labels, trust, flow preview,
   "what is" grid band, scroll reveals
   ============================================================ */
.mono-label {
  font-family: ui-monospace, 'SF Mono', 'Menlo', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B0764A;
}

/* hero trust line under the CTA */
.hero-trust {
  margin-top: 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 8px rgba(26,16,8,0.5);
}
.hero-trust .mono-label {
  color: #fff;
  background: rgba(234, 88, 12, 0.9);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
}

/* solution-card workflow preview (product artifact) */
.flow-preview {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 66px;
  padding: 11px 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(61, 42, 27, 0.08);
  box-shadow: 0 6px 18px rgba(61, 42, 27, 0.06);
}
.flow-step-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.92rem; color: #3D2A1B; }
.flow-arrow { color: #C2410C; font-size: 1.05rem; }

/* "what is arkire" definitional band with faint technical grid */
.whatis {
  position: relative;
  padding: 96px 24px 104px;
  text-align: center;
  background: #FFFDF8;
  border-top: 1px solid rgba(61, 42, 27, 0.07);
  border-bottom: 1px solid rgba(61, 42, 27, 0.07);
  overflow: hidden;
}
.whatis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(61, 42, 27, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(61, 42, 27, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, black 28%, transparent 72%);
  pointer-events: none;
}
.whatis > * { position: relative; z-index: 1; }
.whatis .mono-label { display: inline-block; margin-bottom: 14px; }
.whatis-title { font-size: clamp(30px, 5vw, 56px); color: #C2410C; margin-bottom: 18px; }
.whatis-body {
  max-width: 56ch;
  margin: 0 auto;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
  color: #6B5743;
}

/* scroll reveals (applied to safe, non-hover containers via JS) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 560px) {
  .flow-preview { gap: 6px; }
  .flow-step { min-width: 54px; padding: 9px 5px; }
  .flow-step-name { font-size: 0.82rem; }
  .flow-arrow { font-size: 0.85rem; }
}

/* ============================================================
   PHASE 5 — feature product-artifacts + structural refinement
   ============================================================ */
.fa {
  margin-top: 12px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  color: #C2410C;
}
/* ar camera grid */
.fa-grid {
  display: grid;
  grid-template-columns: repeat(3, 10px);
  grid-auto-rows: 10px;
  gap: 3px;
  align-content: center;
  height: auto;
}
.fa-grid i { width: 10px; height: 10px; border-radius: 3px; background: rgba(194, 65, 12, 0.14); }
.fa-grid i.hot { background: #EA580C; box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18); }
/* frame + analytics bars */
.fa-frames b, .fa-bars b { width: 9px; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #FB923C, #EA580C); }
.fa-bars b { width: 8px; opacity: 0.92; }
/* brand match */
.fa-match { gap: 6px; align-items: center; }
.fa-chip { font-family: 'Fredoka', sans-serif; font-size: 11px; font-weight: 600; color: #C2410C; background: rgba(194, 65, 12, 0.08); padding: 4px 9px; border-radius: 999px; }
.fa-line { flex: 1; height: 2px; max-width: 28px; background: repeating-linear-gradient(90deg, #EA580C 0 4px, transparent 4px 8px); }
/* creator level */
.fa-level { gap: 8px; align-items: center; height: auto; }
.fa-track { flex: 1; height: 7px; border-radius: 999px; background: rgba(194, 65, 12, 0.12); overflow: hidden; }
.fa-fill { display: block; height: 100%; width: 72%; border-radius: 999px; background: linear-gradient(90deg, #FB923C, #EA580C); }
/* protected payment lock */
.fa-lock { gap: 7px; align-items: center; height: auto; }
.fa-lock svg { width: 22px; height: 22px; flex-shrink: 0; }

/* contact tiles: denser, crisper "channels" (per audit) */
.contact-cards { gap: 14px; }
.contact-tile { padding: 20px 18px; border-radius: 18px; border-width: 1.5px; gap: 8px; }
.contact-tile-icon { width: 46px; height: 46px; border-radius: 13px; }
.contact-tile-icon svg { width: 23px; height: 23px; }

/* ============================================================
   PHASE 6 — ABOUT page redesign (alternating rows, mockup,
   floating hint cards, big cards, proof strip, atmosphere)
   ============================================================ */
.about-main { position: relative; z-index: 1; }

/* atmosphere: soft blobs + faint dot grid */
.about-atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(64px); }
.blob-1 { width: 440px; height: 440px; background: radial-gradient(circle, rgba(251,146,60,0.30), transparent 70%); top: -90px; left: -110px; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,190,0,0.24), transparent 70%); top: 42%; right: -130px; }
.blob-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(234,88,12,0.20), transparent 70%); bottom: 4%; left: 8%; }
.about-atmos::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(61,42,27,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 92%);
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 92%);
}

/* alternating full-width rows */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 40px;
}
#mission.about-row { padding-top: 128px; }
.about-row.reverse .about-row-text { order: 2; }
.about-row.reverse .about-row-visual { order: 1; }
.about-row-text { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.about-row-text .about-headline { text-align: left; margin: 0; }
.about-row-text .journey-detail { text-align: left; margin: 0; max-width: 46ch; }
.about-row-text .story-aside { color: #B0764A; font-style: italic; }
.about-row-visual { display: flex; align-items: center; justify-content: center; }

/* stacked workflow mockup */
.mockup-stack { position: relative; width: min(430px, 100%); height: 430px; }
.mockup-card {
  position: absolute; width: 232px; padding: 15px 18px; border-radius: 20px;
  background: #fff; border: 1px solid rgba(61,42,27,0.08);
  box-shadow: 0 24px 60px rgba(61,42,27,0.14);
  display: flex; flex-direction: column; gap: 9px;
}
.mockup-card b { font-family: 'Fredoka', sans-serif; font-size: 1.05rem; color: #3D2A1B; }
.mc-1 { top: 0; left: 0; z-index: 4; }
.mc-2 { top: 74px; left: 64px; z-index: 3; }
.mc-3 { top: 156px; left: 18px; z-index: 2; }
.mc-4 { top: 238px; left: 86px; z-index: 1; }
.mc-scan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mc-scan span { height: 13px; border-radius: 4px; background: rgba(194,65,12,0.12); }
.mc-scan span.dot { background: #EA580C; }
.mc-frames { display: flex; align-items: flex-end; gap: 5px; height: 32px; }
.mc-frames i { width: 10px; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #FB923C, #EA580C); }
.mc-rec { display: flex; align-items: center; gap: 8px; font-family: 'Fredoka', sans-serif; font-weight: 600; color: #3D2A1B; font-variant-numeric: tabular-nums; }
.rec-dot { width: 10px; height: 10px; border-radius: 50%; background: #EF4444; animation: recPulse 1.2s infinite; }
@keyframes recPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.mc-bar { height: 8px; border-radius: 999px; background: rgba(194,65,12,0.12); overflow: hidden; }
.mc-bar span { display: block; height: 100%; width: 70%; background: linear-gradient(90deg, #FB923C, #EA580C); border-radius: 999px; }

/* floating hint cards */
.float-card {
  position: absolute; font-family: 'Fredoka', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: #C2410C; background: rgba(255,255,255,0.92);
  border: 1px solid rgba(234,88,12,0.18); padding: 7px 12px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(61,42,27,0.12);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  white-space: nowrap; animation: floaty 4s ease-in-out infinite;
}
.fc-1 { top: 6px; right: -34px; }
.fc-2 { top: 126px; right: -54px; animation-delay: 0.8s; }
.fc-3 { top: 236px; right: -24px; animation-delay: 1.6s; }
.fc-4 { bottom: -6px; left: -28px; animation-delay: 2.3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.scene-ark { position: absolute; bottom: -22px; right: -6px; width: 96px; z-index: 5; animation: arkBob 3s ease-in-out infinite; filter: drop-shadow(0 10px 18px rgba(120,40,8,0.22)); }

/* proof strip */
.about-proofs { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1180px; margin: 0 auto; padding: 24px 40px; }
.proof { display: flex; flex-direction: column; gap: 4px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; color: #3D2A1B; background: rgba(255,255,255,0.72); border: 1px solid rgba(61,42,27,0.08); border-radius: 16px; padding: 18px 22px; flex: 1; min-width: 220px; }

/* three big cards */
.about-cards-section { max-width: 1180px; margin: 0 auto; padding: 64px 40px; text-align: center; position: relative; z-index: 1; }
.about-cards-section .about-headline { margin-bottom: 40px; }
.three-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.big-card { text-align: left; padding: 32px 28px; border-radius: 26px; background: #fff; border: 1px solid rgba(61,42,27,0.08); box-shadow: 0 20px 50px rgba(61,42,27,0.08); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.big-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(234,88,12,0.16); }
.big-card-num { font-family: 'EB Garamond', serif; font-size: 3rem; font-weight: 700; color: #EA580C; line-height: 1; }
.big-card h3 { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; color: #3D2A1B; margin: 10px 0 8px; }
.big-card p { font-family: 'Fredoka', sans-serif; color: #6B5743; line-height: 1.55; }

/* mid-page CTA strip */
.cta-strip { position: relative; z-index: 1; max-width: 1100px; margin: 36px auto; padding: 48px 40px; border-radius: 30px; background: linear-gradient(135deg, #FFF3E8, #FFE8D4); border: 1px solid rgba(234,88,12,0.18); display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.cta-strip-title { font-family: 'EB Garamond', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: #C2410C; }

/* moods card */
.moods-card { background: #fff; border: 1px solid rgba(61,42,27,0.08); border-radius: 24px; padding: 18px; box-shadow: 0 20px 50px rgba(61,42,27,0.1); text-align: center; }
.moods-card .mono-label { display: block; margin-bottom: 10px; }
.moods-img { width: 100%; max-width: 380px; height: auto; display: block; margin: 0 auto; }

/* team + faq wraps */
.team-section-wrap, .faq-section-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 40px; text-align: center; position: relative; z-index: 1; }
.faq-section-wrap .faq-list { text-align: left; }
.team-section-wrap .about-headline, .faq-section-wrap .about-headline { margin-bottom: 36px; }

/* ready to grow centered */
.about-cta { position: relative; z-index: 1; padding: 76px 24px 96px; display: flex; justify-content: center; }
.about-cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.about-cta-inner .journey-detail { margin: 0; }

/* orange about headers + highlight */
body[data-page="about"] .about-headline { color: #C2410C; }
.hl { color: #EA580C; }

@media (max-width: 860px) {
  .about-row { grid-template-columns: 1fr; gap: 30px; padding: 52px 24px; }
  #mission.about-row { padding-top: 110px; }
  .about-row.reverse .about-row-text { order: 1; }
  .about-row.reverse .about-row-visual { order: 2; }
  .about-row-text { align-items: center; text-align: center; }
  .about-row-text .about-headline, .about-row-text .journey-detail { text-align: center; }
  .three-cards { grid-template-columns: 1fr; }
  .mockup-stack { margin: 0 auto; }
  .float-card { display: none; }
}

/* ============================================================
   PHASE 7 — flappy ark mini-game
   ============================================================ */
.ark-greet__bubble { cursor: pointer; }
.ark-game {
  position: fixed; inset: 0; z-index: 10060;
  display: none; align-items: center; justify-content: center;
  background: rgba(61,42,27,0.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 20px;
}
.ark-game.open { display: flex; }
.ark-game__panel {
  position: relative; background: #FFF7E8; border-radius: 28px; padding: 16px;
  box-shadow: 0 40px 90px rgba(61,42,27,0.4);
  animation: wlPop 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
.ark-game__head { position: relative; display: flex; align-items: center; margin-bottom: 10px; padding: 2px 8px; min-height: 34px; }
.ark-game__title { font-family: 'Fredoka', sans-serif; font-weight: 600; color: #C2410C; }
.ark-game__score { position: absolute; left: 50%; transform: translateX(-50%); font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.5rem; color: #3D2A1B; font-variant-numeric: tabular-nums; }
#ark-canvas {
  display: block; border-radius: 18px;
  background: linear-gradient(180deg, #CFE9F2 0%, #EAF6FB 100%);
  width: 360px; height: 480px; max-width: 78vw;
  touch-action: manipulation; cursor: pointer;
}
.ark-game__overlay {
  position: absolute; left: 16px; right: 16px; bottom: 16px; top: 60px;
  border-radius: 18px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: rgba(255,247,232,0.85); text-align: center; padding: 24px;
}
.ark-game__overlay.hidden { display: none; }
.ark-game__msg { font-family: 'Fredoka', sans-serif; color: #6B5743; max-width: 240px; font-size: 1.05rem; }
.ark-game__close {
  position: absolute; top: 12px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(61,42,27,0.06); color: #6B5743;
  font-size: 18px; border: none; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.ark-game__close:hover { background: rgba(61,42,27,0.12); }

/* ============ PHASE 8 — team contact overlay (centered + icons) ============ */
.team-card { overflow: hidden; }
.team-card-overlay {
  position: absolute !important; inset: 0 !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: auto !important;
  width: auto !important; height: 100% !important; margin: 0 !important;
  transform: none !important;
  background: rgba(26,16,8,0.93); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 18px; text-align: center; color: #FDFAF6; font-size: 12px; line-height: 1.5;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.team-card-overlay::after { display: none !important; }
.team-card:hover .team-card-overlay { opacity: 1; pointer-events: auto; transform: none !important; }
.tco-bio { margin: 0; }
.tco-links { display: flex; gap: 12px; }
.tco-icon { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); border: none; cursor: pointer; color: #fff; text-decoration: none; padding: 0; transition: background 0.18s ease; }
.tco-icon:hover { background: var(--accent, #EA580C); }
.tco-icon svg { width: 17px; height: 17px; fill: currentColor; }
.tco-email { font-size: 12px; }
.tco-email[hidden] { display: none; }
.tco-email a { color: #FFBE00; text-decoration: underline; }
@media (max-width: 768px) {
  .team-card-overlay { position: static !important; height: auto !important; opacity: 1 !important; pointer-events: auto !important; background: #FFF3E8; color: #3D2A1B; margin-top: 8px !important; border-radius: 14px; }
  .tco-icon { background: rgba(194,65,12,0.12); color: #C2410C; }
  .tco-email a { color: #C2410C; }
}

/* ponytail: visible native cursor (custom fire cursor was broken/invisible) */
.cursor-dot,.cursor-ring,.cursor-orb{display:none!important}
a,button,summary,[data-cursor],[role="button"],.btn-3d,.nav-btn,.nav-cta,.faq-question,.tco-icon,.contact-tile,.team-card{cursor:pointer}
input,textarea,select{cursor:text}
/* center team grid (now 4 members) */
.team-grid{grid-template-columns:repeat(auto-fit,minmax(190px,220px))!important;justify-content:center;max-width:1000px!important;gap:32px!important}
.whatis-hl{color:#C2410C;font-weight:600}

/* ============================================================
   PHASE N — section-scoped abstract shapes (a reusable kit) + iOS glass news blurb
   ============================================================ */
/* .sec-shapes lives INSIDE a position:relative white section, behind its text
   (section content is z-index:1). So shapes only appear on that section — never on
   the hero/first part, never over the mascot flight, and different sets per page.
   currentColor drives each shape's hue; form + position/size set per instance. */
.has-shapes { position: relative; isolation: isolate; }
.sec-shapes { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.sec-shapes .ash { position: absolute; }
/* feather edges of filled/angular forms so no hard box corner or clip line ever shows.
   rings/donuts are circular (no corners) and spots/grid carry their own soft mask. */
.sec-shapes .ash:not(.ash--ring):not(.ash--donut):not(.ash--spots):not(.ash--grid) {
  -webkit-mask-image: radial-gradient(circle, #000 48%, transparent 82%);
  mask-image: radial-gradient(circle, #000 48%, transparent 82%);
}

/* hues */
.ash--amber { color: rgba(255,170,0,0.50); }
.ash--coral { color: rgba(234,88,12,0.42); }
.ash--peach { color: rgba(251,146,60,0.46); }
.ash--rose  { color: rgba(244,114,182,0.32); }
.ash--gold  { color: rgba(255,200,40,0.55); }
.ash--ink   { color: rgba(61,42,27,0.12); }

/* forms — curves */
.ash--blob { border-radius: 47% 53% 60% 40% / 55% 42% 58% 45%; background: radial-gradient(circle, currentColor, transparent 72%); filter: blur(26px); }
.ash--leaf { border-radius: 8% 92% 28% 72% / 72% 8% 92% 28%; background: radial-gradient(circle, currentColor, transparent 74%); filter: blur(20px); }
.ash--pill { border-radius: 999px; background: radial-gradient(circle, currentColor, transparent 72%); filter: blur(18px); }
.ash--ring { border-radius: 50%; border: 12px solid currentColor; }
.ash--donut { border-radius: 50%; background: radial-gradient(closest-side, transparent 55%, currentColor 56% 70%, transparent 71%); }
/* forms — angles */
.ash--shard { clip-path: polygon(0 0, 100% 30%, 35% 100%); background: linear-gradient(135deg, currentColor, transparent); filter: blur(1px); }
.ash--diamond { background: linear-gradient(135deg, currentColor, transparent); transform: rotate(45deg); border-radius: 14%; }
/* forms — texture */
.ash--spots { background-image: radial-gradient(currentColor 2.3px, transparent 2.9px); background-size: 20px 20px; -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 72%); mask-image: radial-gradient(circle, #000 40%, transparent 72%); }
.ash--grid { background-image: linear-gradient(currentColor 1.5px, transparent 1.5px), linear-gradient(90deg, currentColor 1.5px, transparent 1.5px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(circle, #000 35%, transparent 72%); mask-image: radial-gradient(circle, #000 35%, transparent 72%); }

@media (max-width: 720px) {
  .sec-shapes .ash--spots, .sec-shapes .ash--grid, .sec-shapes .ash--shard,
  .sec-shapes .ash--diamond, .sec-shapes .ash--donut { display: none; }
  .sec-shapes .ash { opacity: 0.7; }
}

/* iOS liquid-glass news blurb, top-left */
.news-glass {
  /* absolute = only at top, scrolls away. left aligns to the 1100px content track */
  position: absolute; top: 96px; left: max(20px, calc((100vw - 1100px) / 2)); z-index: 60;
  display: flex; align-items: center; gap: 10px;
  max-width: min(340px, calc(100vw - 40px));
  padding: 10px 16px; border-radius: 18px;
  background: rgba(255,247,232,0.55);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 10px 34px rgba(61,42,27,0.16), inset 0 1px 0 rgba(255,255,255,0.6);
  font-family: 'Fredoka', sans-serif; font-size: 13.5px; line-height: 1.35;
  color: #3D2A1B;
}
.news-glass__dot { width: 8px; height: 8px; border-radius: 50%; background: #EA580C; flex: none; box-shadow: 0 0 0 4px rgba(234,88,12,0.18); }
.news-glass__label { font-weight: 700; color: #C2410C; }
@media (max-width: 600px) { .news-glass { top: 84px; left: 16px; font-size: 12.5px; padding: 8px 12px; } }

/* ============================================================
   PHASE N — large-display cap (stop content stretching on wide monitors)
   content tops out ~1440px and centers; <1520px viewports unchanged
   ============================================================ */
@media (min-width: 1521px) {
  .whatis,
  .stack-cards,
  .section,
  .page-section,
  .waitlist-band,
  .contact-page {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}
