/* ==========================================================================
   Cluck & Road - campaignpulselynx.net
   Single stylesheet. No webfonts, no frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --amber: #f4a72c;
  --amber-dark: #d9860c;
  --coral: #ef5a3c;
  --coral-dark: #d33f22;
  --teal: #0f3f47;
  --teal-mid: #175a66;
  --teal-light: #dff0f0;

  /* Neon (game blocks) */
  --neon-cyan: #22e0ff;
  --neon-magenta: #ff3fd0;
  --neon-orange: #ffa53c;
  --neon-teal: #37f0d0;

  /* Surfaces */
  --ink: #10242a;
  --ink-soft: #3c565c;
  --ink-faint: #6b8189;
  --cream: #fffaf3;
  --sand: #fdf1e2;
  --white: #ffffff;
  --line: #e9ded0;
  --night: #100f22;
  --night-2: #191636;

  /* Type scale */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);

  /* Space + shape */
  --gap: clamp(1rem, 0.6rem + 1.6vw, 1.75rem);
  --pad-section: clamp(3.25rem, 2rem + 5vw, 6rem);
  --shell: 1180px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 6px rgba(16, 36, 42, 0.06), 0 8px 24px rgba(16, 36, 42, 0.06);
  --shadow-md: 0 6px 14px rgba(16, 36, 42, 0.08), 0 20px 44px rgba(16, 36, 42, 0.1);
  --ring: 0 0 0 3px rgba(244, 167, 44, 0.45);
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-1);
}

p {
  margin: 0 0 1.1em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  color: var(--coral-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--ink);
}

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

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.4em;
}

strong {
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--amber-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1rem, 0.5rem + 2.5vw, 2.5rem);
}

.section {
  padding-block: var(--pad-section);
}

.section--sand {
  background: var(--sand);
}

.section--teal {
  background: var(--teal);
  color: var(--teal-light);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translate(-50%, 0);
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-dark);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.55;
}

.lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 0 var(--coral-dark);
}

.btn--primary:hover {
  background: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 8px 0 #a82f16;
}

.btn--amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--amber-dark);
}

.btn--amber:hover {
  background: #ffb840;
  color: var(--ink);
  box-shadow: 0 8px 0 var(--amber-dark);
}

.btn--ghost {
  border-color: currentColor;
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.6em 1.15em;
  font-size: var(--step--1);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. Header + nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand span em {
  font-style: normal;
  color: var(--coral-dark);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 0.2rem + 1vw, 1.5rem);
}

.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--amber);
}

.nav .btn {
  color: var(--white);
  border-bottom: none;
}

.nav .btn:hover {
  color: var(--white);
  border-bottom: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  top: 50%;
  margin-top: -1px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
  transform: none;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem clamp(1rem, 0.5rem + 2.5vw, 2.5rem) 1.25rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .nav[hidden] {
    display: none;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: var(--step-0);
  }

  .nav .btn {
    margin-top: 0.9rem;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--teal);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 40, 46, 0.84) 0%,
      rgba(9, 40, 46, 0.5) 42%,
      rgba(9, 40, 46, 0) 64%
    ),
    radial-gradient(
      120% 90% at 78% 45%,
      rgba(15, 63, 71, 0) 0%,
      rgba(15, 63, 71, 0.55) 45%,
      var(--teal) 78%
    );
  pointer-events: none;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 2rem + 8vw, 8rem);
  max-width: 46rem;
}

.hero .eyebrow {
  color: var(--amber);
}

.hero h1 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero__lede {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
  margin-bottom: 1.9rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__note {
  margin-top: 1.5rem;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 760px) {
  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(15, 63, 71, 0.65) 0%,
      rgba(15, 63, 71, 0.82) 55%,
      var(--teal) 100%
    );
  }
}

/* --------------------------------------------------------------------------
   7. Stat strip
   -------------------------------------------------------------------------- */

.stats {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2rem, 1.4rem + 2vw, 3rem);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--gap);
  text-align: center;
}

.stat__num {
  display: block;
  font-size: var(--step-3);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--amber);
  line-height: 1.05;
}

.stat__label {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. Fact cards
   -------------------------------------------------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.fact {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fact__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--teal-light);
}

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

.fact__body {
  padding: clamp(1.15rem, 1rem + 0.6vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.fact__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  background: var(--teal-light);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.fact h3 {
  margin: 0;
  font-size: var(--step-1);
}

.fact p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.fact--wide {
  grid-column: span 2;
}

.fact--plain .fact__body {
  padding-block: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
}

.fact__num {
  font-size: var(--step-2);
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
}

@media (max-width: 700px) {
  .fact--wide {
    grid-column: span 1;
  }
}

/* --------------------------------------------------------------------------
   9. Breed cards
   -------------------------------------------------------------------------- */

.breeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--gap);
}

.breed {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.breed img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.breed:hover img {
  transform: scale(1.05);
}

.breed__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.25rem 1.35rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 36, 42, 0.92), var(--ink));
}

.breed__body h3 {
  margin: 0 0 0.3rem;
  font-size: var(--step-1);
}

.breed__origin {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.breed__body p {
  margin: 0 0 0.9rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
}

.breed__meta {
  margin: auto 0 0;
  padding: 0.7rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  display: grid;
  gap: 0.25rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.66);
}

.breed__meta li {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.breed__meta b {
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

/* --------------------------------------------------------------------------
   10. Game blocks (Chicken Road + Chicken Road 2)
   -------------------------------------------------------------------------- */

.game {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding-block: var(--pad-section);
}

.game--road {
  background: radial-gradient(90% 70% at 20% 0%, #2b1b5c 0%, var(--night) 62%);
  --accent: var(--neon-cyan);
  --accent-2: var(--neon-magenta);
}

.game--road2 {
  background: radial-gradient(90% 70% at 80% 0%, #35204a 0%, #130f24 60%);
  --accent: var(--neon-orange);
  --accent-2: var(--neon-teal);
}

/* Neon glow blobs */
.game::before,
.game::after {
  content: "";
  position: absolute;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.game::before {
  top: -22rem;
  left: -14rem;
  background: var(--accent);
}

.game::after {
  bottom: -26rem;
  right: -16rem;
  background: var(--accent-2);
}

.game__inner {
  position: relative;
  z-index: 2;
}

.game__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}

.game--road2 .game__head {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.game--road2 .game__head .game__copy {
  order: 2;
}

.game--road2 .game__head .game__art {
  order: 1;
}

.game__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.1rem;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.game h2 {
  font-size: var(--step-4);
  margin-bottom: 0.8rem;
}

.game h2 em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 60%, transparent);
}

.game__lede {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.game__art {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent);
}

.game__art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.game__art figcaption {
  padding: 0.8rem 1.1rem;
  background: rgba(0, 0, 0, 0.45);
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.7);
}

/* Feature chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.chips li {
  margin: 0;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* Numbered how-to-play steps */
.game__sub {
  margin-top: clamp(2.5rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1.5rem;
  font-size: var(--step-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  margin: 0;
  position: relative;
  padding: 4.1rem 1.4rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--night);
  font-size: 0.95rem;
  font-weight: 900;
}

.steps h4 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.steps p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Pro tips */
.tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  margin-top: clamp(2rem, 1.6rem + 1.5vw, 3rem);
}

.tip {
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(0, 0, 0, 0.28);
  border-left: 3px solid var(--accent-2);
}

.tip h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--accent-2);
}

.tip p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

/* What's new list (Chicken Road 2) */
.whats-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: var(--gap);
  margin-top: clamp(2rem, 1.6rem + 1.5vw, 3rem);
}

.new-item {
  padding: 1.5rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.new-item__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  font-size: 1.25rem;
}

.new-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.new-item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Side-by-side comparison */
.vs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: clamp(2rem, 1.6rem + 1.5vw, 3rem);
}

.vs__card {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vs__card--b {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent),
    0 18px 50px rgba(0, 0, 0, 0.4);
}

.vs__card h4 {
  margin: 0 0 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--step-1);
}

.vs__card--b h4 {
  color: var(--accent);
}

.vs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-size: 0.94rem;
}

.vs__list li {
  margin: 0;
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
}

.vs__list dt,
.vs__list .k {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.vs__list .v {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

@media (max-width: 900px) {
  .game__head,
  .game--road2 .game__head {
    grid-template-columns: 1fr;
  }

  .game--road2 .game__head .game__copy {
    order: 1;
  }

  .game--road2 .game__head .game__art {
    order: 2;
  }
}

@media (max-width: 420px) {
  .vs__list li {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

/* --------------------------------------------------------------------------
   11. Chicken language (calls)
   -------------------------------------------------------------------------- */

.calls-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 1.2rem + 3vw, 3.5rem);
  align-items: center;
}

.calls-wrap img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.calls {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.call {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 0 1rem;
  align-items: baseline;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.call dt {
  font-weight: 900;
  color: var(--coral-dark);
  font-size: 1rem;
  line-height: 1.35;
}

.call dd {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .calls-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .call {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* --------------------------------------------------------------------------
   12. Timeline
   -------------------------------------------------------------------------- */

.timeline-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 1.2rem + 3vw, 3.5rem);
  align-items: start;
}

.timeline-wrap img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  position: sticky;
  top: 100px;
}

.timeline {
  margin: 0;
  padding: 0 0 0 1.9rem;
  list-style: none;
  border-left: 2px solid var(--line);
}

.timeline li {
  position: relative;
  margin: 0 0 1.9rem;
  padding-left: 0.25rem;
}

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

.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.9rem - 0.25rem - 7px);
  top: 0.45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--amber);
}

.section--sand .timeline li::before {
  border-color: var(--sand);
}

.timeline__when {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.25rem;
}

.timeline h3 {
  margin: 0 0 0.3rem;
  font-size: var(--step-1);
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

@media (max-width: 860px) {
  .timeline-wrap {
    grid-template-columns: 1fr;
  }

  .timeline-wrap img {
    position: static;
    aspect-ratio: 16 / 9;
  }
}

/* --------------------------------------------------------------------------
   13. FAQ accordion
   -------------------------------------------------------------------------- */

.faq {
  max-width: 55rem;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq__heading {
  margin: 0;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq__q:hover {
  background: var(--sand);
}

.faq__q::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--coral);
  border-bottom: 2.5px solid var(--coral);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  margin-top: -4px;
}

.faq__q[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq__a {
  padding: 0 1.35rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.faq__a[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   14. Final CTA + newsletter
   -------------------------------------------------------------------------- */

.cta {
  background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
  color: var(--ink);
  padding-block: var(--pad-section);
  text-align: center;
}

.cta h2 {
  max-width: 24ch;
  margin-inline: auto;
}

.cta p {
  max-width: 50ch;
  margin-inline: auto;
  font-size: var(--step-1);
  color: rgba(16, 36, 42, 0.78);
}

.cta .btn-row {
  justify-content: center;
  margin-top: 1.75rem;
}

.signup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  max-width: 34rem;
  margin: 1.75rem auto 0;
}

.signup label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field {
  font: inherit;
  padding: 0.85em 1.1em;
  border: 2px solid rgba(16, 36, 42, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  min-width: 0;
  flex: 1 1 15rem;
}

.field::placeholder {
  color: var(--ink-faint);
}

.field:focus {
  border-color: var(--ink);
  background: var(--white);
}

.signup .btn {
  flex: 0 0 auto;
}

.form-note {
  margin-top: 0.9rem;
  font-size: var(--step--1);
  color: rgba(16, 36, 42, 0.7);
}

.form-status {
  margin-top: 0.9rem;
  font-weight: 700;
  min-height: 1.5em;
}

/* Generic page forms (contact) */
.form-grid {
  display: grid;
  gap: 1.1rem;
  max-width: 34rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.94rem;
}

.form-grid .field,
.form-grid textarea.field {
  border-radius: var(--r-sm);
  flex: none;
  width: 100%;
  background: var(--white);
  border-color: var(--line);
}

.form-grid textarea.field {
  min-height: 8rem;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  padding-block: clamp(2.75rem, 2rem + 3vw, 4.25rem) 2rem;
  font-size: 0.94rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.75rem, 1.2rem + 2.5vw, 3.25rem);
}

.site-footer h2 {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer .brand {
  color: var(--white);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer li {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
  text-decoration: underline;
}

.disclaimer {
  margin-top: clamp(2rem, 1.6rem + 1.5vw, 3rem);
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  line-height: 1.6;
}

.disclaimer b {
  color: var(--white);
}

.site-footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

/* --------------------------------------------------------------------------
   16. Subpages (legal / about / contact / 404)
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--teal);
  color: var(--white);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}

.page-hero h1 {
  font-size: var(--step-3);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  margin: 0;
}

.breadcrumbs {
  margin-bottom: 1.1rem;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs li {
  margin: 0;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs a {
  color: var(--amber);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--amber);
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: var(--step-2);
  margin-top: 2.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.9rem;
  font-size: var(--step-1);
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose__updated {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid var(--line);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--ink-soft);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--sand);
  font-weight: 800;
  color: var(--ink);
}

.data-table td {
  color: var(--ink-soft);
  background: var(--white);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}

.info-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  margin-top: 0;
  font-size: var(--step-1);
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.error-page {
  text-align: center;
  padding-block: clamp(4rem, 3rem + 6vw, 8rem);
}

.error-page__code {
  font-size: clamp(4.5rem, 3rem + 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--amber);
  margin: 0;
}

.error-page p {
  max-width: 45ch;
  margin-inline: auto;
  font-size: var(--step-1);
  color: var(--ink-soft);
}

.error-page .btn-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   17. Cookie consent banner
   -------------------------------------------------------------------------- */

.consent {
  position: fixed;
  z-index: 300;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 34rem;
  margin-inline: auto;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 60px rgba(16, 36, 42, 0.28);
}

.consent[hidden] {
  display: none;
}

.consent h2 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.consent p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent__actions .btn {
  flex: 1 1 9rem;
}

.consent__link {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   18. Motion + print
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .fact:hover,
  .btn:hover {
    transform: none;
  }

  .breed:hover img {
    transform: none;
  }
}

@media print {
  .site-header,
  .consent,
  .cta,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
