/* ============================================
   INSTINCT. — Landing Page Styles
   ============================================ */

/* --- Tokens --- */
:root {
  --black: #0a0c0a;
  --dark: #111a11;
  --dark-mid: #162016;
  --dark-light: #1c261c;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-secondary: #b0b8a8;

  /* Instinct colours */
  --scent: #A77BCA;
  --chase: #EF4136;
  --herd: #3B8CDB;
  --retrieve: #F5A623;
  --dig: #C47A4A;
  --solve: #6CD9A0;

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-logo: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, 'SF Pro Display', 'SF Pro Text', system-ui, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-family: var(--font-body);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 240, 232, 0.2);
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transform: translateY(-100%);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
}

.site-header.is-visible {
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(10, 12, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(245, 240, 232, 0.06);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-family: var(--font-logo);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-header__cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 12, 10, 0.55) 0%,
      rgba(10, 12, 10, 0.6) 35%,
      rgba(10, 12, 10, 0.7) 65%,
      rgba(10, 12, 10, 0.9) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero__logo {
  font-family: var(--font-logo);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.2;
  color: rgba(245, 240, 232, 0.96);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero__headline em {
  font-style: italic;
  color: var(--retrieve);
}

.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: rgba(245, 240, 232, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__note {
  margin-top: 16px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: rgba(245, 240, 232, 0.4);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(245, 240, 232, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(245, 240, 232, 0.5);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION 2: SIX INSTINCTS (moved up)
   ============================================ */
.instincts {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.instincts__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 5% 15%,  rgba(167, 123, 202, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 25% 85%, rgba(239, 65, 54, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 65% 45% at 55% 5%,  rgba(59, 140, 219, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 65% at 75% 75%, rgba(245, 166, 35, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 95% 25%, rgba(108, 217, 160, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 65% 45% at 45% 50%, rgba(196, 122, 74, 0.1) 0%, transparent 50%);
  animation: instinctGlow 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes instinctGlow {
  0% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(1deg); }
  100% { opacity: 0.8; transform: scale(1.03) rotate(-1deg); }
}

.instincts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.instinct-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(17, 26, 17, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.instinct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.instinct-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.instinct-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instinct-card:hover .instinct-card__img img {
  transform: scale(1.05);
}

.instinct-card__colour-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.instinct-card--scent .instinct-card__colour-bar { background: linear-gradient(90deg, var(--scent), transparent); }
.instinct-card--chase .instinct-card__colour-bar { background: linear-gradient(90deg, var(--chase), transparent); }
.instinct-card--herd .instinct-card__colour-bar { background: linear-gradient(90deg, var(--herd), transparent); }
.instinct-card--retrieve .instinct-card__colour-bar { background: linear-gradient(90deg, var(--retrieve), transparent); }
.instinct-card--dig .instinct-card__colour-bar { background: linear-gradient(90deg, var(--dig), transparent); }
.instinct-card--solve .instinct-card__colour-bar { background: linear-gradient(90deg, var(--solve), transparent); }

.instinct-card__body {
  padding: 24px;
}

.instinct-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 400;
  -webkit-text-stroke: 0.4px currentColor;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.instinct-card__body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Instinct card accent colours */
.instinct-card--scent .instinct-card__name { color: var(--scent); }
.instinct-card--chase .instinct-card__name { color: var(--chase); }
.instinct-card--herd .instinct-card__name { color: var(--herd); }
.instinct-card--retrieve .instinct-card__name { color: var(--retrieve); }
.instinct-card--dig .instinct-card__name { color: var(--dig); }
.instinct-card--solve .instinct-card__name { color: var(--solve); }

/* Instinct card glow on hover */
.instinct-card--scent:hover { box-shadow: 0 12px 40px rgba(167, 123, 202, 0.15); }
.instinct-card--chase:hover { box-shadow: 0 12px 40px rgba(239, 65, 54, 0.15); }
.instinct-card--herd:hover { box-shadow: 0 12px 40px rgba(59, 140, 219, 0.15); }
.instinct-card--retrieve:hover { box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15); }
.instinct-card--dig:hover { box-shadow: 0 12px 40px rgba(196, 122, 74, 0.15); }
.instinct-card--solve:hover { box-shadow: 0 12px 40px rgba(108, 217, 160, 0.15); }

/* ============================================
   BREED PROFILE EXAMPLE
   ============================================ */
.profile-example {
  padding: 100px 0 120px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.profile-example::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 60%, rgba(245, 166, 35, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 20%, rgba(167, 123, 202, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(59, 140, 219, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 80% 90%, rgba(108, 217, 160, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.profile-example__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
  position: relative;
}

.profile-example .section-headline,
.profile-example .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.profile-example__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

/* Conic-gradient ring: segments are proportional to instinct %
   Retrieve 35% → Scent 30% → Chase 15% → Solve 12% → Herd 5% → Dig 3% */
.profile-example__ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 11px;
  background: conic-gradient(
    var(--retrieve) 0% 35%,
    var(--scent)   35% 65%,
    var(--chase)   65% 80%,
    var(--solve)   80% 92%,
    var(--herd)    92% 97%,
    var(--dig)     97% 100%
  );
  box-shadow:
    0 0 50px rgba(245, 166, 35, 0.18),
    0 0 100px rgba(167, 123, 202, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.profile-example__ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  /* Dark gap between gradient ring and image */
  box-shadow: 0 0 0 3px var(--dark);
  position: relative;
}

.profile-example__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.profile-example__key {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  max-width: 420px;
}

.profile-example__key-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px 7px 10px;
  border-radius: 20px;
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.08);
}

.profile-example__key-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.profile-example__key-item--retrieve { color: var(--retrieve); }
.profile-example__key-item--scent    { color: var(--scent); }
.profile-example__key-item--chase    { color: var(--chase); }
.profile-example__key-item--solve    { color: var(--solve); }
.profile-example__key-item--herd     { color: var(--herd); }
.profile-example__key-item--dig      { color: var(--dig); }

.profile-example__key-item--retrieve .profile-example__key-dot { background: var(--retrieve); }
.profile-example__key-item--scent    .profile-example__key-dot { background: var(--scent); }
.profile-example__key-item--chase    .profile-example__key-dot { background: var(--chase); }
.profile-example__key-item--solve    .profile-example__key-dot { background: var(--solve); }
.profile-example__key-item--herd     .profile-example__key-dot { background: var(--herd); }
.profile-example__key-item--dig      .profile-example__key-dot { background: var(--dig); }

/* ============================================
   DAILY DRIVES EXAMPLE
   ============================================ */
.drives-example {
  padding: 120px 0 120px;
  background: var(--dark);
  position: relative;
}

.drives-example::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 60%,   rgba(167, 123, 202, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(245, 166, 35, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 40%, rgba(108, 217, 160, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.drives-example__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.drives-example .section-headline,
.drives-example .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.drives-example .container {
  text-align: center;
}

.drives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 8px;
}

/* --- Drive Card Base --- */
.drive-card {
  background: var(--dark-mid);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(245, 240, 232, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.drive-card--scent::before    { background: var(--scent); }
.drive-card--chase::before    { background: var(--chase); }
.drive-card--herd::before     { background: var(--herd); }
.drive-card--retrieve::before { background: var(--retrieve); }
.drive-card--dig::before      { background: var(--dig); }
.drive-card--solve::before    { background: var(--solve); }

.drive-card:hover {
  transform: translateY(-4px);
}

.drive-card--scent:hover    { box-shadow: 0 16px 48px rgba(167, 123, 202, 0.14); }
.drive-card--chase:hover    { box-shadow: 0 16px 48px rgba(239, 65, 54, 0.14); }
.drive-card--herd:hover     { box-shadow: 0 16px 48px rgba(59, 140, 219, 0.14); }
.drive-card--retrieve:hover { box-shadow: 0 16px 48px rgba(245, 166, 35, 0.14); }
.drive-card--dig:hover      { box-shadow: 0 16px 48px rgba(196, 122, 74, 0.14); }
.drive-card--solve:hover    { box-shadow: 0 16px 48px rgba(108, 217, 160, 0.14); }

/* --- Header row: badge + tags --- */
.drive-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.drive-card__instinct-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.drive-card__instinct-badge--scent    { background: rgba(167, 123, 202, 0.18); color: var(--scent); }
.drive-card__instinct-badge--chase    { background: rgba(239, 65, 54, 0.18);  color: var(--chase); }
.drive-card__instinct-badge--herd     { background: rgba(59, 140, 219, 0.18);  color: var(--herd); }
.drive-card__instinct-badge--retrieve { background: rgba(245, 166, 35, 0.18);  color: var(--retrieve); }
.drive-card__instinct-badge--dig      { background: rgba(196, 122, 74, 0.18);  color: var(--dig); }
.drive-card__instinct-badge--solve    { background: rgba(108, 217, 160, 0.18); color: var(--solve); }

.drive-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.drive-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: 3px 9px;
  border-radius: 12px;
}

.drive-card__tag--outdoor { color: var(--herd); border-color: rgba(59, 140, 219, 0.2); background: rgba(59, 140, 219, 0.08); }
.drive-card__tag--indoor  { color: var(--solve); border-color: rgba(108, 217, 160, 0.2); background: rgba(108, 217, 160, 0.08); }
.drive-card__tag--tier    { color: rgba(245, 240, 232, 0.4); }

/* --- Title --- */
.drive-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
}

/* --- Equipment --- */
.drive-card__equipment {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.drive-card__equipment::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Crect x='2' y='7' width='12' height='7' rx='1.5' stroke='%23b0b8a8' stroke-width='1.4'/%3E%3Cpath d='M5.5 7V5a2.5 2.5 0 015 0v2' stroke='%23b0b8a8' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  opacity: 0.7;
}

/* --- Steps --- */
.drive-card__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: steps;
  flex: 1;
}

.drive-card__steps li {
  counter-increment: steps;
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.5;
}

.drive-card__steps li::before {
  content: counter(steps);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
  opacity: 0.35;
  width: 18px;
}

/* --- Walk equivalent --- */
.drive-card__equiv {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.1);
}

.drive-card__equiv-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}

.drive-card__equiv-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --- Why this works --- */
.drive-card__why {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 14px 16px;
  background: rgba(245, 240, 232, 0.04);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(245, 240, 232, 0.1);
  margin-top: auto;
}

.drive-card--scent    .drive-card__why { border-left-color: var(--scent); }
.drive-card--chase    .drive-card__why { border-left-color: var(--chase); }
.drive-card--herd     .drive-card__why { border-left-color: var(--herd); }
.drive-card--retrieve .drive-card__why { border-left-color: var(--retrieve); }
.drive-card--dig      .drive-card__why { border-left-color: var(--dig); }
.drive-card--solve    .drive-card__why { border-left-color: var(--solve); }

.drive-card__why-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.drive-card--scent    .drive-card__why-label { color: var(--scent); }
.drive-card--chase    .drive-card__why-label { color: var(--chase); }
.drive-card--herd     .drive-card__why-label { color: var(--herd); }
.drive-card--retrieve .drive-card__why-label { color: var(--retrieve); }
.drive-card--dig      .drive-card__why-label { color: var(--dig); }
.drive-card--solve    .drive-card__why-label { color: var(--solve); }

/* ============================================
   SECTION 3: HOW IT WORKS
   ============================================ */
.how {
  padding: 120px 0;
  background: var(--dark-mid);
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 80% at 0% 50%,   rgba(59, 140, 219, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(245, 166, 35, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(108, 217, 160, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

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

.how__step {
  position: relative;
}

.how__step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--herd), var(--retrieve));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.7;
}

.how__step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.how__step p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* --- Two-column layout --- */
.how__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.how__content .section-headline {
  text-align: left;
  margin-bottom: 56px;
}

.how__layout .how__steps {
  grid-template-columns: 1fr;
  gap: 36px;
}

.how__mockup {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: sticky;
  top: 100px;
  max-width: 420px;
  border-radius: 42px;
  overflow: hidden;
}

.how__mockup img {
  width: calc(100% + 5px);
  max-width: none;
  display: block;
}

/* --- Progression tiers --- */
.how__progression {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  margin-top: 64px;
  padding-top: 56px;
  position: relative;
}

.how__progression-intro {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.how__tiers {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.how__tier {
  flex: 1;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.07);
}

.how__tier--advanced {
  background: rgba(245, 240, 232, 0.07);
  border-color: rgba(108, 217, 160, 0.2);
}

.how__tier-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.how__tier--foundation .how__tier-label   { color: var(--herd); }
.how__tier--intermediate .how__tier-label { color: var(--retrieve); }
.how__tier--advanced .how__tier-label     { color: var(--solve); }

.how__tier-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.how__tier-arrow {
  color: rgba(245, 240, 232, 0.18);
  font-size: 1.1rem;
  align-self: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how__tiers {
    flex-direction: column;
    gap: 10px;
  }

  .how__tier-arrow {
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 22px;
  }
}

/* ============================================
   SECTION 4: THE CONTEXT (reframed positive)
   ============================================ */
.context {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

.context::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 60% at 100% 20%, rgba(239, 65, 54, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 0% 80%,  rgba(167, 123, 202, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 50% 50%, rgba(245, 166, 35, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.context__intro {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.context__intro .section-headline {
  margin-bottom: 24px;
}

.context__intro p {
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.7;
}

.context__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 740px;
  margin: 0 auto 72px;
}

.context__stat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--chase), var(--scent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.context__col p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

.context__col cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.context__pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.35;
  color: var(--cream);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

/* --- Testimonial --- */
.testimonial {
  padding: 100px 0;
  background: rgba(245, 240, 232, 0.03);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.testimonial__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial__photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__quote {
  margin: 0;
}

.testimonial__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin: 0 0 16px;
}

.testimonial__cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .testimonial__photo {
    width: 120px;
    height: 120px;
  }
}

/* --- Full-width image divider --- */
.divider-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.divider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}


/* ============================================
   SECTION 7: WAITLIST CTA
   ============================================ */
.waitlist {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--dark);
}

.waitlist__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(167, 123, 202, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 50% 30%, rgba(239, 65, 54, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 90% 60%, rgba(59, 140, 219, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 30% 80%, rgba(245, 166, 35, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 70% 20%, rgba(108, 217, 160, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 55% 60% at 50% 90%, rgba(196, 122, 74, 0.12) 0%, transparent 65%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraShift {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.7; transform: scale(1.02); }
}

.waitlist__headline {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin-bottom: 16px;
  position: relative;
}

.waitlist__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative;
}

.waitlist__form {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.waitlist__form-row {
  display: flex;
  gap: 12px;
}

.waitlist__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 16px 24px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 60px;
  background: rgba(245, 240, 232, 0.06);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.waitlist__input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.waitlist__input:focus {
  border-color: rgba(245, 240, 232, 0.35);
  background: rgba(245, 240, 232, 0.1);
}

.waitlist__form-breed {
  margin-top: 12px;
}

.waitlist__input--breed {
  width: 100%;
  border-radius: 60px;
}

/* Mailchimp response messages */
#mce-responses {
  margin-top: 16px;
}

#mce-error-response,
#mce-success-response {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 0;
  animation: fadeUp 0.4s ease forwards;
}

#mce-error-response {
  color: #e05252;
}

#mce-success-response {
  color: var(--herd);
}

.waitlist__fine {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  position: relative;
}

/* ============================================
   SECTION 8: FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  background: var(--black);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer__copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .instincts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  .instincts,
  .how,
  .context,
  .profile-example {
    padding: 80px 0;
  }

  .drives-example {
    padding: 80px 0 80px;
  }

  .drives-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .waitlist {
    padding: 100px 0;
  }

  .how__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how__mockup {
    order: -1;
    position: static;
  }

  .how__mockup img {
    max-width: 280px;
  }

  .how__content .section-headline {
    text-align: center;
  }

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

  .instincts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .instinct-card {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .instinct-card__img {
    aspect-ratio: 1;
  }

  .instinct-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }

  .context__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compare__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 20px;
  }

  .compare__row--header {
    display: none;
  }

  .compare__row span:nth-child(2) {
    font-size: 0.85rem;
  }

  .compare__row span:last-child {
    font-size: 0.8rem;
    font-style: italic;
  }

  .waitlist__form-row {
    flex-direction: column;
  }

  .waitlist__form-row .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact-page__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 40%, rgba(167, 123, 202, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 60% at 85% 30%, rgba(59, 140, 219, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 50% 80%, rgba(245, 166, 35, 0.12) 0%, transparent 60%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-page .container {
  max-width: 560px;
  text-align: center;
  position: relative;
}

.contact-page__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.contact-page__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

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

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-form__input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 16px 20px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.05);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form__input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.contact-form__input:focus {
  border-color: rgba(245, 240, 232, 0.3);
  background: rgba(245, 240, 232, 0.08);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 100px 0 80px;
  }

  .contact-form__submit {
    align-self: stretch;
    justify-content: center;
  }
}

/* ============================================
   INSTINCT LANDING PAGES
   ============================================ */
.instinct-page--scent    { --instinct-color: var(--scent); --instinct-bg: rgba(167, 123, 202, 0.15); --instinct-glow: rgba(167, 123, 202, 0.12); }
.instinct-page--chase    { --instinct-color: var(--chase); --instinct-bg: rgba(239, 65, 54, 0.15); --instinct-glow: rgba(239, 65, 54, 0.12); }
.instinct-page--herd     { --instinct-color: var(--herd); --instinct-bg: rgba(59, 140, 219, 0.15); --instinct-glow: rgba(59, 140, 219, 0.12); }
.instinct-page--retrieve { --instinct-color: var(--retrieve); --instinct-bg: rgba(245, 166, 35, 0.15); --instinct-glow: rgba(245, 166, 35, 0.12); }
.instinct-page--dig      { --instinct-color: var(--dig); --instinct-bg: rgba(196, 122, 74, 0.15); --instinct-glow: rgba(196, 122, 74, 0.12); }
.instinct-page--solve    { --instinct-color: var(--solve); --instinct-bg: rgba(108, 217, 160, 0.15); --instinct-glow: rgba(108, 217, 160, 0.12); }

.instinct-hero {
  position: relative;
  min-height: 70vh;
  min-height: 70dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.instinct-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.instinct-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.instinct-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 12, 10, 0.25) 0%,
    rgba(10, 12, 10, 0.5) 40%,
    rgba(10, 12, 10, 0.95) 100%
  );
}

.instinct-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.instinct-hero__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--instinct-color);
}

.instinct-page--scent .instinct-hero__bg img {
  object-position: center 65%;
}

.instinct-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: rgba(245, 240, 232, 0.7);
}

.instinct-hero__desc {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(245, 240, 232, 0.7);
  max-width: 600px;
  line-height: 1.6;
}

.instinct-section {
  padding: 80px 0;
  background: var(--black);
  position: relative;
}

.instinct-section--alt {
  background: var(--dark);
}

.instinct-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--instinct-color);
}

.instinct-section__intro {
  color: rgba(245, 240, 232, 0.8);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.instinct-section__outro {
  color: rgba(245, 240, 232, 0.6);
  max-width: 720px;
  line-height: 1.7;
  margin-top: 24px;
  font-size: 0.95rem;
  font-style: italic;
}

.instinct-section__body {
  max-width: 720px;
}

.instinct-section__body p {
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.05rem);
}

.instinct-breeds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
}

.instinct-breed {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instinct-breed:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.instinct-breed__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--instinct-color);
}
.instinct-breed__name a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s;
}
.instinct-breed__name a:hover {
  opacity: 0.8;
}

.instinct-breed p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.instinct-signs {
  list-style: none;
  padding: 0;
  max-width: 720px;
}

.instinct-signs li {
  padding: 14px 0 14px 28px;
  position: relative;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.instinct-signs li:last-child {
  border-bottom: none;
}

.instinct-signs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--instinct-color);
  opacity: 0.6;
}

.instinct-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--dark);
}

.instinct-cta__aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--instinct-glow), transparent 70%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.instinct-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  position: relative;
}

.instinct-cta__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative;
}

.instinct-cta .waitlist__form {
  position: relative;
}

.instinct-crosslinks {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.instinct-crosslinks__heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}

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

.instinct-crosslink {
  display: block;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.07);
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.instinct-crosslink:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.15);
}

.instinct-crosslink__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 4px;
}

.instinct-crosslink__tagline {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.instinct-crosslink--scent .instinct-crosslink__name    { color: var(--scent); }
.instinct-crosslink--chase .instinct-crosslink__name    { color: var(--chase); }
.instinct-crosslink--herd .instinct-crosslink__name     { color: var(--herd); }
.instinct-crosslink--retrieve .instinct-crosslink__name { color: var(--retrieve); }
.instinct-crosslink--dig .instinct-crosslink__name      { color: var(--dig); }
.instinct-crosslink--solve .instinct-crosslink__name    { color: var(--solve); }

.instinct-crosslink--scent:hover    { box-shadow: 0 8px 32px rgba(167, 123, 202, 0.12); }
.instinct-crosslink--chase:hover    { box-shadow: 0 8px 32px rgba(239, 65, 54, 0.12); }
.instinct-crosslink--herd:hover     { box-shadow: 0 8px 32px rgba(59, 140, 219, 0.12); }
.instinct-crosslink--retrieve:hover { box-shadow: 0 8px 32px rgba(245, 166, 35, 0.12); }
.instinct-crosslink--dig:hover      { box-shadow: 0 8px 32px rgba(196, 122, 74, 0.12); }
.instinct-crosslink--solve:hover    { box-shadow: 0 8px 32px rgba(108, 217, 160, 0.12); }

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

@media (max-width: 768px) {
  .instinct-hero {
    min-height: 50vh;
    min-height: 50dvh;
    padding-bottom: 60px;
  }

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

  .instinct-breeds {
    grid-template-columns: 1fr;
  }

  .instinct-cta {
    padding: 80px 0;
  }

  .instinct-crosslinks__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .instinct-crosslinks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .context__stat {
    font-size: 3rem;
  }

  .how__step-num {
    font-size: 2.5rem;
  }
}


/* ============================================
   BREED LANDING PAGES
   ============================================ */

/* --- Breed Hero --- */
.breed-hero {
  position: relative;
  padding: 160px 24px 100px;
  overflow: hidden;
}

.breed-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.breed-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.breed-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,12,10,0.5) 0%,
    rgba(10,12,10,0.85) 60%,
    var(--black) 100%);
}

.breed-hero--no-image {
  background: linear-gradient(160deg, var(--dark) 0%, var(--black) 100%);
}

.breed-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.breed-hero__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--cream);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 400;
}

.breed-hero__hook {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

/* --- Quick Read Card --- */
.breed-quickread {
  padding: 80px 0;
  background: rgba(245, 240, 232, 0.03);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.breed-quickread__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.breed-quickread__bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.breed-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breed-bar__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 80px;
  flex-shrink: 0;
}

.breed-bar__label--scent    { color: var(--scent); }
.breed-bar__label--chase    { color: var(--chase); }
.breed-bar__label--herd     { color: var(--herd); }
.breed-bar__label--retrieve { color: var(--retrieve); }
.breed-bar__label--dig      { color: var(--dig); }
.breed-bar__label--solve    { color: var(--solve); }

.breed-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(245, 240, 232, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.breed-bar__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.breed-bar__fill--scent    { background: var(--scent); }
.breed-bar__fill--chase    { background: var(--chase); }
.breed-bar__fill--herd     { background: var(--herd); }
.breed-bar__fill--retrieve { background: var(--retrieve); }
.breed-bar__fill--dig      { background: var(--dig); }
.breed-bar__fill--solve    { background: var(--solve); }

.breed-bar__pct {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.breed-quickread__summary h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin: 0 0 20px;
}

.breed-quickread__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.breed-quickread__item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.breed-quickread__item-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.breed-quickread__item-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
}

/* --- Breed Text Sections --- */
.breed-section {
  padding: 80px 0;
}

.breed-section--alt {
  background: rgba(245, 240, 232, 0.03);
}

.breed-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 32px;
}

.breed-section__body {
  max-width: 780px;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  color: var(--text-secondary);
  line-height: 1.75;
}

.breed-section__body p {
  margin: 0 0 20px;
}

.breed-section__body p:last-child {
  margin-bottom: 0;
}

.breed-section__body strong {
  color: var(--cream);
  font-weight: 600;
}

/* --- Instinct Profile Detail --- */
.breed-profile__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
}

.breed-profile__item {
  padding-left: 20px;
  border-left: 3px solid rgba(245, 240, 232, 0.1);
}

.breed-profile__item--scent    { border-color: var(--scent); }
.breed-profile__item--chase    { border-color: var(--chase); }
.breed-profile__item--herd     { border-color: var(--herd); }
.breed-profile__item--retrieve { border-color: var(--retrieve); }
.breed-profile__item--dig      { border-color: var(--dig); }
.breed-profile__item--solve    { border-color: var(--solve); }

.breed-profile__item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.breed-profile__item--scent h4    { color: var(--scent); }
.breed-profile__item--chase h4    { color: var(--chase); }
.breed-profile__item--herd h4     { color: var(--herd); }
.breed-profile__item--retrieve h4 { color: var(--retrieve); }
.breed-profile__item--dig h4      { color: var(--dig); }
.breed-profile__item--solve h4    { color: var(--solve); }

.breed-profile__item p {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* --- Fun Facts --- */
.breed-facts__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
}

.breed-fact {
  padding: 24px;
  background: rgba(245, 240, 232, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 240, 232, 0.06);
}

.breed-fact__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0 0 8px;
  font-style: italic;
}

.breed-fact__body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* --- Breed CTA (reuses instinct-cta pattern) --- */
.breed-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breed-cta__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(167,123,202,0.08), transparent),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(108,217,160,0.06), transparent);
  pointer-events: none;
}

.breed-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.breed-cta__sub {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* --- Breed Crosslinks (other breeds) --- */
.breed-crosslinks {
  padding: 80px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.breed-crosslinks__heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--cream);
  text-align: center;
  margin: 0 0 40px;
}

.breed-crosslinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.breed-crosslink {
  display: block;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.06);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.breed-crosslink:hover {
  background: rgba(245, 240, 232, 0.07);
  border-color: rgba(245, 240, 232, 0.12);
}

.breed-crosslink__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.breed-crosslink__tagline {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* --- Breed Page Responsive --- */
@media (max-width: 768px) {
  .breed-hero {
    padding: 120px 0 60px;
  }

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

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

  .breed-crosslinks__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .breed-crosslinks__grid {
    grid-template-columns: 1fr;
  }
}
