@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap');

:root {
  --teal-900: #0b2b34;
  --teal-800: #123d4b;
  --teal-700: #155062;
  --teal-600: #0f6b74;
  --teal-500: #0d8c8f;
  --teal-400: #2bb3b3;
  --mint-300: #bfe7e2;
  --mint-200: #dff3f1;
  --mint-100: #eef9f8;
  --slate-900: #172830;
  --slate-800: #23343d;
  --slate-700: #354853;
  --slate-600: #5c6f7a;
  --slate-500: #6f818c;
  --slate-200: #d9e4ea;
  --slate-100: #edf2f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(9, 28, 34, 0.12);
  --shadow-card: 0 12px 32px rgba(10, 34, 40, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--slate-700);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--slate-900);
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

section {
  padding: 5rem 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-500);
}

.lead {
  font-size: 1.1rem;
  color: var(--slate-700);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--teal-600);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--slate-100);
  backdrop-filter: blur(12px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--slate-900);
}

.logo img {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-weight: 600;
  color: var(--slate-700);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--mint-200);
  color: var(--teal-700);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.hero {
  background: radial-gradient(circle at top left, #eaf7f5 0%, #f9fcfc 50%, #ffffff 100%);
  padding: 6rem 0 5rem;
}

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

.hero-card {
  background: linear-gradient(135deg, rgba(14, 107, 116, 0.22), rgba(15, 67, 78, 0.1));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border-radius: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
}

.hero-card .image-placeholder {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--slate-700);
  position: relative;
  z-index: 1;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.metric {
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--mint-300);
}

.metric strong {
  font-size: 1.8rem;
  color: var(--teal-600);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-card);
  padding: 1.8rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mint-200);
  display: grid;
  place-items: center;
  color: var(--teal-600);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.callout {
  background: linear-gradient(135deg, #eaf7f5, #f9fcfc);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--mint-300);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--mint-200);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.85rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.process-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--mint-300);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.process-step {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-600);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.media-frame {
  border-radius: var(--radius-lg);
  border: 2px dashed var(--slate-200);
  padding: 2.4rem;
  background: var(--mint-100);
  text-align: center;
  color: var(--slate-600);
  min-height: 320px;
  display: grid;
  place-items: center;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.table-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mint-300);
  padding: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.table-tile strong {
  font-size: 2rem;
  color: var(--teal-600);
}

.cta {
  background: var(--teal-900);
  color: var(--white);
  text-align: center;
}

.cta h2,
.cta p {
  color: var(--white);
}

.footer {
  background: var(--teal-900);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer a {
  color: var(--mint-200);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-family: inherit;
  font-size: 1rem;
}

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

.form button {
  justify-content: center;
  cursor: pointer;
}

.list-check {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.list-check span {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.list-check svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.small-note {
  font-size: 0.9rem;
  color: var(--slate-600);
}

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

@media (max-width: 768px) {
  .nav-links {
    gap: 0.5rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  section {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.soft-section {
  background: radial-gradient(circle at top, #ecf9f7 0%, #f7fbfc 50%, #ffffff 100%);
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-card);
  padding: 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint-200);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.list-stack {
  display: grid;
  gap: 1.2rem;
}

.progress-block {
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: var(--slate-100);
  overflow: hidden;
  margin: 0.6rem 0 0.3rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-400));
}

.stat-banner {
  border-radius: var(--radius-md);
  border: 1px solid var(--mint-300);
  background: var(--mint-100);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-banner strong {
  font-size: 2.6rem;
  color: var(--teal-600);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.table th,
.table td {
  text-align: left;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--slate-100);
}

.table th {
  color: var(--slate-700);
  font-weight: 700;
}

.status-pill {
  font-size: 0.85rem;
  color: var(--teal-700);
  background: var(--mint-200);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
}

.milestone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.milestone-card strong {
  display: block;
  color: var(--slate-900);
  font-size: 1.1rem;
}

.milestone-card .tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-600);
  background: var(--mint-200);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

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

.compare-card {
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 2px solid var(--slate-100);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.compare-card.highlight {
  border-color: var(--teal-400);
  background: var(--mint-100);
}

.compare-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.compare-list span {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.compare-list span::before {
  content: "✓";
  color: var(--teal-600);
  font-weight: 800;
}

.hero-tight {
  padding-bottom: 3rem;
}

.section-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--mint-300);
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.team-card {
  border-radius: var(--radius-md);
  border: 2px solid var(--mint-300);
  background: var(--white);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.team-card.highlight {
  border-color: var(--teal-600);
  box-shadow: 0 18px 36px rgba(12, 47, 57, 0.15);
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed var(--slate-200);
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  color: var(--slate-500);
  font-size: 0.8rem;
  padding: 0.6rem;
}

.team-title {
  color: var(--teal-600);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.team-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.team-actions a {
  border: 1px solid var(--slate-100);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
}

.tag-pill {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--mint-200);
  color: var(--teal-700);
}

.tag-pill.green { background: #e8f8ee; color: #1f9d55; }
.tag-pill.blue { background: #e7f0ff; color: #2f6fed; }
.tag-pill.purple { background: #f1e8ff; color: #8b4dff; }

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--mint-300);
  background: var(--white);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-item span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint-200);
  color: var(--teal-600);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.navbar--scrolled {
  box-shadow: 0 10px 24px rgba(10, 34, 40, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.navbar--scrolled .nav-inner {
  padding: 0.5rem 0;
}

.navbar--scrolled .logo img {
  height: 36px;
}

@media (max-width: 768px) {
  .navbar--scrolled .logo img {
    height: 32px;
  }
}

.nav-inner {
  padding: 2rem 0;
}

.logo img {
  height: 64px;
}

.navbar--scrolled .nav-inner {
  padding: 0.9rem 0;
}

.navbar--scrolled .logo img {
  height: 40px;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 1.5rem 0;
  }

  .logo img {
    height: 52px;
  }
}

.navbar {
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nav-inner {
  transition: padding 0.25s ease;
}

.logo img {
  transition: height 0.25s ease;
}
