/* ============================================================
   CRITELLIGENCE — styles.css
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
}

ul, ol {
  list-style: none;
}

/* 2. Design Tokens
   ============================================================ */
:root {
  /* Colors */
  --bg:        #0B1F3B;
  --surface:   #102A52;
  --border:    #1B3B6D;
  --text:      #F3F6FF;
  --muted:     #B8C4D9;
  --accent:    #F4C430;
  --hover:     #FFD45A;

  /* Typography */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --size-h1-d: 52px;
  --size-h1-m: 38px;
  --size-h2:   32px;
  --size-h3:   22px;
  --size-body: 17px;
  --size-small: 13px;

  /* Layout */
  --max-width: 1120px;
  --pad-section-d: 88px;
  --pad-section-m: 56px;
  --pad-container: 24px;
  --card-radius:   18px;
  --btn-radius:    14px;
  --btn-height:    48px;
  --card-pad:      24px;

  /* Diagonal stripe */
  --stripe-angle:   135deg;
  --stripe-size:    12px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:      200ms;
}

/* 3. Base Typography
   ============================================================ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: var(--size-h1-d); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }

p { line-height: 1.7; }

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.muted { color: var(--muted); }

.accent { color: var(--accent); }

.accent-link {
  color: var(--accent);
  font-weight: 500;
}

.accent-link:hover {
  color: var(--hover);
}

.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;
}

.hidden {
  display: none !important;
}

/* 4. Layout
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-container);
}

.section {
  padding-block: var(--pad-section-d);
}

.section--surface {
  background: var(--surface);
}

.section__headline {
  margin-bottom: 16px;
}

.section__subhead {
  font-size: var(--size-body);
  margin-bottom: 48px;
  max-width: 600px;
}

/* 5. Diagonal Stripe (Hero overlay)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__stripe-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      var(--stripe-angle),
      transparent,
      transparent calc(var(--stripe-size) - 1px),
      rgba(244, 196, 48, 0.20) calc(var(--stripe-size) - 1px),
      rgba(244, 196, 48, 0.20) var(--stripe-size)
    ),
    repeating-linear-gradient(
      var(--stripe-angle),
      transparent,
      transparent calc(var(--stripe-size) - 1px),
      rgba(243, 246, 255, 0.08) calc(var(--stripe-size) - 1px),
      rgba(243, 246, 255, 0.08) var(--stripe-size)
    );
  pointer-events: none;
  z-index: 0;
}

/* Diagonal divider band between hero and problem
   ============================================================ */
.diagonal-band {
  position: relative;
  height: 80px;
  background: var(--surface);
  transform: skewY(-2deg);
  transform-origin: top left;
  margin-top: -40px;
  margin-bottom: -40px;
  z-index: 1;
  background-image: repeating-linear-gradient(
    var(--stripe-angle),
    transparent,
    transparent calc(var(--stripe-size) - 1px),
    rgba(244, 196, 48, 0.12) calc(var(--stripe-size) - 1px),
    rgba(244, 196, 48, 0.12) var(--stripe-size)
  );
}

/* 6. Navigation
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 59, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease-out);
}

.site-nav.is-scrolled {
  background: rgba(11, 31, 59, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo:hover {
  text-decoration: none;
  color: var(--text);
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: color var(--dur);
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile-only Team link (hidden on desktop, the full nav covers it) */
.nav-team-mobile {
  display: none;
  color: var(--muted);
  font-size: 14px;
  font-family: var(--font-body);
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--dur);
}

.nav-team-mobile:hover,
.nav-team-mobile[aria-current="page"] {
  color: var(--accent);
  text-decoration: none;
}

/* 7. Hero
   ============================================================ */
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: var(--pad-section-d);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__pill {
  align-self: flex-start;
}

.hero__copy h1 {
  font-size: var(--size-h1-d);
  max-width: 14ch;
}

.hero__subhead {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--size-body);
  color: var(--muted);
}

.hero__bullets li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230B1F3B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__trust {
  font-size: var(--size-small);
  color: var(--muted);
}

/* PDF Cover Mock
   ============================================================ */
.hero__card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-mock-outer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px;
  max-width: 380px;
  width: 100%;
}

.pdf-mock {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 24px;
  color: #1a1a1a;
  font-family: var(--font-body);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.pdf-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 10px 10px 0 0;
}

.pdf-mock::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #e8e8e8 transparent;
}

.pdf-mock__header {
  background: var(--bg);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 18px;
}

.pdf-mock__title-block {
  margin-bottom: 20px;
}

.pdf-mock__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #0B1F3B;
  line-height: 1.3;
  margin-bottom: 6px;
}

.pdf-mock__subtitle {
  font-size: 11px;
  color: #666;
  line-height: 1.5;
}

.pdf-mock__divider {
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

.pdf-mock__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdf-mock__checklist li {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pdf-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #e8f5e9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #2e7d32;
  font-weight: 700;
}

.pdf-mock__footer {
  margin-top: 20px;
  font-size: 10px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 8. Problem Section (3 cards)
   ============================================================ */
.problem-section {
  padding-block: var(--pad-section-d);
  position: relative;
  z-index: 2;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

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

.card {
  background: var(--surface);
  border: 1px solid rgba(27, 59, 109, 0.5);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
}

.card--problem {
  border-top: 2px solid var(--border);
  transition:
    border-top-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.card--problem:hover {
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.card--problem h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card--problem p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* 9. System / Schedule (4 tiles)
   ============================================================ */
.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tile__day {
  align-self: flex-start;
}

.tile__time {
  font-size: 26px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.tile__name {
  font-size: 17px;
  margin-top: 4px;
}

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

.schedule-note {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

/* 10. Drills Grid (8 items)
   ============================================================ */
.drills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.drill-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid rgba(27, 59, 109, 0.5);
  border-radius: 14px;
  padding: 20px;
  transition:
    border-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.drill-item:hover {
  border-color: rgba(244, 196, 48, 0.35);
  transform: translateY(-2px);
}

.drill-item__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.drill-item__content strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.drill-item__content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* 11. Gate Form
   ============================================================ */
.gate__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gate__copy h2 {
  margin-bottom: 12px;
}

.gate__copy p {
  color: var(--muted);
  font-size: 15px;
}

.gate__consent {
  font-size: var(--size-small);
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.gate__inline { display: none; }  /* hidden on desktop, shown on mobile */
.gate__trigger { display: inline-flex; } /* shown on desktop, hidden on mobile */

.gate__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.gate__form input[type="email"] {
  height: var(--btn-height);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--size-body);
  padding: 0 16px;
  width: 100%;
  transition: border-color var(--dur) var(--ease-out);
}

.gate__form input[type="email"]::placeholder {
  color: rgba(184, 196, 217, 0.5);
}

.gate__form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.15);
}

.gate__form input[type="email"].is-error {
  border-color: #e55;
}

.gate__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--size-small);
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.gate__checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.gate__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: rgba(244, 196, 48, 0.08);
  border: 1px solid rgba(244, 196, 48, 0.3);
  border-radius: var(--card-radius);
}

.success-icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 196, 48, 0.15);
  border: 1px solid rgba(244, 196, 48, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.gate__success h3 {
  font-size: 20px;
}

.gate__success p {
  font-size: 15px;
  color: var(--muted);
}

/* 12. Modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 59, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-container);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(16px);
  transition: transform var(--dur) var(--ease-out);
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--dur), background var(--dur);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.modal h2 {
  margin-bottom: 8px;
  padding-right: 32px;
}

.modal > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* 13. FAQ
   ============================================================ */
.faq__container {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--size-body);
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-out), color var(--dur);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}

.final-cta {
  text-align: center;
  padding-top: 16px;
}

.final-cta h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

/* 14. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding: 0 24px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.btn--primary:hover {
  background: var(--hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 196, 48, 0.30);
  text-decoration: none;
  color: var(--bg);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(27, 59, 109, 0.7);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* 15. Pills / Badges
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: var(--size-small);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  background: rgba(244, 196, 48, 0.12);
  color: var(--accent);
  border: 1px solid rgba(244, 196, 48, 0.25);
}

.pill--muted {
  background: rgba(27, 59, 109, 0.5);
  color: var(--muted);
  border-color: var(--border);
}

/* 16. Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 32px;
}

.site-footer p {
  font-size: var(--size-small);
  color: var(--muted);
  text-align: center;
}

/* 17. Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .drills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: var(--size-h1-m); }

  .section { padding-block: var(--pad-section-m); }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: var(--pad-section-m);
  }

  .hero__copy h1 {
    font-size: var(--size-h1-m);
  }

  .hero__card-wrap {
    order: -1;
  }

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

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

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

  /* Gate: show inline form, hide modal trigger */
  .gate__inline { display: block; }
  .gate__trigger { display: none; }

  .gate__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-team-mobile {
    display: inline;
  }

  .section__subhead {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .modal {
    padding: 28px 20px;
  }
}

/* ============================================================
   NEW SECTIONS — Content Deepening
   ============================================================ */

/* Social Proof Strip
   ============================================================ */
.proof-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-block: 48px;
}

.proof-strip__label {
  font-size: var(--size-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.proof-strip__note {
  font-size: 15px;
  font-style: italic;
  max-width: 52ch;
}

/* Framework Steps (FISD)
   ============================================================ */
.framework-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.step-card__number {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
}

.step-card__label {
  font-size: 20px;
  margin-top: -4px;
}

.step-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* PDF Contents Section
   ============================================================ */
.contents-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contents-section__copy h2 {
  margin-bottom: 16px;
}

.contents-section__copy > .muted {
  margin-bottom: 28px;
}

.contents-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.contents-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.contents-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F4C430' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* PDF stack visual */
.contents-visual-stack {
  position: relative;
  width: 240px;
  height: 320px;
  margin-inline: auto;
}

.contents-visual-card {
  position: absolute;
  border-radius: 12px;
  width: 200px;
}

.contents-visual-card--back {
  background: rgba(27, 59, 109, 0.4);
  border: 1px solid var(--border);
  top: 0;
  left: 30px;
  height: 290px;
  transform: rotate(4deg);
}

.contents-visual-card--mid {
  background: rgba(27, 59, 109, 0.6);
  border: 1px solid var(--border);
  top: 8px;
  left: 16px;
  height: 290px;
  transform: rotate(2deg);
}

.contents-visual-card--front {
  background: var(--surface);
  border: 1px solid var(--border);
  top: 16px;
  left: 0;
  height: 290px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  border-top: 3px solid var(--accent);
}

.contents-visual-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contents-visual-card__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-top: 8px;
}

.contents-visual-card__pages {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* For / Not For
   ============================================================ */
.for-notfor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.for-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  border-left-width: 3px;
}

.for-col--yes {
  border-left-color: rgba(72, 199, 142, 0.6);
}

.for-col--no {
  border-left-color: var(--border);
}

.for-col__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.for-col__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.for-col--yes .for-col__icon {
  background: rgba(72, 199, 142, 0.15);
  color: #48C78E;
  border: 1px solid rgba(72, 199, 142, 0.3);
}

.for-col--no .for-col__icon {
  background: rgba(184, 196, 217, 0.1);
  color: var(--muted);
  border: 1px solid var(--border);
}

.for-col__header h3 {
  font-size: 18px;
}

.for-col__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.for-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.for-col--yes .for-col__list li::before {
  content: '→';
  color: rgba(72, 199, 142, 0.8);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.for-col--no .for-col__list li::before {
  content: '→';
  color: var(--border);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Book Section
   ============================================================ */
.book-section {
  position: relative;
  overflow: hidden;
}

.book-section__stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    var(--stripe-angle),
    transparent,
    transparent calc(var(--stripe-size) - 1px),
    rgba(244, 196, 48, 0.05) calc(var(--stripe-size) - 1px),
    rgba(244, 196, 48, 0.05) var(--stripe-size)
  );
  pointer-events: none;
}

.book-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-section__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-section__micro {
  font-size: var(--size-small);
  margin-top: -4px;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-hero {
  padding-block: var(--pad-section-d);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero__stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    var(--stripe-angle),
    transparent,
    transparent calc(var(--stripe-size) - 1px),
    rgba(244, 196, 48, 0.08) calc(var(--stripe-size) - 1px),
    rgba(244, 196, 48, 0.08) var(--stripe-size)
  );
  pointer-events: none;
}

.team-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.team-hero__inner h1 {
  font-size: 42px;
}

.team-hero__subhead {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
}

.team-hero__vision {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 68ch;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Team Grid
   ============================================================ */
.team-section {
  padding-block: var(--pad-section-d);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  min-width: 0; /* prevent CSS grid blowout */
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.team-card__photo-wrap {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  background: var(--bg);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.team-card__role {
  margin-bottom: 20px;
}

.team-card__bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  text-align: left;
}

.team-card__linkedin {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--size-small);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur);
}

.team-card__linkedin:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Team Mission Statement
   ============================================================ */
.team-mission {
  padding-block: 72px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.team-mission__inner {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-mission__quote {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--accent);
  line-height: 1.3;
}

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

/* Anonymous SVG Avatar
   ============================================================ */
.anon-avatar {
  display: block;
  width: 148px;
  height: 148px;
  max-width: 100%;
}

/* Responsive additions
   ============================================================ */
@media (max-width: 1024px) {
  .framework-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contents-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contents-section__visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .for-notfor-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .team-hero__inner h1 {
    font-size: 32px;
  }
  .team-mission__quote {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .framework-steps {
    grid-template-columns: 1fr;
  }
  .proof-strip__inner {
    padding-block: 32px;
  }
}
