:root {
  --ink: #13233a;
  --muted: #5f6f82;
  --soft: #f5f8fc;
  --line: #dfe7f1;
  --white: #ffffff;
  --navy: #102a4c;
  --blue: #2e7cf6;
  --teal: #00a59d;
  --violet: #725cff;
  --orange: #ff8a4c;
  --yellow: #f4c95d;
  --accent: var(--teal);
  --accent-2: var(--blue);
  --accent-soft: #e8fbf8;
  --accent-wash: #f1fcfa;
  --shadow-sm: 0 8px 30px rgba(24, 47, 79, 0.08);
  --shadow-lg: 0 30px 80px rgba(24, 47, 79, 0.14);
  --radius: 22px;
  --max: 1180px;
}

.theme-rise {
  --accent: var(--violet);
  --accent-2: var(--blue);
  --accent-soft: #f0edff;
  --accent-wash: #f7f5ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-weight: 750;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 231, 241, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #465970;
  font-size: 0.9rem;
  font-weight: 680;
}

.nav-links > a:not(.button) {
  position: relative;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: right 0.2s ease;
}

.nav-links > a:not(.button):hover::after,
.nav-links > a:not(.button):focus-visible::after {
  right: 0;
}

.program-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
}

.program-switch a {
  min-width: 62px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #6b7b8e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.program-switch a[aria-current="page"] {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 3px 12px rgba(29, 47, 70, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(16, 42, 76, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 24%, transparent);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--accent-soft);
  color: var(--navy);
  box-shadow: none;
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 36px rgba(10, 31, 57, 0.15);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 830;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  font-weight: 810;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  font-weight: 780;
}

.gradient-text {
  background: linear-gradient(105deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 62ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 56px;
  background:
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 26%),
    radial-gradient(circle at 92% 75%, color-mix(in srgb, var(--accent-2) 12%, transparent), transparent 23%),
    linear-gradient(180deg, var(--white), var(--accent-wash));
}

.hero::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -130px;
  top: 60px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  align-items: center;
  gap: 68px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.proof-item {
  padding: 14px 12px 12px;
  border-top: 2px solid color-mix(in srgb, var(--accent) 45%, var(--line));
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.9rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-card {
  position: relative;
  min-height: 448px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 30px;
}

.hero-card::before {
  inset: 24px -18px -18px 38px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  opacity: 0.15;
}

.hero-card::after {
  width: 76px;
  height: 76px;
  right: -30px;
  top: -30px;
  border: 13px solid var(--yellow);
  opacity: 0.8;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.card-head span:first-child {
  font-size: 0.93rem;
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: color-mix(in srgb, var(--accent) 80%, #173852);
  font-size: 0.73rem;
  font-weight: 800;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}

.flow-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.flow-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.flow-icon,
.feature-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.flow-icon {
  width: 42px;
  height: 42px;
}

.flow-icon svg,
.feature-icon svg,
.mini-icon svg {
  width: 20px;
  height: 20px;
}

.flow-copy strong,
.flow-copy small {
  display: block;
}

.flow-copy strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.flow-copy small {
  color: var(--muted);
  font-size: 0.75rem;
}

.flow-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.card-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 15px;
  background: var(--navy);
  color: white;
}

.card-foot strong,
.card-foot small {
  display: block;
}

.card-foot strong {
  font-size: 0.86rem;
}

.card-foot small {
  color: #b9c7d9;
  font-size: 0.72rem;
}

.pulse-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
}

.pulse-bars i {
  width: 5px;
  border-radius: 99px;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.pulse-bars i:nth-child(1) { height: 35%; }
.pulse-bars i:nth-child(2) { height: 72%; animation-delay: 0.12s; }
.pulse-bars i:nth-child(3) { height: 52%; animation-delay: 0.24s; }
.pulse-bars i:nth-child(4) { height: 100%; animation-delay: 0.36s; }
.pulse-bars i:nth-child(5) { height: 78%; animation-delay: 0.48s; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.82); }
  50% { opacity: 1; transform: scaleY(1); }
}

.section {
  padding: 86px 0;
}

.section-tint {
  background: var(--soft);
}

.section-accent {
  background: var(--accent-wash);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 38px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 258px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(32, 55, 82, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}

.feature-card:nth-child(2) .feature-icon {
  background: #edf5ff;
  color: var(--blue);
}

.feature-card:nth-child(3) .feature-icon {
  background: #fff4e9;
  color: var(--orange);
}

.feature-card:nth-child(4) .feature-icon {
  background: #fff8dc;
  color: #ad7d00;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: 72px;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.sticky-copy p:not(.eyebrow) {
  color: var(--muted);
}

.steps {
  position: relative;
  display: grid;
  gap: 14px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
  opacity: 0.22;
}

.step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 22%, transparent);
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.route-card::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.route-label {
  display: inline-block;
  margin-bottom: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.route-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
}

.value-band {
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  color: white;
}

.value-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: 62px;
  padding: 58px;
}

.value-band-inner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -120px;
  border: 36px solid color-mix(in srgb, var(--accent) 52%, transparent);
  border-radius: 50%;
}

.value-band .eyebrow {
  color: #92e5dd;
}

.theme-rise .value-band .eyebrow {
  color: #c2b8ff;
}

.value-band h2 {
  color: white;
}

.value-band p {
  margin-bottom: 0;
  color: #bfccdc;
}

.value-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.value-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #9df0e8;
}

.theme-rise .mini-icon {
  color: #c8c0ff;
}

.value-item strong,
.value-item span {
  display: block;
}

.value-item strong {
  margin-bottom: 4px;
  font-size: 0.94rem;
}

.value-item span {
  color: #aebed0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.cta-section {
  padding: 24px 0 86px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 46px 50px;
  border-radius: 26px;
  background: linear-gradient(118deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 24px 55px color-mix(in srgb, var(--accent) 22%, transparent);
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: 15%;
  top: -190px;
  border: 42px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.cta-card h2 {
  position: relative;
  margin-bottom: 10px;
  color: white;
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.cta-card p {
  position: relative;
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-card .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

.footer-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner img {
  width: 164px;
}

.footer-copy {
  color: #728195;
  font-size: 0.8rem;
  text-align: right;
}

.footer-copy a {
  color: var(--navy);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 17px;
  }

  .nav-links > a:not(.button):not(.program-link) {
    display: none;
  }

  .hero-grid,
  .split,
  .value-band-inner {
    gap: 42px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    min-height: 230px;
  }

  .value-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 156px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .nav-links.is-open {
    display: grid;
    gap: 10px;
  }

  .nav-links > a:not(.button):not(.program-link) {
    display: block;
    padding: 10px;
  }

  .program-switch {
    justify-self: start;
  }

  .nav-links .button {
    margin-top: 4px;
  }

  .hero {
    padding: 52px 0 46px;
  }

  .hero-grid,
  .section-heading,
  .split,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-card {
    min-height: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    align-items: start;
    gap: 10px;
    margin-bottom: 30px;
  }

  .sticky-copy {
    position: static;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .value-band-inner {
    padding: 38px 26px;
  }

  .cta-card {
    gap: 24px;
    padding: 36px 28px;
  }

  .cta-card .button {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .hero-proof,
  .feature-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 2px;
  }

  .proof-item {
    display: grid;
    grid-template-columns: minmax(120px, auto) 1fr;
    gap: 14px;
  }

  .hero-card {
    padding: 20px;
    border-radius: 22px;
  }

  .card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .flow-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .flow-check {
    display: none;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 24px;
  }

  .step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding: 19px;
  }

  .step-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .steps::before {
    left: 23px;
  }

  .footer-inner {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
