:root {
  --bg: #f7f5ef;
  --ink: #111111;
  --muted: #66625c;
  --line: rgba(0, 0, 0, 0.12);
  --card: #ffffff;
  --dark: #080808;
  --dark-2: #141414;
  --accent: #00a8c8;
  --accent-2: #0b2535;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 245, 239, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 145px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 96px 48px;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 168, 200, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 65%);
}

.hero-inner {
  max-width: 980px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  margin: 30px 0 0;
  max-width: 720px;
  font-size: 22px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.hero-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.body-copy {
  max-width: 760px;
  font-size: 21px;
  color: var(--muted);
}

.body-copy p {
  margin: 0 0 22px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-card {
  background: var(--dark);
  color: #ffffff;
  padding: 54px 48px;
}

.metric {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.metric-label {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,0.64);
  font-size: 15px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading-row p {
  margin: 0;
  font-size: 20px;
  color: var(--muted);
}

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

.info-card,
.team-card,
.contact-card,
.timeline-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.info-card p,
.team-card p,
.timeline-item p,
.contact-card p {
  color: var(--muted);
  margin: 14px 0 0;
}

.dark-panel {
  background: #ffffff;
  color: #111111;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-panel .section-label {
  color: var(--accent);
}

.dark-panel h2 {
  color: #111111;
}

.dark-panel p {
  color: var(--muted);
  font-size: 20px;
}

.badge-box {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.badge-box img {
  max-width: 260px;
  max-height: 120px;
  object-fit: contain;
}

.badge-box span {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.timeline-date,
.role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
}

.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}

.deck-frame {
  height: 720px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.deck-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  padding: 110px 48px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 860px;
  margin: 0 auto;
}

.final-cta p {
  max-width: 680px;
  margin: 24px auto 34px;
  color: var(--muted);
  font-size: 20px;
}

.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer img {
  width: 120px;
}

.footer p {
  margin: 0;
}

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

.contact-hero {
  padding: 120px 48px 70px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.contact-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 6vw, 92px);
}

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

.contact-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 800;
}

.contact-note {
  padding-top: 60px;
}

@media (max-width: 900px) {
  .nav {
    padding: 0 22px;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 128px;
  }

  .hero,
  .section,
  .final-cta,
  .contact-hero,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split,
  .section-heading-row,
  .dark-panel,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .metrics,
  .grid-three,
  .timeline {
    grid-template-columns: 1fr;
  }

  .deck-frame {
    height: 520px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
