:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #10203d;
  --muted: #5f708f;
  --line: rgba(16, 32, 61, 0.1);
  --green: #31c456;
  --green-deep: #0f8e32;
  --blue: #1f4ed8;
  --blue-soft: #dbe8ff;
  --ink: #0f1728;
  --accent: #4c7dff;
  --shadow: 0 24px 70px rgba(16, 32, 61, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 15px;
  background:
    radial-gradient(circle at top left, rgba(76, 125, 255, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(49, 196, 86, 0.16), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 56%, #edf3fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(16, 32, 61, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark,
.footer-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  padding: 6px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(16, 32, 61, 0.08);
}

.brand-copy strong,
.footer-brand-copy strong {
  display: block;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.brand-copy span,
.footer-brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.footer-links a:hover,
.footer-meta-links a:hover,
.link-row a:hover {
  color: var(--text);
}

.nav a:hover {
  transform: translateY(-1px);
  background: rgba(76, 125, 255, 0.08);
}

.nav .nav-primary,
.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, #61dc7f 100%);
  color: #05220d;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(49, 196, 86, 0.24);
}

.hero-grid,
.two-column,
.card-grid,
.page-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-top: 34px;
}

.panel,
.card,
.footer,
.page-hero,
.stat-card,
.content-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel,
.page-hero,
.content-panel,
.footer {
  padding: 34px;
}

.hero-panel,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-panel::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(76, 125, 255, 0.2), rgba(76, 125, 255, 0));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(76, 125, 255, 0.1);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 760px;
  font-size: 0.98rem;
}

.hero-actions,
.button-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions,
.button-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #f7fbff;
}

.dark-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 23, 40, 0.96) 0%, rgba(22, 34, 58, 0.92) 100%),
    radial-gradient(circle at top right, rgba(49, 196, 86, 0.2), transparent 28%);
  color: #f6faff;
  box-shadow: 0 26px 70px rgba(10, 18, 35, 0.24);
}

.dark-panel h2,
.dark-panel h3,
.dark-panel strong {
  color: #f7fbff;
}

.dark-panel p,
.dark-panel li,
.dark-panel small,
.dark-panel .meta-copy {
  color: rgba(247, 251, 255, 0.76);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.section {
  margin-top: 26px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 16px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.content-panel {
  padding: 24px;
}

.card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(76, 125, 255, 0.14), rgba(49, 196, 86, 0.18));
  color: var(--blue);
  font-weight: 700;
}

.list,
.check-list,
.footer-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.list li,
.check-list li,
.footer-list li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.72;
}

.check-list li::marker {
  color: var(--green-deep);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(76, 125, 255, 0.08);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
}

.meta-panel {
  margin-top: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(76, 125, 255, 0.18), rgba(49, 196, 86, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.meta-panel strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.24rem;
}

.meta-copy {
  line-height: 1.72;
}

.page-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 23, 40, 0.96), rgba(31, 78, 216, 0.9));
  color: #f7fbff;
  box-shadow: 0 26px 70px rgba(10, 18, 35, 0.22);
}

.cta-band h2,
.cta-band h3,
.cta-band strong,
.cta-band p {
  color: #f7fbff;
}

.page-link-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.page-link-card strong {
  display: block;
  margin-bottom: 8px;
}

.visual-panel {
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  margin-top: 22px;
}

.visual-panel img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  max-height: 420px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  margin: 64px 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.98), rgba(18, 31, 55, 0.96));
  box-shadow: 0 32px 90px rgba(7, 14, 28, 0.26);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-heading {
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9bb9ff;
  text-transform: uppercase;
}

.footer p,
.footer li,
.footer-brand-copy span,
.footer-meta-links a,
.footer-links a,
.footer-list a,
.footer-note p {
  color: rgba(244, 248, 255, 0.78);
}

.footer-brand-copy strong {
  color: #f7fbff;
}

.footer-links,
.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-links a,
.footer-meta-links a {
  color: rgba(244, 248, 255, 0.78);
}

.footer-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note p {
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-grid,
  .footer-grid,
  .page-links,
  .cta-band,
  .card-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 30px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-panel,
  .page-hero,
  .content-panel,
  .footer,
  .dark-panel {
    padding: 24px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-note {
    align-items: flex-start;
    flex-direction: column;
  }
}