:root {
  --ink: #07111f;
  --ink-2: #0d1b2e;
  --ink-3: #13233a;
  --gold: #d7aa3f;
  --gold-light: #f3d37a;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #eef3f8;
  --white: #ffffff;
  --slate: #475569;
  --line-dark: rgba(255,255,255,0.12);
  --line-light: rgba(15,23,42,0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 26px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo-link,
.logo {
  display: block;
}

.logo {
  width: 220px;
  max-width: 42vw;
  height: auto;
}

.nav-cta,
.btn,
.linkedin-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta:hover,
.btn:hover,
.linkedin-cta:hover {
  transform: translateY(-2px);
}

.nav-cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(215,170,63,0.18);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(7,17,31,0.98) 0%,
    rgba(7,17,31,0.89) 45%,
    rgba(7,17,31,0.52) 100%
  );
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  z-index: 2;
  background: linear-gradient(0deg, var(--ink), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 13px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.section-kicker {
  margin-bottom: 12px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -2.8px;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.hero p {
  font-size: 21px;
  color: var(--muted);
  max-width: 735px;
  margin: 0 0 34px;
}

.highlight {
  color: var(--gold-light);
  font-weight: 900;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 42px;
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(215,170,63,0.18);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
}

.proof-tile {
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.proof-tile strong {
  display: block;
  color: var(--gold-light);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-tile span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 830px;
  margin-bottom: 42px;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.network-copy p,
.founder-section p,
.contingency-section p {
  color: var(--muted);
  font-size: 19px;
  margin: 0;
}

.light-section {
  background: var(--soft);
  color: #0b1220;
}

.light-section .section-kicker {
  color: #9b7218;
}

.light-section .section-head p,
.light-section .card p,
.light-section li,
.light-section .founder-section p,
.founder-section p {
  color: var(--slate);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.align-center {
  align-items: center;
}

.card {
  border-radius: 24px;
  padding: 30px;
}

.light-section .card {
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}

.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-dark);
}

.dark-card p,
.card p {
  color: var(--muted);
  margin: 0;
}

.value-card {
  position: relative;
  overflow: hidden;
}

.card-number {
  color: #b58a2a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.role-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 18px;
  text-align: center;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: 0 12px 35px rgba(15,23,42,0.05);
  color: var(--ink);
  font-weight: 850;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 30px 26px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.network-section {
  background: linear-gradient(180deg, var(--ink), #091524);
}

.panel {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: 38px;
}

.panel.gold {
  background: linear-gradient(145deg, #16243b, #09111f);
  border: 1px solid rgba(215,170,63,0.38);
  box-shadow: 0 24px 65px rgba(0,0,0,0.18);
}

.panel p {
  color: var(--muted);
  margin: 0;
}

.big-number {
  font-size: 82px;
  line-height: 0.95;
  font-weight: 950;
  color: var(--gold-light);
  letter-spacing: -4px;
  margin-bottom: 18px;
}

.network-copy h2 {
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 950;
}

.founder-section {
  color: var(--ink);
}

.founder-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1000px;
}

.founder-badge {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0e1d31, #07111f);
  border: 1px solid rgba(215,170,63,0.45);
  color: var(--gold-light);
  font-size: 70px;
  font-weight: 950;
  letter-spacing: -4px;
  box-shadow: 0 24px 55px rgba(15,23,42,0.18);
}

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

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: #8b6514;
  font-weight: 900;
}

.contingency-section {
  background: #091524;
}

.risk-card {
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.risk-row {
  display: grid;
  gap: 5px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-dark);
}

.risk-row:last-child {
  border-bottom: 0;
}

.risk-row strong {
  color: var(--gold-light);
  font-size: 18px;
}

.risk-row span {
  color: var(--muted);
}

.booking-grid {
  align-items: start;
}

.calendly-box {
  background: var(--white);
  color: var(--ink);
  border-radius: 26px;
  padding: 12px;
  min-height: 620px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

footer {
  background: #030712;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.footer-brand {
  color: var(--text);
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 8px;
}

.contact p {
  margin: 6px 0;
}

.contact-link,
.phone-link {
  color: var(--gold-light);
  font-weight: 800;
}

.phone-link {
  display: none;
}

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

.linkedin-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  background: #0a66c2;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
}

.linkedin-cta:hover {
  background: #085aab;
}

@media (hover: none) and (pointer: coarse) {
  .phone-text {
    display: none;
  }

  .phone-link {
    display: inline;
  }
}

@media (max-width: 1020px) {
  .grid-4,
  .process-grid,
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  header {
    padding: 18px 0;
  }

  .nav {
    gap: 14px;
  }

  .logo {
    width: 112px;
    max-width: 34vw;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 118px 0 72px;
  }

  .hero-image img {
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7,17,31,0.94) 0%,
      rgba(7,17,31,0.84) 44%,
      rgba(7,17,31,0.79) 100%
    );
  }

  h1 {
    font-size: clamp(38px, 10.5vw, 54px);
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 18px;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    gap: 32px;
  }

  .founder-badge {
    width: 150px;
    height: 150px;
    font-size: 52px;
  }

  section {
    padding: 68px 0;
  }

  .calendly-box {
    padding: 6px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero-proof,
  .grid-4,
  .process-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .proof-tile {
    padding: 17px;
  }

  .proof-tile strong {
    font-size: 29px;
  }

  h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .section-head p,
  .network-copy p,
  .founder-section p,
  .contingency-section p {
    font-size: 17px;
  }

  .panel,
  .card,
  .process-step {
    padding: 26px 22px;
  }

  .big-number {
    font-size: 68px;
  }

  .role-pill {
    min-height: 70px;
  }
}


/* Candidate screening */
.screening-section {
  background: linear-gradient(180deg, #091524, var(--ink));
}

.screening-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.screening-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line-dark);
}

.screening-card p {
  margin: 0;
  color: var(--muted);
}

.screening-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(215,170,63,0.32);
  border-radius: 18px;
  background: rgba(215,170,63,0.07);
}

.screening-note strong {
  color: var(--gold-light);
}

.screening-note span {
  color: var(--muted);
}

/* Downloadable resource */
.resource-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.resource-section p {
  color: var(--slate);
  font-size: 19px;
  max-width: 690px;
}

.resource-button {
  margin-top: 24px;
}

.resource-card {
  padding: 34px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: 0 22px 60px rgba(15,23,42,0.1);
}

.resource-card h3 {
  color: var(--ink);
  font-size: 28px;
}

.resource-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(215,170,63,0.16);
  color: #805d10;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.resource-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--slate);
}

.resource-card li {
  margin-bottom: 9px;
}

/* FAQ */
.faq-section {
  background: #091524;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.faq-intro {
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-size: 25px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

/* Mobile sticky call-to-action */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1020px) {
  .screening-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .resource-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

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

  .screening-note {
    grid-template-columns: 1fr;
  }

  .resource-card {
    padding: 27px 22px;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 12px;
    z-index: 100;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    text-align: center;
    font-weight: 950;
    box-shadow: 0 12px 35px rgba(0,0,0,0.38);
  }
}
