/* ============================================================
   Start My Protocol — Build
   Premium technologist aesthetic. Linear/Vercel-coded.
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #0A0A0B;
  --bg-elev: #111114;
  --bg-card: #15151A;
  --border: #1F1F26;
  --border-strong: #2A2A33;
  --grid: rgba(255, 255, 255, 0.03);

  /* Text */
  --text-1: #F5F5F7;
  --text-2: #A8A8B3;
  --text-3: #6B6B78;

  /* Accent — warm amber, longevity-coded but premium not wellness-cliche */
  --amber: #E5A85B;
  --amber-soft: #C98F4A;
  --amber-glow: rgba(229, 168, 91, 0.14);
  --amber-line: rgba(229, 168, 91, 0.22);

  /* Functional */
  --green: #4ADE80;
  --radius: 6px;
  --radius-lg: 12px;
  --max-w: 1180px;
  --section-pad: clamp(80px, 12vw, 160px);

  /* Type */
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'ss02', 'cv11';
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle dot grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* Soft amber bloom on the hero */
body::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--amber-glow), transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--amber);
  color: var(--bg);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--text-1);
}

.brand-logo {
  width: auto;
  display: block;
}

.site-header .brand-logo {
  height: 44px;
}

.footer-brand .brand-logo {
  height: 56px;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: var(--bg);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
}

.brand-name {
  font-weight: 600;
}

.brand-slash {
  color: var(--text-3);
  margin: 0 2px;
}

.brand-route {
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 13px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-1);
  background: var(--bg-elev);
}

.nav-link.is-active {
  color: var(--text-1);
}

.nav-cta {
  margin-left: 12px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  background: var(--text-1);
  color: var(--bg);
  border-radius: var(--radius);
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================================
   Layout
   ============================================================ */
main {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid var(--border);
}

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
}

/* Section heading */
.section-heading {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 820px;
}

.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 64px;
}

.section-heading em {
  font-style: normal;
  color: var(--amber);
  font-weight: 500;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 120px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elev);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 980px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--amber);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--amber-line);
}

.hero h1 .strike {
  position: relative;
  color: var(--text-3);
  white-space: nowrap;
}

.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 2px;
  background: var(--text-3);
  transform: rotate(-2deg);
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 48px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--bg);
}

.btn-primary:hover {
  background: #F0B86B;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--amber-glow);
}

.btn-secondary {
  background: var(--bg-elev);
  color: var(--text-1);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text-3);
  background: var(--bg-card);
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* Hero meta strip — small "by the team" credibility line */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  overflow: hidden;
}

.hero-meta-item {
  flex: 1;
  min-width: 200px;
  padding: 22px 26px;
  border-right: 1px solid var(--border);
}

.hero-meta-item:last-child {
  border-right: none;
}

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.hero-meta-value {
  font-size: 15px;
  color: var(--text-1);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-meta-value .num {
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 500;
}

/* ============================================================
   What you get
   ============================================================ */
.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.deliverable {
  background: var(--bg-elev);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s ease;
}

.deliverable:hover {
  background: var(--bg-card);
}

.deliverable-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.deliverable h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--text-1);
}

.deliverable p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============================================================
   Tiers / Pricing
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tier {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tier:hover {
  border-color: var(--border-strong);
}

.tier.is-featured {
  border-color: var(--amber-line);
  background:
    linear-gradient(180deg, rgba(229, 168, 91, 0.04), transparent 60%),
    var(--bg-elev);
  position: relative;
}

.tier.is-featured::before {
  content: 'Start here';
  position: absolute;
  top: -1px;
  left: 28px;
  transform: translateY(-50%);
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 12px;
}

.tier-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.tier-tag {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.5;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.tier-price .from {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 2px;
}

.tier-price .num {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-1);
  font-feature-settings: 'tnum';
}

.tier.is-featured .tier-price .num {
  color: var(--amber);
}

.tier-price .unit {
  font-size: 14px;
  color: var(--text-2);
}

.tier-price-note {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 28px;
  font-family: var(--font-mono);
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.tier-features li {
  font-size: 14.5px;
  color: var(--text-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--amber);
  margin-top: 11px;
  flex-shrink: 0;
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  color: var(--text-1);
  background: var(--bg-card);
  transition: all 0.2s ease;
}

.tier-cta:hover {
  background: var(--text-1);
  color: var(--bg);
  border-color: var(--text-1);
}

.tier.is-featured .tier-cta {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--bg);
}

.tier.is-featured .tier-cta:hover {
  background: #F0B86B;
  border-color: #F0B86B;
}

/* ============================================================
   Build breakdown table
   ============================================================ */
.breakdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
}

.breakdown-header,
.breakdown-row,
.breakdown-total {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  padding: 18px 28px;
  align-items: center;
}

.breakdown-header {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.breakdown-header > div:last-child {
  text-align: right;
}

.breakdown-row {
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  transition: background 0.15s ease;
}

.breakdown-row:hover {
  background: var(--bg-card);
}

.breakdown-row .component {
  color: var(--text-1);
}

.breakdown-row .hours {
  font-family: var(--font-mono);
  color: var(--text-2);
  font-feature-settings: 'tnum';
  text-align: right;
}

.breakdown-total {
  background: var(--bg-card);
  font-weight: 500;
  border-top: 1px solid var(--border-strong);
}

.breakdown-total .component {
  color: var(--text-1);
  font-weight: 500;
}

.breakdown-total .hours {
  font-family: var(--font-mono);
  color: var(--amber);
  text-align: right;
  font-weight: 500;
}

.breakdown-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
  padding-left: 4px;
  font-family: var(--font-mono);
}

/* ============================================================
   ICP table
   ============================================================ */
.icp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.icp-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icp-checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 0;
}

.icp-checks li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--amber);
}

.icp-checks strong {
  color: var(--text-1);
  font-weight: 500;
}

.icp-side {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.icp-side h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.icp-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icp-side li {
  font-size: 14.5px;
  color: var(--text-2);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.icp-side li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.icp-side li strong {
  color: var(--text-1);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

/* ============================================================
   Process timeline
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 32px 28px;
  background: var(--bg-elev);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s ease;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--bg-card);
}

.process-step .day {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 14px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.process-step p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============================================================
   Track record
   ============================================================ */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.track-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-line), transparent);
}

.track-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.track-name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.track-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 24px;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.track-tag {
  padding: 5px 10px;
  font-size: 12px;
  font-family: var(--font-mono);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-2);
}

/* ============================================================
   Discipline columns (will / won't)
   ============================================================ */
.discipline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.discipline-col {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
}

.discipline-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discipline-col.will h4 { color: var(--green); }
.discipline-col.wont h4 { color: var(--text-3); }

.discipline-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.discipline-col li {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.discipline-col.will li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

.discipline-col.wont li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1.5px;
  background: var(--text-3);
}

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--amber-glow), transparent 50%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

.cta-final h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.cta-final p {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn {
  font-size: 16px;
  padding: 16px 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 260px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
}

.footer-col a:hover {
  color: var(--text-1);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
}

.footer-bottom .legal {
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ============================================================
   Hero entrance — only the hero animates on load. Everything else
   is visible by default to keep the page robust without JS.
   ============================================================ */
.hero .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .tiers,
  .track-grid,
  .discipline {
    grid-template-columns: 1fr;
  }

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

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

  .breakdown-header,
  .breakdown-row,
  .breakdown-total {
    grid-template-columns: 2.4fr 1fr;
    gap: 12px;
    padding: 14px 18px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 80px;
  }

  .header-inner {
    padding: 14px 20px;
  }

  .nav-link {
    display: none;
  }

  .container,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-meta-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-meta-item:last-child {
    border-bottom: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .breakdown-header {
    display: none;
  }

  .breakdown-row,
  .breakdown-total {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 20px;
  }

  .breakdown-row .hours {
    text-align: left;
  }

  .breakdown-row .hours::before {
    content: 'Hours: ';
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 11px;
  }
}

/* ============================================================
   Hero rotator — animated word swap on the headline
   ============================================================ */
.hero-rotator {
  display: inline-block;
  position: relative;
  color: var(--text-1);
}

.hero-rotator-word {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-rotator.is-swapping .hero-rotator-word {
  opacity: 0;
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotator-word {
    transition: none;
  }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.testimonial-video {
  aspect-ratio: 16 / 10;
  width: 100%;
  background:
    radial-gradient(ellipse at center, rgba(229, 168, 91, 0.08), transparent 60%),
    var(--bg-card);
  display: block;
  position: relative;
  border: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.testimonial-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.testimonial-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.testimonial-video:hover::before {
  opacity: 0.75;
}

.testimonial-video:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

.testimonial-video .play-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.testimonial-video .play-icon svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.testimonial:hover .play-icon,
.testimonial-video:focus-visible .play-icon {
  transform: scale(1.08);
  background: #F0B86B;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(229, 168, 91, 0.18);
}

.testimonial-meta {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.testimonial-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.testimonial-business {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}

/* ============================================================
   Legal pages (privacy / terms / refund / cancellation / billing)
   ============================================================ */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 100px 0 var(--section-pad);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--text-1);
}

.legal-page h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-1);
  margin-bottom: 18px;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-top: 56px;
  margin-bottom: 18px;
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-page p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-page strong {
  color: var(--text-1);
  font-weight: 500;
}

.legal-page a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: rgba(229, 168, 91, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.legal-page a:hover {
  text-decoration-color: var(--amber);
}

.legal-page ul,
.legal-page ol {
  padding-left: 22px;
  margin-bottom: 18px;
  color: var(--text-2);
  line-height: 1.7;
}

.legal-page li {
  font-size: 15.5px;
  margin-bottom: 8px;
}

.legal-page hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 56px 0;
}
