@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-alt: #1a1a1a;
  --accent: #e63329;
  --text: #f0f0f0;
  --muted: #b0b0b0;
  --border: #2a2a2a;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================================
   INDEX — NAV
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-name:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ============================================================
   INDEX — MAIN LAYOUT
   ============================================================ */

main {
  padding-top: 64px;
}

/* ============================================================
   INDEX — HERO
   ============================================================ */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-image-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 44px;
  flex-shrink: 0;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.8;
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 400;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.hero-tagline strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   INDEX — BIO
   ============================================================ */

.bio {
  padding: 0 48px 80px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.bio p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.bio p + p {
  margin-top: 16px;
}

/* ============================================================
   SHARED — SECTION LABEL + DIVIDER
   ============================================================ */

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.divider {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 72px;
  opacity: 0.7;
}

/* ============================================================
   INDEX — WORK CARDS
   ============================================================ */

.work {
  padding: 0 48px 96px;
  max-width: 1000px;
  margin: 0 auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.work-card {
  display: block;
  padding: 28px 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: border-left-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  position: relative;
}

.work-card:hover {
  border-left-color: var(--accent);
  background: var(--surface-alt);
  transform: translateX(3px);
}

.work-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.work-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.work-card-arrow {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.work-card:hover .work-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   INDEX — FOOTER
   ============================================================ */

footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

/* ============================================================
   INTERVIEW — HEADER BAR
   ============================================================ */

.interview-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.interview-header-left {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}

.interview-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 16px;
  flex-shrink: 0;
}

.interview-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.interview-meta-item {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.interview-meta-item strong {
  color: var(--text);
  font-weight: 600;
}

.interview-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-back {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.btn-back:hover { color: var(--text); }

.btn-granola {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.btn-granola:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

/* ============================================================
   INTERVIEW — CONTENT WRAPPER
   ============================================================ */

.interview-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 48px 96px;
}

/* ============================================================
   INTERVIEW — KPI STRIP
   ============================================================ */

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}

.kpi-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.kpi-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.kpi-value.kpi-text {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.kpi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   INTERVIEW — SECTION HEADERS
   ============================================================ */

.interview-section {
  margin-bottom: 64px;
}

.interview-section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.interview-section-title .title-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 51, 41, 0.1);
  padding: 3px 8px;
}

/* ============================================================
   INTERVIEW — CONVERSATION CARDS
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

.convo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding: 24px 26px;
  transition: border-left-color 0.15s, background 0.15s;
}

.convo-card:hover {
  border-left-color: var(--accent);
  background: var(--surface-alt);
}

.convo-icon {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.convo-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.convo-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   INTERVIEW — 90-DAY PHASES
   ============================================================ */

.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.phase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.phase-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.phase-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.phase-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   INTERVIEW — COMPACT WORK CARDS
   ============================================================ */

.compact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 24px;
  transition: border-color 0.15s;
}

.compact-card:hover {
  border-color: rgba(230, 51, 41, 0.4);
}

.compact-card-info {}

.compact-card-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.compact-card-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.compact-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.compact-card-link:hover { opacity: 0.7; }

/* ============================================================
   INTERVIEW — FOOTER
   ============================================================ */

.interview-footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.interview-footer-cta {
  font-size: 15px;
  color: var(--muted);
}

.interview-footer-cta a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.15s;
}
.interview-footer-cta a:hover { opacity: 0.75; }

.interview-footer-brand {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.interview-footer-brand a:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE — TABLET + MOBILE
   ============================================================ */

@media (max-width: 900px) {
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .phases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 56px; }
  .nav-links a:nth-child(1) { display: none; }

  main { padding-top: 56px; }

  .hero { padding: 64px 24px 56px; }
  .hero-image-wrap { width: 160px; height: 160px; margin-bottom: 32px; }

  .bio { padding: 0 24px 56px; }

  .work { padding: 0 24px 72px; }
  .work-grid { grid-template-columns: 1fr; }

  .divider { margin-bottom: 52px; }

  footer { padding: 24px; }

  /* Interview */
  .interview-header {
    padding: 0 20px;
    height: auto;
    min-height: 54px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .interview-header-left { flex-wrap: wrap; }

  .header-sep { display: none; }

  .interview-meta { flex-wrap: wrap; gap: 6px; }

  .interview-content { padding: 32px 20px 64px; }

  .kpi-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 48px; }
  .kpi-value { font-size: 30px; }
  .kpi-value.kpi-text { font-size: 16px; }

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

  .compact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .interview-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -0.03em; }
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .interview-header-left { gap: 6px; }
}
