/* ============================================================
   CARBONTRACK — AUDIT-READY BRAND SYSTEM
   Colour palette:
   Diamond White  #E3EDF5
   Blue Reflection #CBD8E2
   Astral Nomad   #203848
   Meditative     #95A7B3
   Turbulent Sea  #546C7B
   ============================================================ */

:root {
  --white: #E3EDF5;
  --blue-light: #CBD8E2;
  --navy: #203848;
  --mid: #95A7B3;
  --teal: #546C7B;
  --bg: #F0F5F9;
  --card: #FFFFFF;
  --border: rgba(32,56,72,0.10);
  --border-strong: rgba(32,56,72,0.20);
  --text: #1A2E3B;
  --text-mid: #546C7B;
  --text-light: #95A7B3;
  --accent: #203848;
  --accent-hover: #2E4F67;
  --featured: #203848;
  --shadow-sm: 0 2px 8px rgba(32,56,72,0.08);
  --shadow-md: 0 8px 32px rgba(32,56,72,0.12);
  --shadow-lg: 0 24px 64px rgba(32,56,72,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
.mono { font-family: 'DM Mono', monospace; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240,245,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--navy); text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 8px 20px; border-radius: 8px; font-size: 14px !important;
  font-weight: 500 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; border: 2px solid var(--navy);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; border: 2px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-primary-lg {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--navy);
  padding: 18px 36px; border-radius: 12px;
  font-size: 17px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

.btn-ghost-lg {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  padding: 18px 36px; border-radius: 12px;
  font-size: 17px; font-weight: 600; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
  background: rgba(84,108,123,0.08);
  padding: 4px 12px; border-radius: 4px;
  border: 1px solid rgba(84,108,123,0.15);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy); margin-bottom: 20px;
  line-height: 1.15;
}
.section-sub {
  font-size: 17px; color: var(--text-mid);
  max-width: 640px; line-height: 1.7; margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  padding: 80px 32px 100px;
  max-width: 1140px; margin: 0 auto;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.hero-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--teal);
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--navy); margin-bottom: 24px;
  line-height: 1.08; letter-spacing: -1px;
}
.hero-title em {
  font-style: italic; color: var(--teal);
}
.hero-sub {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-proof {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num {
  font-family: 'DM Mono', monospace;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.proof-label { font-size: 12px; color: var(--text-light); }
.proof-divider { width: 1px; height: 32px; background: var(--border); }

/* AUDIT CARD */
.audit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.audit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.audit-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.audit-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(32,56,72,0.06); color: var(--navy);
  padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border-strong);
}
.audit-status {
  font-size: 12px; font-weight: 600; color: #2E7D32;
  background: rgba(46,125,50,0.08); padding: 4px 10px; border-radius: 4px;
}
.audit-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(32,56,72,0.05);
  font-size: 14px;
}
.audit-label { color: var(--text-mid); }
.audit-val { font-weight: 500; color: var(--navy); }
.audit-val.mono { font-family: 'DM Mono', monospace; font-size: 12px; }
.audit-formula {
  background: rgba(32,56,72,0.04); border-radius: 8px;
  padding: 12px 16px; margin: 12px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.formula-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.formula-val { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--navy); font-weight: 500; }
.audit-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 2px solid var(--navy); margin-top: 4px;
  font-weight: 600; font-size: 15px; color: var(--navy);
}
.total-num { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); }
.audit-footer {
  font-size: 10px; color: var(--text-light); margin-top: 12px;
  font-family: 'DM Mono', monospace; letter-spacing: 0.5px;
}

/* ── PROBLEM ── */
.problem {
  background: var(--navy); padding: 100px 32px;
}
.problem .section-tag {
  color: var(--blue-light); background: rgba(203,216,226,0.1); border-color: rgba(203,216,226,0.2);
}
.problem .section-title { color: var(--white); }
.problem .section-sub { color: var(--blue-light); }
.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  padding: 40px; border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.problem-card:hover { background: rgba(255,255,255,0.07); }
.problem-icon {
  font-size: 24px; color: var(--mid); margin-bottom: 16px;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border-radius: 8px;
}
.problem-card h3 {
  font-size: 18px; color: var(--white); margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.problem-card p { font-size: 15px; color: var(--blue-light); line-height: 1.7; }

/* ── SOLUTION ── */
.solution { padding: 100px 32px; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.solution-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; padding: 28px 24px; border-radius: 12px;
  cursor: pointer; transition: all 0.2s; border: 1px solid transparent;
}
.step:hover, .step.active {
  background: var(--card); border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: var(--text-light); min-width: 28px; padding-top: 4px;
}
.step.active .step-num { color: var(--teal); }
.step-content h3 {
  font-size: 18px; color: var(--navy); margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.step-content p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* REPORT PREVIEW */
.report-preview {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md); position: sticky; top: 88px;
}
.report-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.report-title { font-size: 16px; font-weight: 600; color: var(--navy); }
.report-badge {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(32,56,72,0.06); color: var(--navy);
  padding: 3px 8px; border-radius: 3px;
}
.report-company { font-size: 13px; color: var(--text-light); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.scope-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(32,56,72,0.05);
  font-size: 14px; color: var(--text-mid);
}
.scope-row.highlight { background: rgba(84,108,123,0.06); margin: 0 -12px; padding: 10px 12px; border-radius: 6px; color: var(--navy); font-weight: 500; }
.scope-val { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--navy); font-weight: 500; }
.scope-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 12px; border-top: 2px solid var(--navy);
  font-weight: 600; font-size: 15px; color: var(--navy);
}
.scope-total-val { font-family: 'DM Serif Display', serif; font-size: 24px; }
.report-commitment {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding: 14px 16px;
  background: rgba(32,56,72,0.04); border-radius: 8px;
}
.commit-label { font-size: 13px; color: var(--text-mid); }
.commit-val { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); }
.report-footer {
  font-size: 10px; color: var(--text-light); margin-top: 16px;
  font-family: 'DM Mono', monospace; line-height: 1.6;
}

/* ── ICP ── */
.icp { background: var(--white); padding: 100px 32px; }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.persona-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.2s;
}
.persona-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.persona-card.primary {
  background: var(--navy); border-color: var(--navy);
}
.persona-role {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 4px; font-family: 'DM Sans', sans-serif;
}
.persona-card.primary .persona-role { color: var(--white); }
.persona-sector {
  font-size: 12px; color: var(--text-light); margin-bottom: 20px;
  font-family: 'DM Mono', monospace; letter-spacing: 0.5px;
}
.persona-card.primary .persona-sector { color: var(--mid); }
.persona-pain {
  padding: 16px; background: rgba(32,56,72,0.04);
  border-radius: 8px; margin-bottom: 16px;
  border-left: 3px solid var(--teal);
}
.persona-card.primary .persona-pain { background: rgba(255,255,255,0.08); }
.persona-pain p {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
  font-style: italic;
}
.persona-card.primary .persona-pain p { color: var(--blue-light); }
.persona-value { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.persona-card.primary .persona-value { color: var(--blue-light); }

/* ── CYCLE ── */
.cycle { padding: 100px 32px; }
.cycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cycle-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  position: relative; transition: all 0.2s;
}
.cycle-card.active {
  background: var(--navy); border-color: var(--navy);
}
.cycle-card.active::before {
  content: 'RIGHT NOW';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px;
  background: var(--teal); color: var(--white); padding: 3px 10px; border-radius: 20px;
}
.cycle-quarter {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 4px;
}
.cycle-card.active .cycle-quarter { color: var(--blue-light); }
.cycle-phase {
  font-size: 17px; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; font-family: 'DM Sans', sans-serif;
}
.cycle-card.active .cycle-phase { color: var(--white); }
.cycle-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.cycle-card.active p { color: var(--blue-light); }
.cycle-pitch {
  font-size: 13px; font-weight: 600; color: var(--navy);
  font-style: italic; border-top: 1px solid var(--border);
  padding-top: 16px; line-height: 1.5;
}
.cycle-card.active .cycle-pitch { color: var(--white); border-color: rgba(255,255,255,0.15); }

/* ── PRICING TEASER ── */
.pricing-teaser { background: var(--white); padding: 100px 32px; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; transition: all 0.2s;
}
.tier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tier-card.featured {
  background: var(--navy); border-color: var(--navy);
  transform: scale(1.03);
}
.tier-card.featured:hover { transform: scale(1.03) translateY(-2px); }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-size: 11px; font-weight: 600; padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.tier-name {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-mid); margin-bottom: 12px;
}
.tier-card.featured .tier-name { color: var(--mid); }
.tier-price {
  font-family: 'DM Serif Display', serif;
  font-size: 42px; color: var(--navy); margin-bottom: 4px; line-height: 1;
}
.tier-price span { font-size: 16px; font-family: 'DM Sans', sans-serif; color: var(--text-light); }
.tier-card.featured .tier-price { color: var(--white); }
.tier-card.featured .tier-price span { color: var(--mid); }
.tier-for {
  font-size: 13px; color: var(--text-light); margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.tier-card.featured .tier-for { color: var(--mid); border-color: rgba(255,255,255,0.15); }
.tier-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.tier-features li {
  font-size: 14px; color: var(--text-mid); padding-left: 20px; position: relative;
}
.tier-features li::before {
  content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 12px;
}
.tier-card.featured .tier-features li { color: var(--blue-light); }
.tier-card.featured .tier-features li::before { color: var(--mid); }
.tier-btn {
  display: block; text-align: center;
  background: var(--white); color: var(--navy);
  padding: 14px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.tier-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.tier-btn-ghost {
  display: block; text-align: center;
  background: transparent; color: var(--navy);
  padding: 13px; border-radius: 10px; border: 2px solid var(--border-strong);
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.tier-btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 100px 32px;
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta h2 {
  font-size: clamp(28px, 4vw, 42px); color: var(--white);
  margin-bottom: 20px; line-height: 1.2;
}
.cta p { font-size: 17px; color: var(--blue-light); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-note {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(203,216,226,0.6); letter-spacing: 0.5px;
}

/* ── FOOTER ── */
.footer {
  background: #162836; padding: 60px 32px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--mid); line-height: 1.7; max-width: 280px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--mid); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--blue-light); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: var(--mid); font-family: 'DM Mono', monospace;
}

/* ── HOW IT WORKS PAGE ── */
.page-hero {
  background: var(--navy); padding: 80px 32px 100px;
}
.page-hero-inner { max-width: 720px; }
.page-hero .section-tag { color: var(--blue-light); background: rgba(203,216,226,0.1); border-color: rgba(203,216,226,0.2); }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); color: var(--white); margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: var(--blue-light); line-height: 1.7; }

.hiw-steps { padding: 100px 32px; }
.hiw-step {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 48px; align-items: start;
  padding: 60px 0; border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 64px; color: var(--border); line-height: 1;
  position: relative; top: -8px;
}
.hiw-step-content h2 {
  font-size: 28px; color: var(--navy); margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
}
.hiw-step-content p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.hiw-step-detail {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.detail-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(32,56,72,0.05);
}
.detail-label { color: var(--text-light); }
.detail-val { font-family: 'DM Mono', monospace; color: var(--navy); font-weight: 500; }

/* ── COMPLIANCE PAGE ── */
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 100px 32px; }
.compliance-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.compliance-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.compliance-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.compliance-tag {
  display: inline-block; font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 16px;
  background: rgba(32,56,72,0.06); color: var(--navy); border: 1px solid var(--border-strong);
}

/* ── PRICING PAGE ── */
.pricing-hero { background: var(--navy); padding: 80px 32px; text-align: center; }
.pricing-hero h1 { font-size: clamp(36px, 5vw, 52px); color: var(--white); margin-bottom: 16px; }
.pricing-hero p { font-size: 18px; color: var(--blue-light); }
.pricing-main { padding: 80px 32px; }
.pricing-faq { padding: 0 32px 100px; max-width: 720px; margin: 0 auto; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-q { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.faq-a { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--navy); padding: 80px 32px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 100px 32px; align-items: start; }
.about-text h2 { font-size: 32px; color: var(--navy); margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 40px; position: sticky; top: 88px;
}
.about-card h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.about-card .role { font-size: 14px; color: var(--mid); margin-bottom: 24px; font-family: 'DM Mono', monospace; }
.about-card p { font-size: 15px; color: var(--blue-light); line-height: 1.7; }
.about-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.timeline-item { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.timeline-date { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--mid); min-width: 80px; padding-top: 2px; }
.timeline-text { font-size: 14px; color: var(--blue-light); line-height: 1.6; }

/* ── DEFRA TABLE ── */
.defra-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.defra-table th {
  background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; padding: 14px 16px; text-align: left;
}
.defra-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.defra-table td:last-child, .defra-table th:last-child { font-family: 'DM Mono', monospace; }
.defra-table tr:nth-child(even) td { background: rgba(32,56,72,0.02); }
.defra-table tr:hover td { background: rgba(84,108,123,0.06); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .solution-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .persona-grid, .tier-grid { grid-template-columns: 1fr; }
  .cycle-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 1fr; gap: 24px; }
  .compliance-grid { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 600px) {
  .cycle-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp 0.6s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-visual { animation: fadeUp 0.8s ease 0.3s both; }
