:root {
  --bg: #faf7f2;
  --bg-card: #ffffff;
  --bg-warm: #fff5ee;
  --accent: #FF6B35;
  --accent-light: #ff8c42;
  --teal: #4DB6AC;
  --text-dark: #2d2d2d;
  --text-body: #666666;
  --text-muted: #999999;
  --border: #e8e0d6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-sm: 18px;
  --radius-btn: 100px;
  --max-content: 680px;
  --max-grid: 800px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  font-size: clamp(24px, 3.5vw, 32px);
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

img, svg {
  max-width: 100%;
  height: auto;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__logo .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.site-header__logo .zoo {
  color: var(--accent);
}

.site-header__nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-header__nav a {
  color: var(--text-body);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.3s;
}

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

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

.section {
  padding: 60px 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: 48px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.35);
  color: #fff;
}

.btn--secondary {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-dark);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-body);
}

.btn--ghost:hover {
  border-color: var(--text-body);
  color: var(--text-dark);
}

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

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

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* === HERO === */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero__micro {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* === ANIMAL PARADE === */
.animal-parade {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.animal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: block;
  color: inherit;
}

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

.animal-card__svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  display: block;
}

.animal-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.animal-card__title {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* === HOW IT WORKS === */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.how-step {
  padding: 20px;
}

.how-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step h3 {
  margin-bottom: 8px;
}

/* === VALUE POINTS === */
.value-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-point {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.value-point__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.value-point p {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
}

/* === QUIZ === */
.quiz-container {
  max-width: 600px;
  margin: 0 auto;
}

.quiz-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.quiz-disclaimer-chip {
  display: inline-block;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.quiz-progress {
  margin-bottom: 28px;
}

.quiz-progress__bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  border-radius: var(--radius-btn);
  transition: width 0.4s ease;
}

.quiz-progress__label {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz-question {
  animation: slideIn 0.35s ease;
}

.quiz-question__text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.35;
}

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

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-body);
  transition: all 0.2s ease;
  min-height: 56px;
}

.quiz-option:hover {
  border-color: #FFB74D;
  background: var(--bg-warm);
}

.quiz-option--selected {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.quiz-option__badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.quiz-option--selected .quiz-option__badge {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.quiz-option__text {
  flex: 1;
  line-height: 1.5;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.quiz-nav__left {
  display: flex;
  gap: 12px;
}

.quiz-daily-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* === QUIZ START === */
.quiz-start {
  text-align: center;
  padding: 20px 0;
}

.quiz-start h2 {
  margin-bottom: 12px;
}

.quiz-start p {
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* === MATCHING ANIMATION === */
.matching-screen {
  text-align: center;
  padding: 40px 0;
}

.matching-screen__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.orbit-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  animation: pulse 1.2s ease-in-out infinite;
}

.orbit-item {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  animation: orbit 4s linear infinite;
}

.orbit-item svg {
  width: 100%;
  height: 100%;
}

/* === RESULT CARD === */
.result-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: revealScale 0.5s ease;
}

.result-card__svg {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  animation: gentleFloat 3s ease-in-out infinite;
}

.result-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.result-card__name {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.result-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}

.result-card__diagnosis {
  font-size: 16px;
  color: var(--text-body);
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.result-stat {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
}

.result-stat__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.result-stat__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
}

.result-gauge {
  margin: 20px 0;
}

.result-gauge__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: left;
}

.result-gauge__bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.result-gauge__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: var(--radius-btn);
  transition: width 0.8s ease;
}

.result-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--text-dark);
  margin: 24px auto;
  max-width: 400px;
  line-height: 1.5;
  position: relative;
  padding: 0 20px;
}

.result-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 20px 0;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* === CONSENT BANNER === */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg-card);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.consent-banner--show {
  transform: translateY(0);
}

.consent-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.consent-banner__text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.consent-banner__text a {
  text-decoration: underline;
  color: var(--accent);
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 24px 100px;
  margin-top: 60px;
}

.site-footer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-weight: 800;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.site-footer__brand .zoo {
  color: var(--accent);
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
}

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

.site-footer__disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.site-footer__made {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* === PROFILE PAGE === */
.profile-hero {
  text-align: center;
  padding: 60px 24px 40px;
}

.profile-hero__svg {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  animation: gentleFloat 3s ease-in-out infinite;
}

.profile-hero__name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.profile-hero__title {
  font-size: 20px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.profile-hero__def {
  font-size: 17px;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto;
}

.profile-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.profile-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
}

.profile-content p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

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

.profile-content li {
  margin-bottom: 8px;
  color: var(--text-body);
  line-height: 1.65;
}

.profile-compat {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.profile-compat__row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.profile-compat__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  flex-shrink: 0;
}

.profile-compat__value {
  font-size: 15px;
  color: var(--text-body);
}

.profile-cta {
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}

.profile-cta h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.profile-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.55;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-card__link {
  color: var(--accent);
  font-weight: 600;
}

.article-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-content h2 {
  margin-top: 36px;
  margin-bottom: 14px;
}

.article-content p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.article-content ul, .article-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 8px;
  color: var(--text-body);
  line-height: 1.65;
}

.article-cta {
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.article-cta h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.article-cta p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.article-related {
  margin-top: 32px;
}

.article-related h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.article-related ul {
  list-style: none;
  padding: 0;
}

.article-related li {
  margin-bottom: 8px;
}

/* === TEAM PAGE === */
.team-hero {
  text-align: center;
  padding: 60px 24px 40px;
}

.team-hero h1 {
  margin-bottom: 16px;
}

.team-hero p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.team-mode-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: var(--bg);
  border-radius: var(--radius-btn);
  padding: 4px;
}

.team-mode-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
}

.team-mode-tab--active {
  background: var(--bg-card);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.team-member-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.team-member-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 16px;
}

.team-member-row svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.team-member-row__name {
  flex: 1;
  font-weight: 600;
  color: var(--text-dark);
}

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

.team-add-name {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.team-add-name input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  color: var(--text-dark);
}

.team-add-name input:focus {
  outline: none;
  border-color: var(--accent);
}

.team-summary {
  text-align: center;
}

.team-summary__name {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.team-summary__member {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  text-align: center;
}

.team-summary__member svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
}

.team-summary__member-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.team-summary__member-animal {
  font-size: 11px;
  color: var(--text-muted);
}

.team-summary__desc {
  font-size: 15px;
  color: var(--text-body);
  max-width: 440px;
  margin: 0 auto 24px;
}

.team-select-animal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.team-animal-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.2s;
}

.team-animal-pick:hover {
  border-color: #FFB74D;
}

.team-animal-pick--selected {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.team-animal-pick svg {
  width: 36px;
  height: 36px;
}

/* === STATIC PAGES === */
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-content h1 {
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

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

.page-content li {
  margin-bottom: 8px;
  color: var(--text-body);
}

/* === 404 === */
.not-found {
  text-align: center;
  padding: 120px 24px;
}

.not-found__svg {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  animation: gentleFloat 3s ease-in-out infinite;
}

.not-found h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
}

.not-found p {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* === AD SLOT === */
.ad-slot {
  display: none;
  margin: 32px auto;
  max-width: var(--max-content);
  min-height: 0;
}

.ad-slot--loaded {
  display: block;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes revealScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.5s ease;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }

  .site-header__nav--open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .how-it-works,
  .value-points {
    grid-template-columns: 1fr;
  }

  .quiz-card {
    padding: 24px 20px;
  }

  .result-card {
    padding: 28px 20px;
  }

  .result-stats {
    grid-template-columns: 1fr;
  }

  .consent-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .consent-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

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