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

:root {
  --bg: #FEF7EE;
  --bg-alt: #FDF1E0;
  --fg: #1C1714;
  --fg-muted: #6B5E54;
  --accent: #F05D3A;
  --accent-light: #FDE8E0;
  --teal: #5B8FA8;
  --teal-light: #E8F3F8;
  --gold: #C9A84C;
  --card: #FFFFFF;
  --border: #E8DDD4;
  --shadow: rgba(28, 23, 20, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* === NAV === */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-dot { color: var(--border); }

/* === HERO === */
.hero {
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,93,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  font-style: italic;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item { display: flex; flex-direction: column; }
.proof-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--fg);
}
.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Book Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.book-cover {
  display: flex;
  width: 280px;
  height: 360px;
  filter: drop-shadow(0 20px 60px rgba(240,93,58,0.25));
}
.cover-spine {
  width: 24px;
  background: linear-gradient(180deg, #D94F2D 0%, #B83D22 100%);
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
}
.cover-front {
  flex: 1;
  background: linear-gradient(135deg, #1E4A6B 0%, #2D6A8F 50%, #1E4A6B 100%);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cover-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cover-illustration {
  position: relative;
  width: 140px;
  height: 120px;
  margin-bottom: 20px;
}
.cover-character {
  position: absolute;
  bottom: 10px;
  left: 30px;
  width: 60px;
  height: 80px;
  background: linear-gradient(135deg, #FF8C6A 0%, #F05D3A 100%);
  border-radius: 30px 30px 20px 20px;
}
.cover-character::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFE0C8 0%, #F5C4A0 100%);
  border-radius: 50%;
}
.cover-character::after {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C84A 100%);
  border-radius: 50% 50% 0 0;
}
.cover-cat {
  position: absolute;
  bottom: 5px;
  right: 20px;
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #F05D3A 0%, #C44D2D 100%);
  border-radius: 20px 20px 10px 10px;
}
.cover-cat::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 6px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #F05D3A;
}
.cover-cat::after {
  content: '';
  position: absolute;
  top: -14px;
  right: 6px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #F05D3A;
}
.cover-stars {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 16px;
  height: 16px;
  background: #C9A84C;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.cover-stars::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -15px;
  width: 10px;
  height: 10px;
  background: #C9A84C;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.cover-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 6px;
  font-style: italic;
}
.cover-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-weight: 400;
}
.story-credits {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
  color: var(--fg-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

/* === SECTIONS === */
section { padding: 96px 48px; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 16px;
}
.section-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* === ANIMATED SECTION === */
.animated-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.video-frame {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0D2B4A 0%, #1A4A6B 40%, #2A6A8B 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,43,74,0.3);
}
.video-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.video-play-button::before {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.video-play-button svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.video-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(46,120,180,0.3) 100%);
}
.video-clouds {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
}
.cloud {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
}
.cloud-1 { width: 120px; height: 30px; top: 0; left: 20%; }
.cloud-2 { width: 80px; height: 20px; top: 30px; right: 25%; }
.video-character {
  position: absolute;
  bottom: 30%;
  left: 35%;
}
.vc-body {
  width: 40px;
  height: 60px;
  background: linear-gradient(135deg, #FF8C6A 0%, #F05D3A 100%);
  border-radius: 20px 20px 14px 14px;
  position: relative;
}
.vc-body::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #FFE0C8 0%, #F5C4A0 100%);
  border-radius: 50%;
}
.vc-body::after {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C84A 100%);
  border-radius: 50% 50% 0 0;
}
.vc-cape {
  position: absolute;
  bottom: 20px;
  left: -12px;
  width: 20px;
  height: 40px;
  background: rgba(240,93,58,0.6);
  border-radius: 50%;
  animation: cape-flutter 2s ease-in-out infinite;
}
@keyframes cape-flutter {
  0%, 100% { transform: skewX(-5deg) scaleY(1); }
  50% { transform: skewX(5deg) scaleY(0.9); }
}
.vc-cat {
  position: absolute;
  bottom: 5px;
  right: -25px;
  width: 28px;
  height: 20px;
  background: linear-gradient(135deg, #F05D3A 0%, #C44D2D 100%);
  border-radius: 14px 14px 8px 8px;
}
.vc-cat::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 4px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #F05D3A;
}
.vc-cat::after {
  content: '';
  position: absolute;
  top: -10px;
  right: 4px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #F05D3A;
}
.video-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vf-icon {
  width: 40px;
  height: 40px;
  background: var(--card);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--shadow);
}
.vf-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}
.vf-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* === CHARACTERS === */
.characters-section { background: var(--bg); }
.character-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.story-card {
  text-align: center;
}
.sc-illustration {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.sc-fairy { background: linear-gradient(135deg, #E8D4F0 0%, #D4A8E8 100%); }
.sc-space { background: linear-gradient(135deg, #0D2040 0%, #1A3A6B 100%); }
.sc-ocean { background: linear-gradient(135deg, #1A5A8A 0%, #2A8AAA 100%); }
.ci-hero {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 55%;
  border-radius: 25px 25px 18px 18px;
}
.fairy-hero {
  background: linear-gradient(135deg, #FF8C6A 0%, #F05D3A 100%);
}
.fairy-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C84A 100%);
  border-radius: 50% 50% 0 0;
}
.space-hero {
  background: linear-gradient(135deg, #4A9ED8 0%, #2D7AB8 100%);
}
.space-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50% 50% 0 0;
}
.ocean-hero {
  background: linear-gradient(135deg, #FF8C6A 0%, #F05D3A 100%);
}
.ocean-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40%;
  background: linear-gradient(135deg, #5BC8A8 0%, #3DA88A 100%);
  border-radius: 50% 50% 0 0;
}
.ci-sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #C9A84C;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.s1 { top: 20%; right: 15%; }
.s2 { top: 35%; left: 12%; width: 8px; height: 8px; }
.ci-star {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 14px;
  height: 14px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.ci-planet {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B6FC0 0%, #6B4FA0 100%);
  border: 2px solid rgba(255,255,255,0.2);
}
.ci-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.b1 { width: 20px; height: 20px; top: 15%; right: 20%; }
.b2 { width: 14px; height: 14px; top: 30%; left: 15%; }
.ci-fish {
  position: absolute;
  bottom: 25%;
  right: 15%;
  width: 20px;
  height: 12px;
  background: #F05D3A;
  border-radius: 50% 0 50% 0;
}
.sc-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}
.character-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* === THEMES === */
.themes-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.theme-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}
.tc-bg {
  position: absolute;
  inset: 0;
}
.tc-fairy .tc-bg {
  background: linear-gradient(160deg, #F3E4FF 0%, #E8D0F0 100%);
}
.tc-space .tc-bg {
  background: linear-gradient(160deg, #0D2040 0%, #1A3A6B 100%);
}
.tc-nature .tc-bg {
  background: linear-gradient(160deg, #E8F5E4 0%, #C8E4C4 100%);
}
.tc-ocean .tc-bg {
  background: linear-gradient(160deg, #D0EEF8 0%, #A8D8EC 100%);
}
.tc-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tc-icon { margin-bottom: 16px; }
.tc-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  font-style: italic;
}
.tc-content p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PRICING === */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pc-premium {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(240,93,58,0.12);
}
.pc-tier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pc-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg);
}
.pc-disabled { color: var(--fg-muted) !important; }
.pc-cancel {
  font-size: 0.78rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* === CLOSING === */
.closing-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-content { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 16px;
}
.closing-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-visual { margin-bottom: 40px; }
.cv-frame {
  width: 280px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(180deg, #1A2A4A 0%, #0D1A30 100%);
  border-radius: var(--radius);
  overflow: hidden;
}
.cv-moon {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FFE8A0 0%, #FFD060 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,224,160,0.5);
}
.cv-stars {
  position: absolute;
  inset: 0;
}
.cv-stars::before, .cv-stars::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.6);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.cv-stars::before { width: 10px; height: 10px; top: 30px; left: 50px; }
.cv-stars::after { width: 7px; height: 7px; top: 50px; left: 100px; }
.cv-book {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, #C44D2D 0%, #F05D3A 100%);
  border-radius: 4px 8px 8px 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.cv-glow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: rgba(240,93,58,0.2);
  border-radius: 50%;
  filter: blur(8px);
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fg-muted);
}

/* === FOOTER === */
.site-footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === MEET YOUR HERO === */
.myh-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.myh-inner {
  max-width: 960px;
  margin: 0 auto;
}
.myh-header {
  text-align: center;
  margin-bottom: 48px;
}
.myh-header .section-headline { max-width: 100%; }
.myh-header .section-lede { margin: 0 auto; }

/* Form */
.myh-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: 0 8px 32px var(--shadow);
}
.myh-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.myh-field--name { grid-column: span 2; }
.myh-field--fav  { grid-column: span 2; }
.myh-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.myh-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.myh-input:focus { border-color: var(--accent); background: white; }
.myh-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5E54' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.myh-error {
  color: #C0392B;
  font-size: 0.82rem;
  margin-bottom: 10px;
  font-weight: 500;
}

/* CTA Button */
.myh-cta-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 4px 18px rgba(240, 93, 58, 0.35);
  text-align: center;
}
.myh-cta-btn:hover { background: #D44E2E; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(240,93,58,0.4); }
.myh-cta-btn:active { transform: translateY(0); }
.myh-cta-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.myh-cta-btn--sm { padding: 12px 20px; font-size: 0.92rem; margin-top: 10px; }

/* Loading */
.myh-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
.myh-loading-inner { text-align: center; }
.myh-spinner-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}
.myh-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: myh-spin 0.8s linear infinite;
}
@keyframes myh-spin { to { transform: rotate(360deg); } }
.myh-loading-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 6px;
}
.myh-loading-sub { font-size: 0.82rem; color: var(--fg-muted); }

/* Result layout */
.myh-result-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.myh-illustration-wrap { position: sticky; top: 90px; }
.myh-illustration {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,23,20,0.18);
  aspect-ratio: 5/6;
  background: var(--bg-alt);
}
.myh-illustration svg { width: 100%; height: 100%; display: block; }
.myh-illus-caption {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

/* Story side */
.myh-story-header { margin-bottom: 20px; }
.myh-story-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.myh-story-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--fg);
  line-height: 1.2;
}
.myh-paragraph-wrap { margin-bottom: 28px; }
.myh-paragraph {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.75;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

/* Email gate */
.myh-gate { position: relative; margin-bottom: 24px; }
.myh-gate-blur-overlay {
  position: relative;
  overflow: hidden;
}
.myh-gate-blur-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: linear-gradient(180deg, transparent 0%, var(--bg) 60%);
}
.myh-gate-blur-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.75;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  padding-bottom: 32px;
}
.myh-gate-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  margin-top: 12px;
}
.myh-gate-icon { font-size: 2rem; margin-bottom: 10px; }
.myh-gate-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 8px;
}
.myh-gate-sub {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Unlocked */
.myh-unlocked { margin-bottom: 24px; }
.myh-unlock-badge {
  display: inline-block;
  background: #E8F5E4;
  color: #2A7A40;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.myh-unlock-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pre-order CTA */
.myh-preorder-cta { text-align: center; }
.myh-preorder-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.myh-preorder-btn:hover { background: #2D2420; transform: translateY(-1px); }
.myh-preorder-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* Restart */
.myh-restart-btn {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 0.85rem;
  font-family: var(--font-body);
  cursor: pointer;
  margin-top: 32px;
  padding: 8px 0;
  display: block;
  transition: color 0.15s;
}
.myh-restart-btn:hover { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .video-mockup { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .character-showcase { grid-template-columns: repeat(3, 1fr); }
  .myh-result-inner { grid-template-columns: 1fr; gap: 32px; }
  .myh-illustration-wrap { position: static; }
}

@media (max-width: 640px) {
  .site-nav { padding: 16px 24px; }
  .nav-stats { display: none; }
  .hero { padding: 56px 24px 48px; }
  section { padding: 64px 24px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .theme-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .character-showcase { grid-template-columns: 1fr 1fr; }
  .character-showcase .story-card:last-child { display: none; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; }
  .book-cover { width: 220px; height: 284px; }
  .myh-form-wrap { padding: 24px 18px; }
  .myh-fields { grid-template-columns: 1fr; }
  .myh-field--name,
  .myh-field--fav { grid-column: span 1; }
  .myh-section { padding: 56px 16px; }
}
/* === FOUNDING FAMILY CTA === */
.founding-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
  white-space: nowrap;
}
.founding-btn:hover { background: #d94e2b; transform: translateY(-1px); }
.founding-btn:active { transform: translateY(0); }

/* Hero CTA block */
.founding-hero-cta {
  margin: 28px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.founding-hero-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.founding-hero-price strong { color: var(--accent); font-weight: 700; }
.founding-hero-price s { color: var(--fg-muted); }
.founding-hero-counter { color: var(--fg-muted); }
.founding-refund-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}
.founding-refund-note--center { text-align: center; }

/* Closing CTA block */
.founding-closing-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 32px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.founding-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.founding-badge {
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.founding-badge-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.founding-closing-headline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  line-height: 1.3;
}
.founding-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.founding-price-old {
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.founding-price-new {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--accent);
}
.founding-btn--closing { font-size: 1.05rem; padding: 16px 32px; }
.founding-closing-counter {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Preview flow CTA */
.founding-btn--preview {
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
}

/* === CHECKOUT SUCCESS PAGE === */
.success-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.success-inner { display: flex; flex-direction: column; gap: 40px; }

.success-hero { text-align: center; }
.success-confetti { font-size: 3rem; margin-bottom: 12px; }
.success-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 12px;
}
.success-subhead {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Details form card */
.success-form-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: 0 4px 24px var(--shadow);
}
.success-form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.success-form-sub { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 24px; }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.sf-field { display: flex; flex-direction: column; gap: 6px; }
.sf-label { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.sf-required { color: var(--accent); }
.sf-input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
}
.sf-input:focus { outline: none; border-color: var(--accent); }
.sf-select { appearance: none; cursor: pointer; }
.sf-error {
  color: #c0392b;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: #fff0ee;
  border-radius: 6px;
  margin-bottom: 12px;
}
.sf-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.18s;
}
.sf-submit:hover { background: #d94e2b; }
.sf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.sf-refund-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 10px;
  font-style: italic;
}

/* Confirmed state */
.success-confirmed { text-align: center; }
.sc-check {
  width: 60px; height: 60px;
  background: #e8f8ef;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #27ae60;
  margin: 0 auto 16px;
  font-weight: 700;
  line-height: 60px;
}
.sc-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.sc-body { font-size: 1rem; color: var(--fg-muted); margin-bottom: 20px; }
.sc-home-link { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.sc-home-link:hover { text-decoration: underline; }

/* Counter */
.success-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.sc-count { font-size: 0.95rem; color: var(--fg); }
.sc-count strong { color: var(--accent); }
.sc-left { font-size: 0.85rem; color: var(--fg-muted); }

/* What happens next */
.success-steps { background: var(--bg-alt); border-radius: var(--radius); padding: 28px 32px; }
.ss-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.ss-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.ss-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ss-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 32px;
  text-align: center;
}
.ss-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.ss-item p { font-size: 0.9rem; color: var(--fg-muted); }

@media (max-width: 540px) {
  .sf-row { grid-template-columns: 1fr; }
  .success-form-card { padding: 24px 20px; }
  .founding-closing-cta { padding: 28px 20px; }
  .founding-hero-cta { align-items: stretch; }
  .founding-btn--hero { text-align: center; }
}

/* ──────────────────────────────────────────────────────
   INTAKE FLOW  (/intake/:orderId)
   Multi-step story brief form for Founding Family buyers
────────────────────────────────────────────────────── */
.intake-section {
  min-height: calc(100vh - 200px);
  padding: 48px 24px 80px;
  background: var(--bg);
}
.intake-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* Progress bar */
.intake-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.ip-bar {
  flex: 1;
  height: 6px;
  background: #E8DDD4;
  border-radius: 99px;
  overflow: hidden;
}
.ip-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.4s ease;
}
.ip-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  white-space: nowrap;
  font-family: var(--sans);
}

/* Step panels */
.intake-step { animation: fadeSlide 0.22s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.is-header {
  margin-bottom: 28px;
  text-align: center;
}
.is-emoji {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.is-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--fg);
  margin-bottom: 6px;
}
.is-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* Fields */
.is-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.if-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.if-row--check {
  grid-template-columns: 1fr;
}
.if-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.if-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--sans);
}
.if-hint {
  font-weight: 400;
  color: var(--fg-muted);
}
.if-req { color: var(--accent); }
.if-input {
  padding: 11px 14px;
  border: 1.5px solid #D9CFC8;
  border-radius: 10px;
  font-size: 0.97rem;
  font-family: var(--sans);
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.if-input:focus { border-color: var(--accent); }
.if-select { cursor: pointer; }
.if-textarea { resize: vertical; min-height: 80px; }
.if-textarea--lg { min-height: 120px; }
.if-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--fg);
  font-family: var(--sans);
}
.if-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.if-char-count {
  font-size: 0.78rem;
  color: var(--fg-muted);
  align-self: flex-end;
}
.if-skip-note { text-align: center; margin-top: 4px; }
.if-skip-btn {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.if-skip-btn:hover { color: var(--fg); }

/* Photo upload */
.photo-upload-zone {
  border: 2px dashed #D9CFC8;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.photo-upload-zone:hover,
.photo-upload-zone.puz--drag {
  border-color: var(--accent);
  background: #FEF7EE;
}
.puz-icon { font-size: 2rem; margin-bottom: 8px; }
.puz-text {
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  font-family: var(--sans);
}
.puz-hint {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.photo-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.photo-thumb {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #E8DDD4;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-remove {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 22px; height: 22px;
  font-size: 0.7rem;
  cursor: pointer;
  line-height: 22px;
  text-align: center;
  padding: 0;
}

/* Theme picker */
.theme-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.theme-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid #E8DDD4;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: var(--sans);
}
.theme-card input[type="radio"] { display: none; }
.theme-card:hover { border-color: var(--accent); background: #FEF7EE; }
.theme-card--active { border-color: var(--accent); background: #FEF7EE; }
.tc-emoji { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.tc-name  { font-weight: 600; color: var(--fg); font-size: 0.97rem; display: block; }
.tc-desc  { font-size: 0.85rem; color: var(--fg-muted); margin-top: 2px; display: block; }

/* Error */
.if-error {
  padding: 12px 16px;
  background: #FEF1F0;
  border: 1px solid #F9B0A7;
  border-radius: 8px;
  color: #C0392B;
  font-size: 0.9rem;
  font-family: var(--sans);
}

/* Navigation buttons */
.intake-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  align-items: center;
}
.intake-back-btn {
  background: none;
  border: 2px solid #D9CFC8;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 0.97rem;
  font-family: var(--sans);
  cursor: pointer;
  color: var(--fg-muted);
  font-weight: 600;
  transition: border-color 0.15s;
  margin-right: auto;
}
.intake-back-btn:hover { border-color: var(--fg-muted); }
.intake-next-btn,
.intake-submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
}
.intake-next-btn:disabled,
.intake-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.intake-submit-btn { background: #2E7D32; }

/* Done page */
.intake-done-section {
  min-height: calc(100vh - 200px);
  padding: 64px 24px 80px;
  background: var(--bg);
}
.intake-done-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.id-confetti { font-size: 3.5rem; margin-bottom: 16px; }
.id-headline {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--fg);
  margin-bottom: 14px;
}
.id-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.id-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.id-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ids-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.id-step strong { display: block; font-weight: 600; margin-bottom: 4px; }
.id-step p { font-size: 0.9rem; color: var(--fg-muted); margin: 0; }
.id-home-link {
  display: inline-block;
  color: var(--accent);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
}
.id-home-link:hover { text-decoration: underline; }

@media (max-width: 540px) {
  .if-row { grid-template-columns: 1fr; }
  .intake-section, .intake-done-section { padding: 32px 16px 60px; }
  .intake-nav { flex-direction: column; align-items: stretch; }
  .intake-back-btn { margin-right: 0; order: 2; }
  .intake-next-btn, .intake-submit-btn { order: 1; }
}
