:root {
  --bg-primary: #081c15;
  --bg-secondary: #0f2a21;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --green: #22c55e;
  --green-bright: #4ade80;
  --gold: #facc15;
  --text: #ecfdf5;
  --text-2: #bbf7d0;
  --text-muted: #6ee7b7;
  --radius: 18px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.25);
  --shadow-glow: 0 8px 30px rgba(34,197,94,0.15);
  --container: 1320px;
  --space-section: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(34,197,94,0.08), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(74,222,128,0.05), transparent 45%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: var(--green-bright); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: 820px; }

.section { padding: var(--space-section) 0; }
.mt-60 { margin-top: 60px; }

/* Typography */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.25rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-2); }
.muted { color: var(--text-muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  font-weight: 600;
  margin-bottom: 14px;
}
.accent { color: var(--green-bright); }
.small-note, .tiny-note { font-size: 0.8rem; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  color: #052e1a;
  box-shadow: 0 6px 20px rgba(34,197,94,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
  filter: brightness(1.08);
  color: #052e1a;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--green-bright);
  border-color: rgba(74,222,128,0.35);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(8,28,21,0.7);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(8,28,21,0.92);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; }
.logo-mark { font-size: 1.5rem; }
.logo-dot { color: var(--green-bright); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--green-bright); transition: width .3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg-secondary);
  z-index: 200; transform: translateX(100%);
  transition: transform .35s ease;
  padding: 80px 32px;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu nav a { color: var(--text); font-size: 1.3rem; font-weight: 600; }
.close-menu { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: var(--text); font-size: 2rem; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,28,21,0.75) 0%, rgba(15,42,33,0.65) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: var(--text-2); max-width: 520px; margin-bottom: 14px; }
.disclaimer { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; font-style: italic; }
.hero-ctas { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; color: var(--text); font-weight: 800; }
.hero-stats span { font-size: 0.85rem; color: var(--text-muted); }

/* Pitch Card */
.pitch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}
.pitch-header { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 600; letter-spacing: 0.05em; }
.pitch-time { margin-left: auto; color: var(--green-bright); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); animation: pulse 2s infinite; }
.pitch-teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.team-block { display: flex; align-items: center; gap: 12px; }
.team-block:last-child { flex-direction: row-reverse; }
.team-block strong { font-size: 2rem; font-weight: 800; }
.team-block span { font-size: 0.95rem; font-weight: 600; color: var(--text-2); }
.vs { color: var(--text-muted); font-size: 0.85rem; }
.crest {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem; color: #052e1a;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
}
.crest-a { background: linear-gradient(135deg, #ef4444, #f87171); color: white; }
.crest-b { background: linear-gradient(135deg, #3b82f6, #60a5fa); color: white; }
.crest-c { background: linear-gradient(135deg, #f8fafc, #e2e8f0); color: #0f172a; }
.crest-d { background: linear-gradient(135deg, #dc2626, #fb923c); color: white; }
.crest-e { background: linear-gradient(135deg, #1e3a8a, #3b82f6); color: white; }
.crest-f { background: linear-gradient(135deg, #111827, #374151); color: white; }
.crest-g { background: linear-gradient(135deg, #dc2626, #f87171); color: white; }
.crest-h { background: linear-gradient(135deg, #eab308, #facc15); color: #052e1a; }

.pitch-diagram {
  height: 80px; background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(74,222,128,0.05));
  border-radius: 12px; position: relative; margin-bottom: 20px; border: 1px solid var(--border);
}
.pitch-line { position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background: var(--border); }
.dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 8px rgba(74,222,128,0.5); }
.d1 { top: 30%; left: 15%; } .d2 { top: 55%; left: 28%; } .d3 { top: 40%; left: 45%; } .d4 { top: 60%; left: 65%; } .d5 { top: 35%; left: 80%; }
.pitch-insight { padding-top: 16px; border-top: 1px solid var(--border); }
.pitch-insight .tag { display: inline-block; padding: 4px 10px; background: rgba(34,197,94,0.15); color: var(--green-bright); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 8px; margin-bottom: 8px; }
.pitch-insight p { font-size: 0.9rem; color: var(--text-2); }

/* Section head */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.section-head h2 { margin-top: 4px; }
.link-arrow { color: var(--green-bright); font-weight: 600; font-size: 0.95rem; }
.link-arrow:hover { color: var(--green); }
.section-note { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 40px; max-width: 720px; }
.sub-head { margin: 60px 0 24px; font-size: 1.3rem; color: var(--text); font-weight: 700; }

/* Match cards */
.match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}
.match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74,222,128,0.25);
  box-shadow: var(--shadow-glow);
}
.match-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.league-tag { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(239,68,68,0.15); color: #fca5a5; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; border-radius: 999px; }
.live-pill .live-dot { background: #ef4444; }
.upcoming-pill { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; background: var(--surface-2); border-radius: 999px; }
.match-teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; }
.match-teams .t { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; flex: 1; }
.match-teams .t:last-child { justify-content: flex-end; text-align: right; }
.match-teams .score { font-size: 1.3rem; font-weight: 800; color: var(--text); padding: 0 8px; }
.match-insight { font-size: 0.9rem; color: var(--text-2); margin-bottom: 16px; line-height: 1.55; }

/* Analysis */
.analysis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.analysis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
}
.analysis-card:hover { transform: translateY(-4px); border-color: rgba(74,222,128,0.25); }
.analysis-card.big {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.analysis-card.big .analysis-img { height: 100%; }
.analysis-card.big .analysis-img img { height: 100%; min-height: 320px; object-fit: cover; }
.analysis-img { overflow: hidden; aspect-ratio: 16/9; }
.analysis-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.analysis-card:hover .analysis-img img { transform: scale(1.05); }
.analysis-body { padding: 24px; }
.analysis-body h3 { margin: 10px 0 10px; line-height: 1.25; }
.analysis-body .big h2, .featured-hero h2 { margin: 10px 0 12px; }
.tag { display: inline-block; padding: 4px 10px; background: rgba(34,197,94,0.12); color: var(--green-bright); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 8px; }
.analysis-meta { display: flex; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; flex-wrap: wrap; }

.featured-hero { display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden; }
.featured-hero .analysis-img img { min-height: 360px; object-fit: cover; }
.featured-hero .analysis-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }

/* Formation Diagram */
.formation-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.formation-diagram h3 { margin-bottom: 24px; }
.pitch-visual {
  background: linear-gradient(180deg, rgba(34,197,94,0.08), rgba(34,197,94,0.03));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 20px;
  display: flex; flex-direction: column; gap: 30px;
  max-width: 600px; margin: 0 auto;
}
.pitch-row { display: flex; justify-content: space-around; gap: 20px; }
.player-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #052e1a; font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.diagram-caption { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; }

/* Stats Tabs */
.stats-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab, .filter {
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.tab:hover, .filter:hover { border-color: rgba(74,222,128,0.3); color: var(--text); }
.tab.active, .filter.active {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #052e1a;
  border-color: transparent;
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

/* Stats Table */
.stats-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  overflow-x: auto;
}
.stats-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.stats-table th, .stats-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.stats-table th { font-weight: 700; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.02); }
.stats-table tr:last-child td { border-bottom: 0; }
.stats-table tr:hover td { background: rgba(74,222,128,0.04); }
.stats-table strong { color: var(--text); font-weight: 700; }
.stats-table a { color: var(--text); font-weight: 500; }
.stats-table a:hover { color: var(--green-bright); }

/* Compare */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.compare-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.compare-card h4 { margin-bottom: 20px; }

/* Insights */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s ease;
}
.insight-card:hover { transform: translateY(-4px); border-color: rgba(74,222,128,0.25); }
.insight-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.insight-tag { font-size: 0.72rem; color: var(--green-bright); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; background: rgba(34,197,94,0.12); border-radius: 8px; }
.insight-date { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.insight-card h3 { margin-bottom: 18px; }
.form-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.form-row { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.form-row > span:first-child { flex: 0 0 120px; color: var(--text-2); font-weight: 500; }
.form-row > span:last-child { color: var(--green-bright); font-weight: 700; flex: 0 0 40px; text-align: right; }
.bar { flex: 1; height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-bright)); border-radius: 999px; transition: width 1s ease; }

.callout {
  background: rgba(250,204,21,0.08);
  border: 1px solid rgba(250,204,21,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  color: var(--text-2);
  font-size: 0.95rem;
  max-width: 820px;
}
.callout strong { color: var(--gold); }

/* Encyclopedia */
.ency-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.ency-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
  color: inherit;
  display: block;
}
.ency-card:hover { transform: translateY(-4px); border-color: rgba(74,222,128,0.25); color: inherit; }
.ency-img { aspect-ratio: 4/3; overflow: hidden; }
.ency-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ency-card:hover .ency-img img { transform: scale(1.06); }
.ency-body { padding: 18px; }
.ency-body h4 { margin: 8px 0 6px; }
.ency-body p { font-size: 0.85rem; color: var(--text-muted); }

/* Team / Player profile */
.team-profile, .player-profile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
}
.team-profile-head, .player-profile-head { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.team-crest-big {
  width: 90px; height: 90px; border-radius: 20px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: white;
  box-shadow: var(--shadow-soft);
}
.player-avatar { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.player-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-profile-body, .player-profile-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.team-profile-body h4, .player-profile-body h4 { margin: 20px 0 8px; color: var(--text); }
.team-profile-body h4:first-child, .player-profile-body h4:first-child { margin-top: 0; }
.team-side {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  align-self: start;
}
.team-side h5 { margin-bottom: 16px; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.team-side ul { list-style: none; }
.team-side li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.team-side li:last-child { border-bottom: 0; }
.team-side span { color: var(--text-muted); }
.team-side strong { color: var(--text); font-weight: 700; }

/* Fixtures list */
.fixtures-list { display: flex; flex-direction: column; gap: 12px; }
.fixture {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.fixture:hover { border-color: rgba(74,222,128,0.25); transform: translateX(4px); }
.fx-time { display: flex; flex-direction: column; }
.fx-time strong { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.fx-time span { font-size: 0.8rem; color: var(--text-muted); }
.fx-teams { font-weight: 600; font-size: 1rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fx-teams em { color: var(--text-muted); font-style: normal; font-weight: 500; font-size: 0.85rem; }
.fx-meta { display: flex; align-items: center; gap: 14px; }

/* Newsletter */
.newsletter-section { padding-bottom: var(--space-section); }
.newsletter-card {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(15,42,33,0.6));
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  backdrop-filter: blur(12px);
}
.newsletter-card h2 { margin-bottom: 16px; }
.newsletter-card p { margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; position: relative; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  background: rgba(8,28,21,0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}
.newsletter-form input:focus { outline: 0; border-color: var(--green-bright); }
.nl-success { display: none; color: var(--green-bright); font-weight: 600; font-size: 0.9rem; width: 100%; }

.digest-preview {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.digest-tag { display: inline-block; font-size: 0.72rem; color: var(--green-bright); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.digest-preview ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.digest-preview li { display: flex; gap: 14px; font-size: 0.92rem; color: var(--text-2); }
.digest-preview li span { color: var(--green-bright); font-weight: 800; font-size: 0.85rem; min-width: 22px; }

/* Page hero */
.page-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, rgba(34,197,94,0.06), transparent);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; color: var(--text-2); max-width: 680px; }

/* Prose */
.prose h2 { margin: 36px 0 14px; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; font-size: 1rem; color: var(--text-2); }
.prose ul.bullet { list-style: none; padding-left: 0; margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul.bullet li { position: relative; padding-left: 22px; color: var(--text-2); }
.prose ul.bullet li::before { content: '▸'; position: absolute; left: 0; color: var(--green-bright); font-weight: 700; }

/* Values */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: var(--text-2); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list span { font-size: 1.3rem; flex-shrink: 0; }
.contact-list strong { display: block; color: var(--text); margin-bottom: 4px; }
.contact-list p { font-size: 0.92rem; color: var(--text-muted); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 12px 14px;
  background: rgba(8,28,21,0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 0; border-color: var(--green-bright); }

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 32px 60px;
}
.footer-brand p { margin-top: 16px; color: var(--text-2); font-size: 0.92rem; max-width: 320px; }
.footer-col h5 { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-2); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: var(--text-muted); }