:root {
  --navy-950: #06101f;
  --navy-900: #08182d;
  --navy-800: #0c2340;
  --navy-700: #123154;
  --ink: #142238;
  --muted: #5e6b7f;
  --soft: #edf3fb;
  --panel: #f8fbff;
  --line: rgba(20, 34, 56, 0.12);
  --gold: #f7c948;
  --gold-strong: #d99c18;
  --cyan: #47d5ff;
  --teal: #39d3b4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 12, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--panel);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  background: rgba(6, 16, 31, 0.82);
  border: 1px solid rgba(247, 201, 72, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(2, 8, 19, 0.35);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #111927;
  background: linear-gradient(135deg, var(--gold), #ffe7a1);
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(247, 201, 72, 0.35);
}

.brand-text {
  max-width: 190px;
  font-size: 0.9rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #0b1423;
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(247, 201, 72, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 99px;
}

.mobile-menu {
  position: fixed;
  top: 94px;
  left: 16px;
  right: 16px;
  z-index: 49;
  display: none;
  padding: 14px;
  color: var(--white);
  background: rgba(6, 16, 31, 0.96);
  border: 1px solid rgba(247, 201, 72, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 14px 10px;
  font-weight: 700;
}

.mobile-menu.is-open {
  display: block;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 24, 45, 0.96), rgba(6, 16, 31, 0.98)),
    radial-gradient(circle at center, rgba(71, 213, 255, 0.14), transparent 36%);
}

.section-light {
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(237, 243, 251, 0.98)),
    linear-gradient(90deg, rgba(247, 201, 72, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(71, 213, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.section-panel {
  padding: 86px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  padding: 128px 0 28px;
  overflow: hidden;
}

.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.88) 0%, rgba(6, 16, 31, 0.62) 44%, rgba(6, 16, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 16, 31, 0.92), rgba(6, 16, 31, 0.04) 46%, rgba(6, 16, 31, 0.6));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 201, 72, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 90%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 24px 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: inherit;
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: #0c1625;
  background: linear-gradient(135deg, var(--gold), #ffe59b);
  box-shadow: 0 16px 36px rgba(247, 201, 72, 0.26);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.section-light .button-secondary,
.section-panel .button-secondary {
  color: var(--navy-900);
  border-color: rgba(20, 34, 56, 0.18);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-badges span,
.audience-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(247, 201, 72, 0.22);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.mission-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.strip-line {
  flex: 0 1 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 20px rgba(71, 213, 255, 0.55);
}

.problem-grid,
.project-grid,
.certificate-grid,
.admission-grid,
.faq-grid,
.outcomes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.problem h2,
.outcomes h2,
.dsp h2 {
  color: var(--navy-900);
}

.problem p,
.section-heading p,
.certificate-copy p,
.dsp p,
.faq p,
.outcomes p {
  color: var(--muted);
}

.evolution {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.evolution-step {
  min-height: 174px;
  padding: 22px;
  color: var(--navy-900);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(3, 12, 28, 0.07);
}

.evolution-step.active {
  background: #091b33;
  border-color: rgba(247, 201, 72, 0.5);
  color: var(--white);
}

.evolution-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #0c1625;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.evolution-step small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.evolution-step.active small {
  color: rgba(255, 255, 255, 0.68);
}

.evolution-arrow {
  color: var(--gold-strong);
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.feature-card,
.module-card {
  min-height: 238px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(3, 12, 28, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.module-card:hover {
  border-color: rgba(247, 201, 72, 0.55);
  box-shadow: 0 22px 60px rgba(3, 12, 28, 0.12);
  transform: translateY(-4px);
}

.card-icon,
.module-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold), #fff0b9);
  border-radius: 8px;
  font-weight: 900;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p,
.module-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--cyan), var(--teal));
  box-shadow: 0 0 28px rgba(71, 213, 255, 0.45);
}

.timeline-item {
  position: relative;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -32px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 4px solid var(--navy-950);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(247, 201, 72, 0.65);
}

.timeline-day {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.module-card-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.16), rgba(71, 213, 255, 0.1)),
    var(--navy-900);
  border-color: rgba(247, 201, 72, 0.5);
}

.module-card-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.agent-flow {
  padding: 96px 0;
  overflow: hidden;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.flow-board::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--teal), var(--gold));
  box-shadow: 0 0 28px rgba(71, 213, 255, 0.5);
  transform: translateY(-50%);
  animation: pulseLine 2.8s ease-in-out infinite;
}

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 146px;
  padding: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.flow-node span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.user-node,
.output-node {
  border-color: rgba(247, 201, 72, 0.54);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.audience-grid span {
  justify-content: center;
  min-height: 62px;
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
  text-align: center;
}

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

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.outcome-item {
  position: relative;
  min-height: 92px;
  padding: 18px 16px 18px 48px;
  color: var(--navy-900);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
}

.outcome-item::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 5px;
  box-shadow: 0 0 18px rgba(247, 201, 72, 0.42);
}

.project {
  padding: 96px 0;
}

.project p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
}

.dashboard-visual {
  min-height: 460px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.12), rgba(71, 213, 255, 0.09)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  height: 28px;
  align-items: center;
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  min-height: 310px;
  margin-top: 12px;
}

.dashboard-sidebar,
.dashboard-workspace,
.presentation-screen {
  background: rgba(6, 16, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px;
}

.dashboard-sidebar span {
  display: block;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.dashboard-workspace {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-content: center;
  padding: 20px;
}

.mini-card {
  min-height: 88px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.mini-card.strong {
  grid-column: 1 / -1;
  color: var(--navy-950);
  background: var(--gold);
}

.project-line {
  grid-column: 1 / -1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(71, 213, 255, 0.42);
}

.presentation-screen {
  display: grid;
  place-items: center;
  min-height: 78px;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
}

.certificate {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.certificate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 201, 72, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(71, 213, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}

.certificate .shell {
  position: relative;
  z-index: 1;
}

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

.certificate-header h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.certificate-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #0b1423;
  background: linear-gradient(135deg, var(--gold), #fff0ba);
  border-radius: 8px;
  box-shadow: 0 0 26px rgba(247, 201, 72, 0.3);
  font-weight: 900;
  white-space: nowrap;
}

.certificate-intro,
.certificate-disclaimer,
.certificate-trust-line {
  max-width: 950px;
  color: rgba(255, 255, 255, 0.76);
}

.certificate-disclaimer {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(247, 201, 72, 0.1);
  border: 1px solid rgba(247, 201, 72, 0.28);
  border-radius: 8px;
  font-weight: 700;
}

.certificate-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.certificate-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247, 201, 72, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.certificate-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.18), transparent 68%);
  pointer-events: none;
}

.certificate-card:hover {
  border-color: rgba(247, 201, 72, 0.55);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.certificate-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: #0b1423;
  background: linear-gradient(135deg, var(--gold), #fff0ba);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(247, 201, 72, 0.28);
}

.certificate-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-card h3 {
  color: var(--white);
}

.certificate-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.dsp-certificate {
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.18), rgba(71, 213, 255, 0.1)),
    rgba(255, 255, 255, 0.07);
  border-color: rgba(247, 201, 72, 0.48);
}

.certificate-trust-line {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 800;
}

.dsp-content {
  max-width: 900px;
  text-align: center;
}

.dsp-content h2 {
  margin-right: auto;
  margin-left: auto;
}

.faq-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(3, 12, 28, 0.06);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy-900);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-cta {
  padding: 96px 0;
}

.admission-grid {
  grid-template-columns: 1fr 420px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(247, 201, 72, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.lead-form h3 {
  margin: 0 0 4px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.18);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-note.success {
  color: var(--gold);
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
}

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

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

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

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

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

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

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

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

  .flow-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-board::before {
    display: none;
  }

  .audience-grid,
  .outcome-list,
  .certificate-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid,
  .project-grid,
  .certificate-grid,
  .admission-grid,
  .faq-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .admission-grid {
    gap: 34px;
  }
}

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

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
  }

  .brand-text {
    display: none;
  }

  .mobile-menu {
    top: 82px;
    left: 10px;
    right: 10px;
  }

  .section-light,
  .section-panel,
  .agent-flow,
  .project,
  .final-cta {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 12px;
  }

  .hero-content {
    padding: 16px 0 18px;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    width: 100%;
  }

  .trust-badges {
    gap: 8px;
    margin-top: 18px;
  }

  .trust-badges span {
    flex: 1 1 150px;
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.82rem;
    text-align: center;
  }

  .mission-strip {
    flex-wrap: wrap;
    min-height: 58px;
    gap: 8px;
    font-size: 0.86rem;
  }

  .strip-line {
    flex: 1 1 30px;
  }

  .evolution,
  .feature-grid,
  .module-grid,
  .audience-grid,
  .outcome-list,
  .certificate-card-grid,
  .dashboard-workspace {
    grid-template-columns: 1fr;
  }

  .evolution-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline-item::before {
    left: -28px;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    grid-template-columns: repeat(3, 1fr);
  }

  .certificate-header {
    align-items: start;
    flex-direction: column;
  }

  .certificate-total {
    width: 100%;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .feature-card,
  .module-card,
  .timeline-item,
  .lead-form {
    padding: 20px;
  }
}
