:root {
  --ink: #062d33;
  --teal-900: #063842;
  --teal-800: #0b5966;
  --teal-700: #0f7080;
  --teal-500: #5a929a;
  --teal-200: #cfe7ea;
  --teal-100: #e6f3f5;
  --sand: #f4f2ed;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 45, 51, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --font-display: "Sora", "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #f7fbfc;
  min-height: 100vh;
}

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

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

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 146, 154, 0.2), transparent 70%);
  z-index: 0;
  animation: float 18s ease-in-out infinite;
  opacity: 0.35;
  display: block;
}

.page::before {
  top: -140px;
  right: -80px;
}

.page::after {
  bottom: -200px;
  left: -120px;
  animation-delay: -6s;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 89, 102, 0.12);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--teal-100);
  color: var(--teal-900);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 60px 0 40px;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 112, 128, 0.25), rgba(11, 89, 102, 0.05));
  border: 1px solid rgba(11, 89, 102, 0.15);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 16px solid rgba(11, 89, 102, 0.35);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(12deg);
}

.hero-visual::before {
  width: 260px;
  height: 260px;
  top: -120px;
  right: -40px;
}

.hero-visual::after {
  width: 210px;
  height: 210px;
  bottom: -120px;
  left: -40px;
  border-color: rgba(90, 146, 154, 0.45);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.hero-visual-content {
  position: relative;
  padding: 28px;
  display: grid;
  gap: 14px;
  z-index: 1;
}

.logo-hero {
  width: min(320px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 35px rgba(6, 45, 51, 0.2));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--teal-900);
}

.stat span {
  font-size: 0.85rem;
  color: rgba(6, 45, 51, 0.7);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  border: 1px solid rgba(11, 89, 102, 0.1);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: none;
}

.hero-card::before {
  width: 210px;
  height: 210px;
  top: -120px;
  right: -70px;
}

.hero-card::after {
  width: 160px;
  height: 160px;
  top: -86px;
  right: -36px;
  border-color: rgba(90, 146, 154, 0.65);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.75rem;
  color: var(--teal-700);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 12px 0;
  color: var(--teal-900);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

p {
  line-height: 1.6;
  margin: 0 0 18px;
}

.tight {
  margin-bottom: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--teal-900);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(11, 89, 102, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(11, 89, 102, 0.18);
  filter: brightness(1.04);
}

.button.ghost {
  background: transparent;
  color: var(--teal-900);
  border: 1px solid var(--teal-200);
  box-shadow: none;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--teal-900);
  font-size: 0.85rem;
}

.pill.outline {
  background: transparent;
  border: 1px solid rgba(11, 89, 102, 0.25);
}

.section {
  padding: 48px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(11, 89, 102, 0.1);
}

.card h3 {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.banner {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #f2f7f8;
  border: 1px solid rgba(11, 89, 102, 0.12);
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: none;
}

.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 16px 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(11, 89, 102, 0.1);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.icon-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(11, 89, 102, 0.1);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(140deg, var(--teal-700), var(--teal-900));
  margin-bottom: 10px;
}

.form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--teal-200);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  padding: 24px 0 36px;
  font-size: 0.9rem;
  color: rgba(6, 45, 51, 0.7);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: reveal 0.7s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.24s;
}

.reveal-delay-3 {
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .page::before,
  .page::after,
  .reveal {
    animation: none;
  }

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .logo img {
    height: 52px;
  }
}
