:root {
  --navy: #0B2340;
  --navy-deep: #071A30;
  --teal: #2FA79C;
  --teal-light: #7FD1C7;
  --paper: #F6F8F8;
  --ink-2: #3D4F63;
  --line: #DCE3E6;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --gutter: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin: 0; }
h1, h2 { letter-spacing: -.035em; line-height: 1.05; font-weight: 700; }

.wrap { max-width: calc(1200px + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }

.label {
  font: 500 12px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}

.btn {
  display: inline-flex; align-items: center;
  height: 48px; padding: 0 24px;
  font: 600 15px/1 var(--font);
  border-radius: 4px;
  transition: background .2s;
}
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: #12325A; }
.btn--teal { background: var(--teal); color: var(--navy-deep); }
.btn--teal:hover { background: var(--teal-light); }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__brand img { height: 34px; width: auto; }

/* Hero */
.hero { padding-top: clamp(64px, 12vw, 140px); }
.hero h1 { font-size: clamp(44px, 8vw, 104px); margin: 24px 0; max-width: 11ch; }
.hero h1 span { color: var(--teal); }
.hero__sub { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); margin-bottom: 36px; }

.wave { width: 100%; height: clamp(160px, 22vw, 280px); margin: clamp(32px, 6vw, 64px) 0; }

/* Pillars */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  padding-bottom: clamp(80px, 10vw, 128px);
}
.pillars > div { border-top: 1px solid var(--line); padding-top: 24px; }
.pillars h2 { font-size: 26px; margin: 20px 0 10px; }
.pillars p { color: var(--ink-2); line-height: 1.6; }

/* Contact */
.contact { background: var(--navy-deep); color: #fff; padding: clamp(64px, 9vw, 112px) 0; }
.contact__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.contact h2 { font-size: clamp(36px, 5vw, 60px); }

/* Footer */
.footer {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 28px; padding-bottom: 28px;
  font-size: 14px; color: var(--ink-2);
}
.footer .label { color: var(--ink-2); font-size: 11px; }

@media (max-width: 720px) {
  .nav { height: 64px; }
  .nav__brand img { height: 28px; }
  .pillars { grid-template-columns: 1fr; gap: 32px; }
}
