:root {
  --navy-950: #081224;
  --navy-900: #0f1d34;
  --navy-800: #183054;
  --slate-900: #1b2434;
  --slate-700: #455168;
  --slate-500: #71809a;
  --slate-200: #d8e0ea;
  --slate-100: #eef3f8;
  --white: #ffffff;
  --mint: #dff5ec;
  --sky: #dfeeff;
  --gold: #f1e2bc;
  --shadow-lg: 0 26px 70px rgba(8, 18, 36, 0.15);
  --shadow-md: 0 18px 40px rgba(12, 24, 46, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at top left, rgba(223, 238, 255, 0.9), transparent 28%),
    radial-gradient(circle at top right, rgba(241, 226, 188, 0.32), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #eef4f9 56%, #f8fbfd 100%);
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(15, 29, 52, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  font-weight: 800;
}

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

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

.brand-copy small,
.main-nav a:not(.nav-cta) {
  color: var(--slate-700);
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--navy-950), #1b3860);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(12, 24, 46, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(24, 48, 84, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  padding: 54px 0 32px;
}

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

.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--navy-800);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.feature-card p,
.module-list p,
.governance-card p,
.cta-card p,
.trust-strip span,
.hero-stat-card span,
.pricing-card p,
.pricing-list li {
  color: var(--slate-700);
  line-height: 1.8;
}

.hero-actions,
.hero-points,
.hero-stat-strip,
.panel-grid,
.feature-grid,
.module-list,
.governance-layout,
.pricing-grid {
  margin-top: 26px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points,
.pricing-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.hero-points li,
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-900);
}

.hero-points li::before,
.pricing-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a8f67, #0fbc7f);
  box-shadow: 0 0 0 6px rgba(15, 188, 127, 0.12);
}

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

.hero-stat-card {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(24, 48, 84, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.hero-stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--navy-900);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(160deg, var(--navy-950), #102647 72%, #18345d);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.4;
  pointer-events: none;
}

.hero-orb-a {
  width: 180px;
  height: 180px;
  top: -30px;
  right: -20px;
  background: radial-gradient(circle, rgba(223, 238, 255, 0.34), transparent 65%);
  animation: floatOrb 7s ease-in-out infinite;
}

.hero-orb-b {
  width: 140px;
  height: 140px;
  bottom: 20px;
  left: -30px;
  background: radial-gradient(circle, rgba(241, 226, 188, 0.24), transparent 65%);
  animation: floatOrb 9s ease-in-out infinite reverse;
}

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

.panel-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.panel-card-primary {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.panel-card-accent {
  background: linear-gradient(160deg, rgba(15, 188, 127, 0.18), rgba(255, 255, 255, 0.04));
}

.panel-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.15rem;
}

.panel-card p,
.panel-label {
  color: rgba(255, 255, 255, 0.8);
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(24, 48, 84, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
}

.section {
  margin-top: 28px;
  padding: 36px;
  border: 1px solid rgba(24, 48, 84, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.section-contrast {
  background: linear-gradient(180deg, rgba(232, 240, 249, 0.92), rgba(255, 255, 255, 0.9));
}

.section-plan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.94)),
    linear-gradient(120deg, transparent 5%, rgba(223, 245, 236, 0.24), transparent 80%);
}

.section-highlight {
  background: linear-gradient(140deg, rgba(8, 18, 36, 0.98), rgba(22, 47, 83, 0.95));
  color: var(--white);
}

.section-highlight .section-heading p,
.section-highlight .cta-card p,
.section-highlight strong {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  max-width: 780px;
}

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

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

.feature-card,
.governance-card,
.cta-card,
.module-list article,
.pricing-card {
  border-radius: var(--radius-xl);
}

.feature-card {
  padding: 24px;
  border: 1px solid rgba(24, 48, 84, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.92)),
    linear-gradient(120deg, transparent 10%, rgba(223, 245, 236, 0.28), transparent 90%);
}

.module-list {
  display: grid;
  gap: 14px;
}

.module-list article {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 48, 84, 0.08);
}

.module-list span {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  font-weight: 800;
}

.governance-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.governance-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(223, 245, 236, 0.34), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(24, 48, 84, 0.08);
}

.pricing-card {
  padding: 26px;
  border: 1px solid rgba(24, 48, 84, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.pricing-card-highlight {
  background: linear-gradient(160deg, rgba(223, 238, 255, 0.94), rgba(255, 255, 255, 0.96));
}

.pricing-tag {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--navy-800);
}

.pricing-price {
  margin: 12px 0 0;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy-900);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer {
  padding: 28px 0 14px;
  color: var(--slate-500);
  text-align: center;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 14px, 0);
  }
}

@media (max-width: 960px) {
  .hero,
  .trust-strip,
  .feature-grid,
  .governance-layout,
  .panel-grid,
  .pricing-grid,
  .hero-stat-strip {
    grid-template-columns: 1fr;
  }

  .module-list article,
  .cta-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 29, 52, 0.08);
    color: var(--navy-900);
    font-weight: 700;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .section,
  .hero-panel {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
