@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f8fb;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.55);
  --text: #1f2937;
  --muted: #6b7280;
  --subtle: #9ca3af;
  --line: rgba(148, 163, 184, 0.18);
  --primary: #74b9ff;
  --primary-deep: #4a9fe0;
  --primary-light: #a8dfff;
  --accent: #ffa726;
  --accent-soft: #ffbd4d;
  --success: #00b894;
  --warning: #e17055;
  --shadow: 0 24px 60px rgba(31, 41, 55, 0.12);
  --shadow-soft: 0 14px 32px rgba(31, 41, 55, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(168, 223, 255, 0.45), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 184, 102, 0.3), transparent 26%),
    radial-gradient(circle at 70% 90%, rgba(0, 184, 148, 0.14), transparent 30%),
    linear-gradient(145deg, #fcfdff 0%, #f2f8ff 48%, #fff8ee 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 85%);
  opacity: 0.42;
}

body::after {
  content: '';
  position: fixed;
  top: -8rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(18px);
  pointer-events: none;
}

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

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

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  width: min(var(--max), calc(100% - 24px));
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 55%, var(--accent) 100%);
  box-shadow: 0 16px 30px rgba(74, 159, 224, 0.28);
  flex: none;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(74, 159, 224, 0.08);
}

.hero {
  position: relative;
  padding: 92px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-deep);
  border: 1px solid rgba(74, 159, 224, 0.12);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.policy-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  max-width: 12ch;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-deep), #2f80ed 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 58%, var(--accent) 100%);
  box-shadow: 0 18px 32px rgba(74, 159, 224, 0.26);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-note {
  margin-top: 18px;
  color: var(--subtle);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-panel {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  opacity: 0.85;
  animation: float 9s ease-in-out infinite;
}

.orb.one {
  width: 150px;
  height: 150px;
  top: -36px;
  right: -28px;
  background: rgba(74, 159, 224, 0.24);
}

.orb.two {
  width: 110px;
  height: 110px;
  bottom: 32px;
  left: -24px;
  background: rgba(255, 167, 38, 0.24);
  animation-delay: -2.2s;
}

.panel-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pill.blue {
  background: rgba(116, 185, 255, 0.14);
  color: var(--primary-deep);
}

.pill.orange {
  background: rgba(255, 167, 38, 0.14);
  color: #c26b00;
}

.pill.green {
  background: rgba(0, 184, 148, 0.12);
  color: #0c8f73;
}

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

.metric,
.feature-card,
.story-card,
.step-card,
.faq-card,
.policy-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.visual-canvas {
  margin-top: 14px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(74, 159, 224, 0.12), rgba(255, 167, 38, 0.1)),
    #fff;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.visual-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.visual-row:last-child {
  border-bottom: 0;
}

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

.visual-row strong {
  font-size: 0.98rem;
}

.section {
  padding: 28px 0 14px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-title,
.policy-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-copy {
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
  margin: 0;
}

.feature-grid,
.story-grid,
.support-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.feature-card::after,
.story-card::after,
.policy-card::after {
  content: '';
  position: absolute;
  inset: auto -42px -54px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 185, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.feature-icon,
.story-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(116, 185, 255, 0.18), rgba(255, 167, 38, 0.16));
  color: var(--primary-deep);
  font-size: 1.15rem;
  font-weight: 800;
}

.feature-card h3,
.story-card h3,
.step-card h3,
.faq-card h3,
.policy-card h3 {
  margin: 16px 0 10px;
  font-size: 1.08rem;
}

.feature-card p,
.story-card p,
.step-card p,
.faq-card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.72;
}

.story-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.story-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

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

.stat {
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(74, 159, 224, 0.08), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(74, 159, 224, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.88rem;
}

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

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex: none;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--success), #2ecc71);
  box-shadow: 0 10px 18px rgba(0, 184, 148, 0.18);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 3px;
  font-size: 0.98rem;
}

.feature-list span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.story-side {
  display: grid;
  gap: 16px;
}

.story-mini {
  padding: 18px;
}

.story-mini h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.story-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.steps,
.support-grid,
.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.faq-card,
.policy-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.step-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(74, 159, 224, 0.18), rgba(255, 167, 38, 0.18));
  color: var(--primary-deep);
  font-weight: 900;
}

.support-callout {
  grid-column: span 1;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(116, 185, 255, 0.18), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(74, 159, 224, 0.12);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-row {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.contact-item span {
  color: var(--muted);
}

.faq-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-tag {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(116, 185, 255, 0.14);
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-card h3 {
  margin-top: 0;
}

.policy-card ul {
  margin: 0;
  padding-left: 18px;
}

.policy-card li + li {
  margin-top: 10px;
}

.footer {
  padding: 34px 0 60px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1.04); }
}

@media (max-width: 1060px) {
  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .support-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .navbar {
    border-radius: 24px;
    padding: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-actions,
  .section-header,
  .footer-inner,
  .panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid,
  .steps,
  .support-grid,
  .policy-grid,
  .panel-grid,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
  }

  .container,
  .navbar {
    width: min(100% - 20px, var(--max));
  }
}
