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

:root {
  --cream: #f5f0e8;
  --ink: #1a1a18;
  --grass: #2d5a1b;
  --grass-light: #4a8c2a;
  --sky: #7db8d4;
  --cloud: #e8e4dc;
  --accent: #c8432a;
  --gold: #c9962a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--grass); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grass);
  transition: width 0.25s ease;
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream) !important;
  background: var(--grass);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--grass-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--grass);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  color: var(--ink);
}

.hero-title em {
  font-style: italic;
  color: var(--grass);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,26,24,0.65);
  max-width: 38ch;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--grass);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}

.btn-ghost:hover { opacity: 1; }

.btn-ghost svg { transition: transform 0.2s; }

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

/* ── HERO RIGHT (pitch illustration) ── */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--sky);
}

.sky-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #a8d4e8 0%, #d4eaf5 40%, #e8f4f8 70%, #c8dcc4 100%);
}

.cloud-group {
  position: absolute;
  top: 12%;
  animation: drift 18s ease-in-out infinite alternate;
}

.cloud-group:nth-child(2) {
  top: 28%;
  animation-duration: 24s;
  animation-delay: -8s;
  opacity: 0.7;
  transform: scale(0.7);
}

@keyframes drift {
  from { transform: translateX(-5%); }
  to   { transform: translateX(5%); }
}

.cloud { position: relative; }

.cloud-shape {
  width: 180px;
  height: 60px;
  background: white;
  border-radius: 50px;
  opacity: 0.85;
  position: relative;
  left: 60px;
}

.cloud-shape::before, .cloud-shape::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud-shape::before {
  width: 80px; height: 80px;
  top: -40px; left: 20px;
}

.cloud-shape::after {
  width: 60px; height: 60px;
  top: -28px; left: 80px;
}

/* ── PITCH ── */
.pitch-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
}

.outfield {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #3a7a20 0%, #2d6018 100%);
}

.outfield::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 30px,
    transparent 30px,
    transparent 60px
  );
}

.pitch-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 100%;
  background: linear-gradient(180deg, #c8b87a 0%, #d4c484 50%, #c0aa6a 100%);
  border-left: 1px solid rgba(180,160,80,0.5);
  border-right: 1px solid rgba(180,160,80,0.5);
}

.pitch-strip::before, .pitch-strip::after {
  content: '';
  position: absolute;
  left: -10px; right: -10px;
  height: 2px;
  background: rgba(255,255,255,0.8);
}

.pitch-strip::before { top: 18%; }
.pitch-strip::after  { bottom: 18%; }

/* ── STUMPS ── */
.stumps {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.stumps-top    { top: 16%; }
.stumps-bottom { bottom: 16%; }

.stump {
  width: 4px;
  height: 28px;
  background: #f0e8cc;
  border-radius: 1px 1px 0 0;
}

.bail {
  position: absolute;
  top: -4px;
  left: -2px;
  right: -2px;
  height: 3px;
  background: #e8d8a0;
  border-radius: 2px;
}

/* ── FLOATING ELEMENTS ── */
.cricket-ball {
  position: absolute;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle at 35% 35%, #c8342a, #8b1a12);
  border-radius: 50%;
  top: 22%;
  right: 22%;
  box-shadow: inset -3px -3px 6px rgba(0,0,0,0.3);
  animation: ballFloat 6s ease-in-out infinite;
}

.cricket-ball::after {
  content: '';
  position: absolute;
  top: 50%; left: 10%;
  right: 10%; height: 1.5px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translateY(-50%);
}

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

.umbrella {
  position: absolute;
  top: 15%;
  left: 15%;
  font-size: 3.5rem;
  animation: umbrellaFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

@keyframes umbrellaFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-10px) rotate(5deg); }
}

/* ── WEATHER STRIP ── */
.weather-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 4rem;
  display: flex;
  gap: 4rem;
  overflow: hidden;
  position: relative;
}

.weather-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--grass);
}

.weather-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-shrink: 0;
}

.weather-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
}

.weather-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.verdict-good { color: #6ec46a; }
.verdict-bad  { color: var(--accent); }

/* ── FEATURES ── */
.features {
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(26,26,24,0.1);
}

.feature {
  padding: 3rem;
  border-right: 1px solid rgba(26,26,24,0.1);
  transition: background 0.3s;
}

.feature:last-child { border-right: none; }
.feature:hover { background: rgba(45,90,27,0.04); }

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,26,24,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,26,24,0.6);
}

/* ── VERDICT DEMO ── */
.demo-section {
  background: var(--ink);
  color: var(--cream);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.demo-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grass-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.demo-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--grass-light);
}

.demo-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.demo-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
}

.verdict-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.verdict-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grass-light);
}

.verdict-card.bad::before { background: var(--accent); }

.verdict-location {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.verdict-result {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #6ec46a;
}

.verdict-card.bad .verdict-result { color: var(--accent); }

.verdict-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.condition {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.condition-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.condition-value {
  font-size: 1rem;
  font-weight: 500;
}

.condition-value.ok  { color: #6ec46a; }
.condition-value.bad { color: var(--accent); }

/* ── FOOTER ── */
footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(26,26,24,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
}

.footer-logo span { color: var(--grass); }

.footer-note {
  font-size: 0.8rem;
  color: rgba(26,26,24,0.4);
}

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

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero-title   { animation: fadeUp 0.6s ease 0.1s both; }
.hero-subtitle{ animation: fadeUp 0.6s ease 0.2s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left  { padding: 7rem 1.5rem 3rem; }
  .hero-right { height: 40vh; }

  .features {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(26,26,24,0.1);
    padding: 2rem 1.5rem;
  }

  .feature:last-child { border-bottom: none; }

  .demo-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .weather-strip { padding: 1rem 1.5rem; gap: 2rem; }

  footer {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
}


/* ────────────────────────────────────────
   APP PAGE — additional styles
   Append these to the bottom of style.css
   ──────────────────────────────────────── */

/* ── APP HERO ── */
.app-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.app-hero-inner {
  padding: 4rem 4rem 3rem;
  max-width: 640px;
}

.app-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.app-title em {
  font-style: italic;
  color: var(--grass);
}

.app-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(26,26,24,0.55);
  margin-bottom: 2rem;
}

/* ── SEARCH FORM ── */
.search-form { width: 100%; }

.search-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 480px;
}

/* Override WTForms default field styling */
.search-row dl { margin: 0; flex: 1; }
.search-row dt { display: none; }
.search-row dd { margin: 0; }

.search-row input[type="text"],
.search-row input[type="search"] {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: white;
  border: 1.5px solid rgba(26,26,24,0.2);
  border-right: none;
  border-radius: 2px 0 0 2px;
  padding: 0.85rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-row input[type="text"]:focus,
.search-row input[type="search"]:focus {
  border-color: var(--grass);
}

.search-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  border-radius: 0 2px 2px 0;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.search-btn svg { transition: transform 0.2s; }
.search-btn:hover { background: var(--grass); }
.search-btn:hover svg { transform: translateX(3px); }

/* ── VERDICT BANNER ── */
.verdict-banner {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 4rem;
  border-top: 3px solid var(--grass-light);
}

.verdict-banner--excellent { border-top-color: #6ec46a; }
.verdict-banner--bad       { border-top-color: var(--accent); }

.verdict-banner-inner { max-width: 800px; }

.verdict-location-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  display: block;
  margin-bottom: 0.75rem;
}

.verdict-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── CONDITION CARDS ── */
.condition-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(26,26,24,0.1);
}

.condition-card {
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(26,26,24,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}

.condition-card:last-child { border-right: none; }
.condition-card:hover { background: rgba(45,90,27,0.03); }

.condition-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.45);
}

.condition-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.condition-card-value.ok  { color: var(--grass); }
.condition-card-value.bad { color: var(--accent); }

.condition-card-note {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(26,26,24,0.55);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* ── RESULTS SECTION ── */
.results-section {
  animation: fadeUp 0.5s ease both;
}

/* ── APP PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .app-hero-inner { padding: 5rem 1.5rem 2.5rem; }

  .search-row { max-width: 100%; }

  .verdict-banner { padding: 2rem 1.5rem; }

  .condition-cards { grid-template-columns: 1fr; }

  .condition-card {
    border-right: none;
    border-bottom: 1px solid rgba(26,26,24,0.1);
    padding: 1.75rem 1.5rem;
  }

  .condition-card:last-child { border-bottom: none; }
}

.no-ball-error {
  padding: 1rem 4rem;
  background: rgba(200, 67, 42, 0.06);
  border-left: 3px solid var(--accent);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}

.no-ball-tag {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* ────────────────────────────────────────
   DOCS PAGE
   ──────────────────────────────────────── */

.docs-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.docs-hero-inner {
  padding: 0 4rem;
  max-width: 700px;
}

.docs-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.docs-title em {
  font-style: italic;
  color: var(--grass);
}

.docs-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(26,26,24,0.6);
  line-height: 1.7;
}

/* ── DISCLAIMER ── */
.disclaimer-banner {
  background: rgba(201, 150, 42, 0.08);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 4rem;
}

.disclaimer-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 860px;
}

.disclaimer-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-inner p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(26,26,24,0.7);
}

.disclaimer-inner strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── DOCS SECTIONS ── */
.docs-body {
  padding-bottom: 0;
}

.docs-section {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  padding: 4rem;
  border-bottom: 1px solid rgba(26,26,24,0.08);
  transition: background 0.3s;
}

.docs-section:hover { background: rgba(45,90,27,0.02); }

.docs-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(26,26,24,0.06);
  line-height: 1;
  padding-top: 0.25rem;
}

.docs-section-content {
  max-width: 680px;
}

.docs-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.docs-section-content p {
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26,26,24,0.7);
  margin-bottom: 1rem;
}

.docs-section-content p:last-child { margin-bottom: 0; }

.docs-link {
  color: var(--grass);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-link:hover { color: var(--grass-light); }

/* ── EXAMPLES ── */
.docs-example {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.docs-example-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.4);
}

.docs-example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.docs-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.docs-tag--good {
  background: rgba(45,90,27,0.08);
  color: var(--grass);
  border: 1px solid rgba(45,90,27,0.15);
}

.docs-tag--bad {
  background: rgba(200,67,42,0.06);
  color: var(--accent);
  border: 1px solid rgba(200,67,42,0.15);
}

/* ── VERDICT GUIDE ── */
.verdict-guide {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,26,24,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.verdict-guide-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(26,26,24,0.08);
  border-left: 3px solid transparent;
}

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

.verdict-guide-item--excellent { border-left-color: #6ec46a; }
.verdict-guide-item--good      { border-left-color: var(--grass-light); }
.verdict-guide-item--playable  { border-left-color: var(--gold); }
.verdict-guide-item--poor      { border-left-color: #e07b40; }
.verdict-guide-item--off       { border-left-color: var(--accent); }

.verdict-guide-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  min-width: 200px;
}

.verdict-guide-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(26,26,24,0.6);
  line-height: 1.5;
}

/* ── VARIABLES GRID ── */
.vars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.var-card {
  background: var(--cloud);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.var-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.5);
}

.var-unit {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--grass);
  line-height: 1;
  margin: 0.25rem 0 0.5rem;
}

.var-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(26,26,24,0.65);
}

/* ── ISSUE REPORTING ── */
.docs-issue {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem;
}

.docs-issue-inner { max-width: 600px; }

.docs-issue-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.docs-issue-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin-bottom: 1.75rem;
}

.docs-issue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--grass);
  padding: 0.9rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.docs-issue-btn svg { transition: transform 0.2s; }
.docs-issue-btn:hover { background: var(--grass-light); transform: translateY(-1px); }
.docs-issue-btn:hover svg { transform: translateX(3px); }

/* ────────────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────────────── */

.about-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.about-hero-inner {
  padding: 0 4rem;
  max-width: 700px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-title em {
  font-style: italic;
  color: var(--grass);
}

/* ── ABOUT SECTIONS ── */
.about-body { padding-bottom: 0; }

.about-section {
  padding: 5rem 4rem;
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.about-section--dark {
  background: var(--ink);
  color: var(--cream);
}

.about-section-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  max-width: 900px;
}

.about-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grass-light);
  padding-top: 0.4rem;
}

.about-section--dark .about-section-label {
  color: rgba(245,240,232,0.35);
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.about-section--dark .about-heading { color: var(--cream); }

.about-section-content p {
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,26,24,0.65);
  margin-bottom: 1rem;
}

.about-section-content p:last-child { margin-bottom: 0; }

.about-section--dark .about-section-content p {
  color: rgba(245,240,232,0.55);
}

/* ── LINKS SECTION ── */
.about-links-section {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(26,26,24,0.08);
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,26,24,0.1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 560px;
}

.about-link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(26,26,24,0.08);
  transition: background 0.2s;
}

.about-link-card:last-child { border-bottom: none; }
.about-link-card:hover { background: rgba(45,90,27,0.04); }

.about-link-icon {
  width: 40px;
  height: 40px;
  background: var(--cloud);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}

.about-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.about-link-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.about-link-handle {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(26,26,24,0.45);
}

.about-link-arrow {
  color: rgba(26,26,24,0.3);
  transition: transform 0.2s, color 0.2s;
}

.about-link-card:hover .about-link-arrow {
  transform: translateX(3px);
  color: var(--grass);
}

/* ────────────────────────────────────────
   SHARED RESPONSIVE — DOCS & ABOUT
   ──────────────────────────────────────── */
@media (max-width: 900px) {
  .docs-hero-inner,
  .about-hero-inner { padding: 0 1.5rem; }

  .disclaimer-banner { padding: 1rem 1.5rem; }

  .docs-section {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 0.5rem;
  }

  .docs-section-num { font-size: 2rem; }

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

  .docs-issue { padding: 2.5rem 1.5rem; }

  .about-section { padding: 3rem 1.5rem; }

  .about-section-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-links-section { padding: 2.5rem 1.5rem; }

  .verdict-guide-item { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .verdict-guide-label { min-width: unset; }
}