/* ============================================
   FAITHPRINT — Design System & Global Styles
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  /* Core palette - warm, earthy, inspired by the geometric illustration */
  --color-primary: #1A5653;
  --color-primary-light: #237A76;
  --color-primary-dark: #0F3634;
  --color-accent: #C8943E;
  --color-accent-light: #D4A85C;
  --color-accent-dark: #A67A2E;

  /* Extended palette for geometric elements */
  --color-mauve: #8B7B8B;
  --color-mauve-light: #A99BA9;
  --color-sand: #D4C5B0;
  --color-terracotta: #9B6B5A;

  /* Backgrounds */
  --color-bg: #FAF7F2;
  --color-bg-warm: #F5F0E8;
  --color-bg-cool: #F0F5F4;

  /* Text */
  --color-text: #2D2D2D;
  --color-text-light: #5A5A5A;
  --color-text-muted: #8A8580;

  /* UI */
  --color-border: #E8E4DF;
  --color-card: #FFFFFF;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing & Sizing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.11);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
}


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

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

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

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 100px 0;
}

.section--sm {
  padding: 60px 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Section tag */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}


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

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

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

@keyframes orbit {
  from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

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

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo:hover {
  color: var(--color-primary);
}

.nav__logo-mark {
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav__logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav__links a:hover { color: var(--color-text); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--color-primary); }
.nav__links a.active::after { width: 100%; }

.nav__cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition-fast) !important;
}

.nav__cta:hover {
  background: var(--color-primary-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 86, 83, 0.2);
}

.nav__cta::after { display: none !important; }

/* Mobile Nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  background: #FAF7F2;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  visibility: hidden;
  opacity: 0;
}

.nav__mobile.open {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.nav__mobile a {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.btn svg {
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 83, 0.25);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 148, 62, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-light);
  padding: 12px 20px;
}

.btn--ghost:hover {
  color: var(--color-primary);
  background: rgba(26, 86, 83, 0.05);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--color-bg);
}

/* Geometric background canvas */
.hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Geometric shapes - inspired by the isometric illustration style */
.geo {
  position: absolute;
  opacity: 0.06;
}

.geo--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -5%;
  background: var(--color-primary);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: float 20s ease-in-out infinite;
}

.geo--2 {
  width: 280px;
  height: 280px;
  bottom: 15%;
  left: -3%;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: float 16s ease-in-out infinite 2s;
}

.geo--3 {
  width: 180px;
  height: 180px;
  top: 35%;
  left: 15%;
  background: var(--color-mauve);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: float 18s ease-in-out infinite 4s;
}

.geo--4 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 25%;
  background: var(--color-terracotta);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float 14s ease-in-out infinite 1s;
}

/* Hero layout */
.hero__container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

/* Hero text content */
.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.1s forwards;
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.2s forwards;
}

.hero__title-em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.3s forwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.4s forwards;
}

.hero__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Hero visual - mystery character */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
}

.hero__figure {
  position: relative;
  width: 220px;
  height: 220px;
}

.hero__figure-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__figure-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 148, 62, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255, 0.08) 0%, transparent 40%);
}

.hero__figure-letter {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.hero__figure-orbit {
  position: absolute;
  inset: -30px;
  animation: orbit 30s linear infinite;
  pointer-events: none;
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.orbit-dot--1 {
  background: var(--color-accent);
  animation: orbit 12s linear infinite;
}

.orbit-dot--2 {
  background: var(--color-mauve);
  animation: orbit 18s linear infinite reverse;
}

.orbit-dot--3 {
  background: var(--color-terracotta);
  animation: orbit 24s linear infinite;
}

.hero__figure-label {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.6s ease 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scrollLine 2s ease-in-out infinite;
}


/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--color-bg-warm);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.process__header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 80px;
}

.process__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

/* Connecting line between steps */
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  opacity: 0.25;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.process__step-num::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.process__step-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.process__step-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}


/* ============================================
   CHARACTERS PREVIEW
   ============================================ */
.characters-preview {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.characters-preview__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(26, 86, 83, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 148, 62, 0.03) 0%, transparent 50%);
}

.characters-preview__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
  position: relative;
}

.characters-preview__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.characters-preview__header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Character grid - asymmetric masonry-like */
.characters-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Preview cards */
.preview-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  display: block;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}

.preview-card__visual {
  height: 140px;
  background: linear-gradient(
    135deg,
    hsl(var(--card-hue, 175), 45%, 25%) 0%,
    hsl(var(--card-hue, 175), 40%, 18%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.preview-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 148, 62, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255, 0.06) 0%, transparent 50%);
}

.preview-card__initial {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.preview-card__info {
  padding: 20px;
}

.preview-card__stage {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}

.preview-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.preview-card__trait {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Featured card spans 2 rows */
.preview-card--featured {
  grid-row: span 2;
}

.preview-card--featured .preview-card__visual {
  height: 240px;
}

.preview-card--featured .preview-card__initial {
  font-size: 4rem;
}

.preview-card--featured .preview-card__info {
  padding: 24px;
}

.preview-card--featured .preview-card__name {
  font-size: 1.5rem;
}

.characters-preview__more {
  text-align: center;
  margin-top: 56px;
}


/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
  padding: 100px 0;
  background: var(--color-bg-warm);
  position: relative;
}

.proof::before,
.proof::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.proof::before { top: 0; }
.proof::after { bottom: 0; }

.proof__content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.proof__quote {
  border: none;
  margin: 0;
  padding: 0;
}

.proof__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 20px;
}

.proof__quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.proof__stats {
  display: flex;
  gap: 40px;
}

.proof__stat {
  text-align: center;
}

.proof__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.proof__stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: var(--color-bg);
}

.final-cta__inner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.final-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 148, 62, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.final-cta__text {
  position: relative;
}

.final-cta__text h2 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.final-cta__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin: 0;
}

.final-cta .btn {
  position: relative;
  flex-shrink: 0;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: flex;
  gap: 80px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================
   QUIZ PAGE
   ============================================ */
.quiz-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.quiz-header__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.quiz-header__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.quiz-header__close:hover {
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.quiz-progress {
  height: 4px;
  background: var(--color-border);
  position: relative;
}

.quiz-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: width 0.5s ease;
}

.quiz-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.quiz-intro {
  text-align: center;
  max-width: 520px;
}

.quiz-intro__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}

.quiz-intro h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.quiz-intro p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.quiz-question {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.quiz-question__count {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.quiz-question__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 48px;
}

.quiz-slider {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 16px;
}

.quiz-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.825rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.quiz-slider input[type="range"] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-border);
  border-radius: 4px;
  outline: none;
}

.quiz-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26, 86, 83, 0.3);
  transition: transform var(--transition-fast);
}

.quiz-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.quiz-slider__ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  margin-top: 8px;
}

.quiz-slider__ticks span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   RESULTS PAGE
   ============================================ */
.results-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.results-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26, 86, 83, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(200, 148, 62, 0.06) 0%, transparent 40%);
}

.results-hero__char {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  animation: scaleIn 0.8s ease forwards;
}

.results-hero__char::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0.3;
}

.results-hero__char-initial {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.results-hero__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.results-hero__name {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.45s forwards;
  opacity: 0;
}

.results-hero__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 28px;
  animation: fadeInUp 0.6s ease 0.75s forwards;
  opacity: 0;
}

.journey-badge--seeker { background: rgba(26, 86, 83, 0.08); color: var(--color-primary); }
.journey-badge--growth { background: rgba(76, 153, 76, 0.1); color: #3D8B3D; }
.journey-badge--committed { background: rgba(200, 148, 62, 0.12); color: var(--color-accent-dark); }
.journey-badge--mature { background: rgba(128, 90, 50, 0.1); color: #6B4E2E; }

.result-section {
  padding: 64px 0;
  border-top: 1px solid var(--color-border);
}

.result-section__title {
  font-size: 1.6rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-section__title span {
  font-size: 1.2rem;
}

.result-section__body {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
}

.traits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.trait-column {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
}

.trait-column__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trait-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-light);
}

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

.trait-item strong {
  color: var(--color-text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.share-section {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.next-steps {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
}

.tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.tab {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.tab:hover { color: var(--color-text); }

.tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-content { display: none; }
.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.resource-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resource-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26, 86, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.resource-card__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.resource-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}


/* ============================================
   CHARACTERS BROWSE PAGE
   ============================================ */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(26, 86, 83, 0.06) 0%, transparent 50%);
}

.page-header h1 {
  position: relative;
  margin-bottom: 16px;
}

.page-header p {
  position: relative;
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-card);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.characters-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding-bottom: 80px;
}

/* Character cards for browse page */
.char-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.char-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  color: inherit;
}

.char-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.char-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 148, 62, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255, 0.08) 0%, transparent 50%);
}

.char-card__initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.char-card__body {
  padding: 20px;
}

.char-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.char-card__tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.char-card__badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(26, 86, 83, 0.08);
  color: var(--color-primary);
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.about-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.about-value-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 28px;
}

.about-value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.about-value-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-value-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}


/* ============================================
   AI CHAT WIDGET (Placeholder)
   ============================================ */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}

.chat-fab__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 86, 83, 0.35);
  transition: all var(--transition-fast);
}

.chat-fab__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(26, 86, 83, 0.45);
}

.chat-fab__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  height: 520px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  z-index: 901;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: scaleIn 0.3s ease;
}

.chat-window.open { display: flex; }

.chat-window__header {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-window__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.chat-window__subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.chat-window__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.chat-window__body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-text-muted);
}

.chat-window__body-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.chat-window__body p {
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.6;
}

.chat-window__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 8px;
}

.chat-window__input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  background: var(--color-bg);
  transition: border-color var(--transition-fast);
}

.chat-window__input:focus { border-color: var(--color-primary); }

.chat-window__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  opacity: 0.4;
}


/* ============================================
   FAQ PAGE
   ============================================ */
.faq-content {
  padding: 0 0 80px;
}

.faq-section {
  margin-bottom: 48px;
}

.faq-section__title {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-item__question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition-fast);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover {
  background: var(--color-bg-warm);
}

.faq-item__answer {
  padding: 0 24px 24px;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.75;
  animation: fadeIn 0.3s ease;
}

.faq-item__answer p {
  margin-bottom: 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-item__answer li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-item__answer li:last-child {
  margin-bottom: 0;
}

.faq-item__answer strong {
  color: var(--color-text);
}

.faq-item__answer a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  color: var(--color-accent);
}

.faq-item__answer em {
  font-style: italic;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero__content {
    max-width: 580px;
    margin: 0 auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .characters-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .preview-card--featured {
    grid-row: span 1;
  }

  .preview-card--featured .preview-card__visual {
    height: 140px;
  }

  .preview-card--featured .preview-card__initial {
    font-size: 2.8rem;
  }

  .proof__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .proof__stats {
    justify-content: center;
  }

  .final-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .footer__grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .section { padding: 80px 0; }

  .geo--1 { width: 280px; height: 280px; }
  .geo--2 { width: 180px; height: 180px; }
  .geo--3 { width: 120px; height: 120px; display: none; }
  .geo--4 { display: none; }

  .hero__figure {
    width: 180px;
    height: 180px;
  }

  .hero__figure-letter {
    font-size: 4rem;
  }

  .hero__scroll { display: none; }

  .process {
    padding: 80px 0;
  }

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

  .process__steps::before { display: none; }

  .process__step {
    display: flex;
    gap: 24px;
    text-align: left;
  }

  .process__step-num {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process__step-content p {
    margin: 0;
    max-width: none;
  }

  .characters-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .traits-grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .chat-window {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 88px;
  }

  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__figure {
    width: 160px;
    height: 160px;
  }

  .hero__figure-letter {
    font-size: 3.5rem;
  }

  .characters-preview__grid {
    grid-template-columns: 1fr;
  }

  .preview-card__visual {
    height: 120px;
  }

  .proof__stats {
    flex-direction: column;
    gap: 24px;
  }

  .char-card__image {
    height: 160px;
  }

  .resource-card {
    flex-direction: column;
    gap: 12px;
  }

  .faq-item__question {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .faq-item__answer {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }

  .faq-section__title {
    font-size: 1.3rem;
  }
}
