/* Landing-page specific styles — complements /style.css */
body.landing { background: var(--bg); color: var(--text); }

.logo-banner a { display: block; line-height: 0; }

/* Sticky top nav */
.topnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topnav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.navlink {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.navlink:hover { color: var(--text); }
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .topnav-inner { padding: 10px 16px; gap: 18px; }
  .navlink { display: none; }
}

/* Hero */
.hero {
  padding: 96px 28px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(106, 167, 255, 0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(167, 139, 250, 0.07), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 7.6vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--text);
}
.hero .lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.cta-row {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-lg-landing {
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn-outline-landing {
  padding: 15px 26px;
  font-size: 15px;
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline-landing:hover:not(:disabled) { border-color: var(--text); }
.trust-line {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
}

/* Section scaffolding */
.section {
  padding: 88px 28px;
  border-top: 1px solid var(--border);
}
.section-alt { background: var(--surface); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.kicker-light { color: var(--accent-hover); }
.section h2,
.apply-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.3vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text);
  margin: 0 0 18px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.section-lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

/* Three-column tiles */
.threecol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) { .threecol { grid-template-columns: 1fr; } }
.tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}
.tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.tile-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.tile h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--text);
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: normal;
}
.tile p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14.5px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: var(--surface-2);
  border-radius: 0 8px 8px 0;
  transition: border-left-color 0.2s;
}
.steps li:hover { border-left-color: var(--accent-hover); }
.step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  padding-top: 2px;
  font-weight: 500;
}
.step-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--text);
  margin: 0 0 6px;
  text-transform: none;
  letter-spacing: normal;
}
.step-body p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14.5px;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 780px) { .team-grid { grid-template-columns: 1fr; } }
.teamcard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--surface);
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 22px;
  row-gap: 6px;
  align-items: start;
  transition: border-color 0.2s;
}
.teamcard:hover { border-color: var(--accent); }
.avatar {
  grid-row: 1 / span 3;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #0b0e14;
  flex-shrink: 0;
}
.avatar-ds { background: linear-gradient(135deg, #6aa7ff, #8bbbff); }
.avatar-ml { background: linear-gradient(135deg, #a78bfa, #c4b5fd); }
.avatar-no { background: linear-gradient(135deg, #34d399, #6ee7b7); }
.avatar-lm { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.teamcard h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}
.teamcard .role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.teamcard .credentials {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 4px 0 0;
}

/* Apply section */
.apply-section {
  padding: 110px 28px 100px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0%, rgba(106, 167, 255, 0.08), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.apply-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.apply-section h2 {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.05;
  margin: 0 0 22px;
}
.apply-lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 620px;
}
.btn-xl {
  display: inline-block;
  padding: 18px 42px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
}
.apply-meta {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 52px 28px 36px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}
.footer-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.footer-legal {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
