:root {
  --bg-dark: #0e1114;
  --bg-hero: #1f232a;
  --bg-taupe: #b6aa9f;
  --bg-cream: #f7f3ec;
  --ink: #f7f8f8;
  --ink-dark: #1b1f24;
  --muted: #cfd3d8;
  --muted-dark: #5d6268;
  --accent: #f05a28;
  --panel: rgba(0, 0, 0, 0.4);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

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

body {
  margin: 0;
  font-family: "Helvetica Neue", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(14, 17, 20, 0.65);
  backdrop-filter: blur(12px);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: 24px;
  font-size: 14px;
}

.nav a {
  padding: 6px 4px;
  color: #dfe3e8;
}

.nav a:hover {
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 160ms ease, background 120ms ease, color 120ms ease;
}

.btn.solid {
  background: #ffffff;
  color: #121416;
  box-shadow: var(--shadow);
}

.btn.solid:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: #ffffff;
  color: #121416;
  border-color: #ffffff;
}

.btn.ghost.dark {
  background: rgba(255, 255, 255, 0.88);
  color: #0f1114;
}

.btn.ghost:hover {
  transform: translateY(-1px);
}

.btn.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 18, 23, 0.25), rgba(15, 18, 23, 0.7)),
    linear-gradient(120deg, rgba(40, 70, 120, 0.35), rgba(10, 10, 10, 0.6)),
    url("images/hero-Person.png") center center / cover no-repeat,
    #0f1217;
  background-blend-mode: screen, multiply, normal, normal;
  filter: saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0) 0%, rgba(14, 17, 20, 0.55) 65%, rgba(14, 17, 20, 0.8) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.eyebrow.dark {
  border-color: rgba(27, 31, 36, 0.3);
  color: #5c6066;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero .lede {
  margin: 0 0 24px;
  max-width: 620px;
  color: #dce0e6;
  font-size: 18px;
  line-height: 1.5;
}

.social-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #d0d5dc;
  margin: 0 0 16px;
}

.social-inline a {
  font-weight: 600;
  color: #ffffff;
}

.cta-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bullets {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.statement {
  background: var(--bg-taupe);
  padding: 120px 32px;
  color: #ffffff;
}

.statement-inner {
  max-width: 960px;
  margin: 0 auto;
}

.statement h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.15;
  font-weight: 700;
}

.panel {
  padding: 120px 32px;
  background: #f0ece5;
  color: var(--ink-dark);
}

.panel.light {
  background: var(--bg-cream);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.panel-grid.reverse {
  direction: rtl;
}

.panel-grid.reverse > * {
  direction: ltr;
}

.panel-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.panel-copy p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-dark);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--ink-dark);
  padding-bottom: 4px;
}

.link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.panel-visual {
  position: relative;
  min-height: 320px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 175, 95, 0.2), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(70, 110, 180, 0.18), transparent 50%),
    #f9f6f0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
}

.panel.light .panel-visual {
  background: radial-gradient(circle at 50% 45%, rgba(80, 100, 150, 0.15), transparent 50%),
    #fefbf5;
}

.panel-visual.visual-a {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url("images/panel-a.jpg") center center / cover no-repeat;
}

.panel-visual.visual-b {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
    url("images/panel-b.gif") center center / cover no-repeat;
}

.orbital,
.ring {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.orbital::after {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 166, 90, 0.3), rgba(40, 60, 110, 0.35));
  filter: blur(12px);
}

.ring::after {
  content: "";
  position: absolute;
  inset: 25%;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.section-head {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h3 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 38px);
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.timeline-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.timeline-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
}

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

.timeline-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1b1f24;
  box-shadow: 0 0 0 6px rgba(27, 31, 36, 0.08);
}

.pill-link {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: #1b1f24;
  font-weight: 600;
  font-size: 13px;
}

.updates {
  background: #f2eee7;
}

.updates-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.update-card {
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.update-card h4 {
  margin: 8px 0 10px;
  font-size: 18px;
}

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

.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-copy h3 {
  margin: 6px 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.25;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #1b1f24;
  font-weight: 600;
  font-size: 13px;
}

.bio-list {
  display: grid;
  gap: 14px;
}

.bio-item {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.bio-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.bio-item p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.heritage {
  position: relative;
  padding: 0;
  background: #0f1114;
  color: #f7f8f8;
}

.heritage-media {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
}

.heritage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.15) 0%, rgba(14, 17, 20, 0.7) 100%);
}

.heritage-content {
  position: relative;
  max-width: 960px;
  margin: -120px auto 0;
  padding: 32px 24px 60px;
  background: rgba(16, 19, 22, 0.9);
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow);
}

.heritage h3 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
}

.heritage .lede {
  color: #d5dae1;
  line-height: 1.6;
}

.footer {
  background: #0d0f12;
  color: #e5e8ec;
  padding: 60px 32px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer h4 {
  margin: 8px 0 6px;
  font-size: 22px;
}

.footer p {
  margin: 0;
  color: #b7bcc4;
}

.footer .muted {
  color: #8d93a0;
  margin-top: 6px;
}

.footer-inner.secondary {
  margin-top: 30px;
  align-items: flex-start;
}

.footer-inner.secondary p {
  margin: 4px 0;
}

.footer-inner.secondary .link {
  border-bottom: none;
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .hero {
    padding: 120px 20px 80px;
  }
  .statement,
  .panel {
    padding: 80px 20px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
  .cta-row {
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .timeline-item summary {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "dot text"
      "dot pill";
  }
  .pill-link {
    justify-self: start;
  }
}
