/* ============================================
   FTS — FUCK THE STANDARD
   fthestandard.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- TOKENS ---- */
:root {
  --black:    #0A0A0A;
  --off-black:#111111;
  --steel:    #1C1C1E;
  --ash:      #2A2A2E;
  --bone:     #E8E4DC;
  --white:    #F5F5F0;
  --red:      #C0392B;
  --red-hot:  #E84040;
  --muted:    #888884;
  --border:   #2E2E32;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --max-w: 1100px;
  --gutter: clamp(20px, 5vw, 60px);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--bone);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--bone);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-ghost:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-hot); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--bone);
  transition: all 0.25s;
  border-radius: 1px;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--gutter);
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-mobile a:hover { color: var(--white); }

/* ---- PAGE OFFSET ---- */
.page-body { padding-top: 64px; }

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
}
.hero-noise {
  position: absolute;
  inset: 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.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
  -webkit-text-stroke: 0;
  display: block;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll svg { width: 20px; color: var(--muted); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.divider-red {
  height: 3px;
  background: var(--red);
  width: 60px;
  margin-bottom: 32px;
}

/* ---- SECTION BASE ---- */
section { padding: 96px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-body {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- MANIFESTO STRIP ---- */
.manifesto {
  background: var(--red);
  padding: 0;
  overflow: hidden;
}
.manifesto-ticker {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.manifesto-ticker:hover { animation-play-state: paused; }
.manifesto-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
}
.manifesto-item span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.manifesto-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- ABOUT SPLIT ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(20%);
}
.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--red);
  border-radius: 2px;
  z-index: -1;
}
.about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--steel);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
}
.about-placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.about-text { display: flex; flex-direction: column; gap: 24px; }
.about-text p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.about-text strong { color: var(--bone); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--red);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- PODCAST SECTION ---- */
.podcast-section { background: var(--off-black); }
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-art {
  position: relative;
}
.podcast-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.podcast-art-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--steel);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.podcast-art-placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.podcast-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 2px;
}
.podcast-content { display: flex; flex-direction: column; gap: 24px; }
.podcast-content p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.episode-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.episode-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.episode-item:last-child { border-bottom: none; }
.episode-item:hover { background: var(--steel); }
.ep-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.1em;
  min-width: 30px;
}
.ep-title {
  font-size: 14px;
  color: var(--bone);
  flex: 1;
}
.ep-arrow { color: var(--muted); }
.podcast-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- BOOK SECTION ---- */
.book-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: 'FTS';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 25vw, 400px);
  color: rgba(192,57,43,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.book-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.book-cover {
  width: 260px;
  flex-shrink: 0;
}
.book-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.7), 4px 0 12px rgba(0,0,0,0.4);
}
.book-cover-placeholder {
  width: 260px;
  aspect-ratio: 2/3;
  background: var(--steel);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
  box-shadow: -20px 20px 60px rgba(0,0,0,0.7);
}
.book-cover-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}
.book-content { display: flex; flex-direction: column; gap: 24px; }
.book-content p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.book-pull-quote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--bone);
  line-height: 1.3;
}

/* ---- LEAD MAGNET ---- */
.lead-magnet {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lm-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.lm-content { display: flex; flex-direction: column; gap: 16px; }
.lm-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
}
.lm-sub { color: var(--muted); font-size: 16px; max-width: 480px; }
.lm-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-start; }
.lm-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.lm-form input[type="email"]::placeholder { color: var(--muted); }
.lm-form input[type="email"]:focus { border-color: var(--red); }
.lm-visual {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lm-pdf-mock {
  width: 140px;
  aspect-ratio: 3/4;
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.lm-pdf-mock::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  background: var(--red);
  clip-path: polygon(0 0, 60% 0, 100% 40%, 100% 100%, 0 100%);
}
.lm-pdf-mock span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 12px;
}
.lm-pdf-mock strong {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--bone);
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0 8px;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--off-black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-text {
  font-size: 15px;
  color: var(--bone);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testimonial-author strong {
  font-size: 14px;
  color: var(--white);
}
.testimonial-author span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 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.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-band-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.cta-band .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 220px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.15s;
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-item-value { font-size: 16px; color: var(--bone); }
.contact-item-value a:hover { color: var(--red); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-field select option { background: var(--steel); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* ---- ABOUT PAGE ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.value-card {
  background: var(--off-black);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-card-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--red);
  opacity: 0.4;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---- PODCAST FULL PAGE ---- */
.podcast-embed {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ep-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.15s, transform 0.15s;
}
.ep-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.ep-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
}
.ep-card h3 { font-size: 17px; color: var(--white); line-height: 1.4; }
.ep-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.ep-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  transition: gap 0.15s;
}
.ep-card a:hover { gap: 12px; }

/* ---- BOOK PAGE ---- */
.book-full {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.book-full-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.7);
  position: sticky;
  top: 88px;
}
.book-full-cover-placeholder {
  width: 300px;
  aspect-ratio: 2/3;
  background: var(--steel);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
  box-shadow: -20px 20px 60px rgba(0,0,0,0.7);
  position: sticky;
  top: 88px;
}
.book-full-cover-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}
.book-content-full { display: flex; flex-direction: column; gap: 32px; }
.book-content-full p { font-size: 17px; color: var(--muted); line-height: 1.8; }
.book-content-full h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 16px;
}
.book-chapters { list-style: none; display: flex; flex-direction: column; gap: 0; }
.book-chapters li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
}
.book-chapters li:last-child { border-bottom: none; }
.book-chapters li strong {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  min-width: 40px;
  letter-spacing: 0.1em;
}

/* ---- BLOG PLACEHOLDER ---- */
.blog-coming {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-coming-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.blog-lock {
  width: 64px;
  height: 64px;
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.blog-coming h2 {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.03em;
  color: var(--white);
}
.blog-coming p { font-size: 16px; color: var(--muted); max-width: 380px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-split,
  .podcast-inner,
  .book-inner,
  .contact-grid,
  .footer-inner,
  .lm-inner { grid-template-columns: 1fr; gap: 48px; }

  .book-cover { width: 100%; max-width: 280px; margin: 0 auto; }
  .book-cover-placeholder { width: 100%; max-width: 280px; margin: 0 auto; }

  .testimonials-grid,
  .values-grid { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: repeat(3, 1fr); }

  .book-full { grid-template-columns: 1fr; }
  .book-full-cover img { position: static; width: 100%; max-width: 260px; }
  .book-full-cover-placeholder { position: static; width: 100%; max-width: 260px; }

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

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

  .lm-visual { display: none; }
  .lm-inner { gap: 24px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .podcast-actions { flex-direction: column; }
  .lm-form { flex-direction: column; }
  .lm-form input[type="email"] { min-width: unset; width: 100%; }
  .hero-headline { line-height: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
