:root {
  --bg-primary: #08080a;
  --bg-card: #0f0f12;
  --bg-accent: #16161a;
  --text-primary: #edecea;
  --text-secondary: #8a8884;
  --text-muted: #55534f;
  --accent: #e8432a;
  --accent-dim: rgba(232, 67, 42, 0.12);
  --accent-glow: rgba(232, 67, 42, 0.06);
  --accent-bright: #ff5038;
  --border: #1e1e22;
  --border-hover: #2a2a2f;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand span { color: var(--accent); }
.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.active { color: var(--text-primary); }
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(232, 67, 42, 0.35);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* SHARED LABEL STYLE */
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* HERO - HOME */
.hero {
  padding: 130px 0 110px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.08;
  font-weight: 400;
  max-width: 850px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-sub strong {
  color: var(--text-primary);
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.btn-primary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 17px 42px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 67, 42, 0.3);
}
.btn-ghost {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 17px 0;
  transition: color 0.3s ease;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-ghost span { margin-left: 8px; transition: margin-left 0.3s ease; }
.btn-ghost:hover span { margin-left: 14px; }

/* DISRUPTION BAR */
.disruption {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.disruption-track {
  display: flex;
  gap: 64px;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}
.disruption-item {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.disruption-item span { color: var(--accent); margin: 0 24px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PROOF BAR */
.proof {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.proof-item {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  position: relative;
  padding-left: 20px;
}
.proof-item::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 3px; height: 32px;
  background: var(--accent);
}
.proof-item:nth-child(1) { animation-delay: 0.3s; }
.proof-item:nth-child(2) { animation-delay: 0.45s; }
.proof-item:nth-child(3) { animation-delay: 0.6s; }
.proof-item:nth-child(4) { animation-delay: 0.75s; }
.proof-number {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.proof-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* THE PROBLEM */
.problem {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.problem-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.problem-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.problem-text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.45;
  max-width: 860px;
  margin-bottom: 36px;
  font-weight: 400;
}
.problem-text em {
  color: var(--accent);
  font-style: italic;
}
.problem-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.85;
}

/* STORY */
.story {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
.story-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 6px;
}
.story-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.story-text {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
}
.story-text strong {
  color: var(--text-primary);
  font-weight: 500;
}
.story-text p + p {
  margin-top: 24px;
}

/* SERVICES */
.services {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.services-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
}
.services-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { height: 100%; }
.service-number {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.service-title {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.service-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* TIMELINE */
.timeline {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.timeline-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.timeline-items {
  display: flex;
  flex-direction: column;
}
.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: all 0.3s ease;
}
.timeline-item:first-child { border-top: 1px solid var(--border); }
.timeline-item:hover {
  padding-left: 12px;
}
.timeline-item:hover .timeline-year { color: var(--accent); }
.timeline-year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.timeline-content h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* HERO - ABOUT */
.about-hero {
  padding: 100px 0 80px;
  position: relative;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  width: 300px;
  height: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
}
.about-intro h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 28px;
  font-weight: 400;
}
.about-intro h1 em {
  color: var(--accent);
  font-style: italic;
}
.about-intro p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-intro p strong {
  color: var(--text-primary);
  font-weight: 500;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.3s ease;
}
.linkedin-link:hover { gap: 14px; }

/* THE ARC */
.arc {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}
.arc-headline {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.35;
  max-width: 800px;
  margin-bottom: 48px;
  font-weight: 400;
}
.arc-headline em {
  color: var(--accent);
  font-style: italic;
}
.arc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.arc-step {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}
.arc-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.arc-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.arc-step:hover::before { height: 100%; }
.arc-step-era {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.arc-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}
.arc-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* THE PROBLEM - WHY AI COMPANIES FAIL */
.why-fail {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.why-fail-intro {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  max-width: 820px;
  margin-bottom: 20px;
  font-weight: 400;
}
.why-fail-intro em {
  color: var(--accent);
  font-style: italic;
}
.why-fail-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.85;
  margin-bottom: 56px;
}
.fail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.fail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.fail-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.fail-card:hover::before { height: 100%; }
.fail-icon {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.fail-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}
.fail-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* WHY ME SECTION */
.why-me {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.why-me-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-me-narrative h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 400;
}
.why-me-narrative h2 em {
  color: var(--accent);
  font-style: italic;
}
.why-me-narrative p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.why-me-narrative p strong {
  color: var(--text-primary);
  font-weight: 500;
}
.proof-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}
.proof-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.proof-card-number {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
}
.proof-card-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}
.proof-card-text strong {
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

/* HOW I WORK */
.how-work {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.how-work-intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 56px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.engagement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}
.engagement-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.engagement-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.engagement-card:hover::after { width: 100%; }
.engagement-step {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.engagement-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.engagement-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* BOOK PAGE */
.book-hero {
  padding: 100px 0 80px;
  position: relative;
  text-align: center;
}
.book-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.book-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
}
.book-hero h1 em {
  color: var(--accent);
  font-style: italic;
}
.book-hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.85;
}
.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 100px;
}
.calendar-wrapper {
  background: #ffffff;
  padding: 32px;
  border: 3px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(232, 67, 42, 0.15);
}
.calendar-container iframe {
  border: none;
  border-radius: 4px;
  background: transparent;
  display: block;
  overflow: hidden;
}

/* CTA SECTION */
.cta-section {
  padding: 120px 0 140px;
  position: relative;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 52px);
  margin-bottom: 24px;
  position: relative;
  line-height: 1.15;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--accent);
}
.cta-subtext {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.cta-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 18px 56px;
  transition: all 0.3s ease;
  position: relative;
}
.cta-btn:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 67, 42, 0.3);
}
.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* FOOTER */
footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
}
footer .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.footer-brand {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.footer-brand span { color: var(--accent); }
.footer-brand-tagline {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
  font-weight: 300;
}
.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.footer-nav a:hover { color: var(--accent); }
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.footer-nav a:hover::after { width: 100%; }
.footer-social {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.footer-social a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border: 1px solid var(--border);
}
.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-text {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-family: var(--mono);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--mono);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--accent); }

/* LEGAL PAGES */
.legal-page {
  padding: 100px 0 120px;
}
.legal-header {
  margin-bottom: 64px;
}
.legal-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 400;
}
.legal-header h1 em {
  color: var(--accent);
  font-style: italic;
}
.legal-updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--text-primary);
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.legal-content p strong {
  color: var(--text-primary);
  font-weight: 500;
}
.legal-content ul {
  list-style: none;
  margin: 20px 0 32px;
  padding: 0;
}
.legal-content li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.legal-content li strong {
  color: var(--text-primary);
  font-weight: 500;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.legal-content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
    margin: 0 auto;
    width: 100%;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 11px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 8px 16px;
  }
  .hero {
    padding: 80px 0 70px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .disruption {
    display: none;
  }
  footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .about-hero {
    padding: 60px 0 60px;
  }
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo {
    width: 200px;
    height: 250px;
    margin: 0 auto;
    border-radius: 8px;
  }
  .arc-steps {
    grid-template-columns: 1fr 1fr;
  }
  .fail-grid {
    grid-template-columns: 1fr;
  }
  .why-me-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  .book-hero {
    padding: 60px 0 60px;
  }
  .calendar-container {
    padding: 0 0 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .arc-steps {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-link {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .nav-cta {
    font-size: 10px;
    padding: 8px 12px;
  }
  .calendar-wrapper {
    padding: 20px;
  }
}
