:root {
  --bg: #f4f8fc;
  --paper: rgba(255, 255, 255, 0.84);
  --paper-strong: #ffffff;
  --ink: #103250;
  --muted: #5d7184;
  --line: rgba(16, 50, 80, 0.12);
  --accent: #f3c300;
  --accent-deep: #d39f00;
  --navy: #123a5d;
  --shadow: 0 24px 60px rgba(16, 50, 80, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 195, 0, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(0, 159, 227, 0.12), transparent 22%),
    linear-gradient(180deg, #f9fcff 0%, #eef5fb 100%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 252, 255, 0.8);
  border-bottom: 1px solid rgba(16, 50, 80, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  width: 246px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #123a5d;
  background: linear-gradient(135deg, #ffd84d, var(--accent));
  box-shadow: 0 16px 36px rgba(243, 195, 0, 0.28);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  border-color: rgba(16, 50, 80, 0.14);
  background: rgba(255, 255, 255, 0.48);
}

.hero {
  padding: 4.4rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.founder-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.7rem, 8vw, 6.6rem);
  max-width: 11ch;
}

.hero h1 span {
  display: inline-block;
  color: var(--accent-deep);
}

.lead,
.section-heading p,
.split-copy p,
.founder-copy p,
.contact-copy p,
.info-card p,
.timeline-item p,
.hero-card p,
.hero-card span,
.founder-stats span,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 1.4rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.trust-list li,
.pill-row span {
  border: 1px solid rgba(16, 50, 80, 0.1);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-card,
.info-card,
.role-card,
.founder-card,
.contact-card {
  border: 1px solid rgba(16, 50, 80, 0.08);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}

.hero-card-primary {
  color: #eff4f7;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, #0f4f84 0%, #123a5d 100%);
}

.hero-card-primary p,
.hero-card-primary .card-label {
  color: rgba(239, 244, 247, 0.8);
}

.hero-card-primary h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
}

.hero-card-metrics {
  display: grid;
  gap: 1rem;
  background: var(--paper-strong);
}

.hero-card-metrics strong,
.founder-stats strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.15rem;
}

.card-label,
.card-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-band {
  padding: 0.5rem 0 0;
}

.logo-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 50, 80, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.logo-band-inner p {
  margin: 0;
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 62rem;
  margin-bottom: 2rem;
}

.section-heading-slim {
  max-width: 54rem;
}

.section-heading h2,
.split-copy h2,
.founder-copy h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  max-width: 13ch;
}

.cards-grid,
.roles-grid,
.video-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.video-section {
  padding-top: 3.2rem;
}

.video-layout {
  display: grid;
  gap: 1.35rem;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.3rem;
  align-items: stretch;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 50, 80, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 252, 0.96));
  box-shadow: var(--shadow);
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.video-copy h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.08;
  font-family: "Cormorant Garamond", serif;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

.video-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 50, 80, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.video-card h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.15rem;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #0f1e2d;
  aspect-ratio: 16 / 9;
}

.video-frame-large {
  min-height: 100%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-card,
.role-card {
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.info-card h3,
.role-card h3,
.timeline-item h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(18, 58, 93, 0.03), rgba(18, 58, 93, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 245, 251, 0.94));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 50, 80, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #123a5d;
  background: linear-gradient(135deg, #ffe37c, #f3c300);
  font-weight: 800;
}

.role-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
}

.founder-card,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 1.4rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.founder-stats,
.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(243, 195, 0, 0.16), transparent 35%),
    linear-gradient(135deg, #ffffff, #edf5fb);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(16, 50, 80, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-nav,
  .nav-row > .button-ghost {
    display: none;
  }

  .hero-grid,
  .cards-grid,
  .roles-grid,
  .video-grid,
  .split-layout,
  .featured-video,
  .founder-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .video-section {
    padding-top: 2.4rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .nav-row {
    padding: 0.8rem 0;
  }

  .brand {
    width: 210px;
  }

  .hero-card,
  .info-card,
  .role-card,
  .founder-card,
  .contact-card {
    padding: 1.3rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 52px;
  }

  .footer-row {
    justify-content: flex-start;
  }
}
