﻿/* =========================
   ROOT & RESET
========================= */

:root {
  --bg: #f5f7fb;
  --bg-soft: #e9eef7;
  --surface: #ffffff;
  --surface-strong: #f2f6fc;

  --ink: #102034;
  --ink-soft: #415066;
  --muted: #6a778a;

  --navy: #12355b;
  --teal: #0f766e;
  --amber: #d97706;

  --border: 1px solid rgba(16, 32, 52, 0.12);
  --shadow-soft: 0 12px 32px rgba(18, 53, 91, 0.12);
  --shadow-card: 0 14px 40px rgba(10, 24, 41, 0.08);

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container: 1120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 118, 110, 0.1), transparent 35%),
    radial-gradient(circle at 100% 20%, rgba(217, 119, 6, 0.12), transparent 34%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

main {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

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

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin-top: 10px;
  margin-bottom: 12px;
}

.section-description {
  max-width: 740px;
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(245, 247, 251, 0.85);
  border-bottom: var(--border);
}

.header .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 0.25s ease;
}

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

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.7rem;
  color: var(--ink);
  cursor: pointer;
}

/* =========================
   BUTTONS
========================= */

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  border: var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 88px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.6);
  border-top: var(--border);
  border-bottom: var(--border);
}

.hero {
  padding: 96px 0 76px;
}

.hero-panel {
  position: relative;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 255, 0.95));
  border: var(--border);
  box-shadow: var(--shadow-card);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.26), rgba(15, 118, 110, 0));
  pointer-events: none;
}

.hero-title {
  max-width: 860px;
  margin-top: 14px;
}

.hero-copy {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.stats-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.stat-card strong {
  display: block;
  font-size: 1.18rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================
   CARDS & GRIDS
========================= */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(10, 24, 41, 0.12);
}

.card p {
  margin-top: 10px;
}

.meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-live {
  color: #065f46;
  background: rgba(16, 185, 129, 0.16);
}

.badge-soon {
  color: #92400e;
  background: rgba(251, 191, 36, 0.2);
}

.badge-plan {
  color: #1e3a8a;
  background: rgba(59, 130, 246, 0.18);
}

.list-clean {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.list-clean li {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--ink-soft);
}

.callout {
  margin-top: 26px;
  background: linear-gradient(125deg, rgba(18, 53, 91, 0.92), rgba(15, 118, 110, 0.9));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.callout p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

.page-hero {
  padding-top: 72px;
  padding-bottom: 38px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 14px;
}

.content-flow > * + * {
  margin-top: 16px;
}

.mt-22 {
  margin-top: 22px;
}

/* =========================
   FOOTER
========================= */

.footer {
  margin-top: 24px;
  border-top: var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.footer .container {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================
   ANIMATION
========================= */

.hero-panel,
.card,
.page-hero,
.section h2,
.section .eyebrow {
  animation: rise 0.6s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {
  .stats-grid,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header .container {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #f7f9fc;
    border-bottom: var(--border);
    border-top: var(--border);
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.active {
    display: flex;
  }

  .nav a::after {
    bottom: -5px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-panel {
    border-radius: 24px;
  }

  .stats-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding-top: 56px;
    padding-bottom: 26px;
  }

  .footer .container {
    flex-direction: column;
  }
}

