:root {
  --bg-color: #0b0f19;
  --bg-secondary: #1b2e29;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --accent-primary: #00ff88;
  --accent-secondary: #ff4500;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(27, 46, 41, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --header-height: 80px;
  --shadow-strong: 0 20px 80px rgba(0, 0, 0, 0.45);
  --container-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 136, 0.16), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(0, 180, 216, 0.22), transparent 24%),
    linear-gradient(180deg, #09111b 0%, var(--bg-color) 42%, #09131f 100%);
  color: var(--text-primary);
  min-width: 320px;
}

body.modal-open {
  overflow: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12), transparent 70%);
  filter: blur(10px);
}

body::after {
  right: -80px;
  bottom: 10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14), transparent 68%);
  filter: blur(8px);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(11, 15, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: 260px;
  filter: drop-shadow(0 0 24px rgba(0, 255, 136, 0.18));
}

.brand-name,
.footer-brand,
h1,
h2,
h3,
.price span {
  font-family: 'Exo 2', sans-serif;
}

.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-tag {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a:not(.button) {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-primary), #68ffb8);
  color: #042312;
  box-shadow: 0 18px 34px rgba(0, 255, 136, 0.18);
}

.button-outline {
  border-color: rgba(0, 255, 136, 0.34);
  color: var(--text-primary);
  background: rgba(0, 255, 136, 0.06);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.hero-section {
  position: relative;
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-motto {
  margin: 1rem 0 1.25rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--accent-secondary);
  font-weight: 700;
}

.hero-text,
.section-heading p,
.audience-card p,
.feature-card p,
.pricing-list li,
.price-note,
.education-card p,
.footer-text,
.footer-copy {
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  margin: 0 0 1.75rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.hero-points li::before,
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.42);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.mockup-card {
  position: absolute;
  border-radius: 24px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(14, 24, 39, 0.96), rgba(12, 18, 30, 0.9));
}

.mockup-kicker {
  display: inline-block;
  color: var(--accent-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.67rem;
  font-weight: 700;
}

.mockup-sidebar {
  top: 58px;
  left: 12px;
  width: 190px;
  z-index: 3;
}

.mockup-sidebar-top strong,
.mockup-dashboard-header strong {
  display: block;
  margin-top: 0.35rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
}

.mockup-timer {
  margin-top: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.16);
  color: var(--accent-primary);
  font-family: 'Exo 2', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  text-align: center;
}

.mockup-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.mockup-actions span,
.mockup-event-log div {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-actions span {
  padding: 0.55rem 0.45rem;
  color: var(--text-primary);
  font-size: 0.72rem;
  text-align: center;
}

.mockup-event-log {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.mockup-event-log div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.7rem;
}

.mockup-event-log span {
  color: var(--text-secondary);
  font-size: 0.68rem;
}

.mockup-event-log strong {
  font-size: 0.78rem;
}

.glass-panel,
.feature-card,
.audience-card,
.pricing-card,
.education-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-panel {
  position: relative;
  padding: 1.3rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 35, 31, 0.95), rgba(9, 15, 25, 0.92));
}

.main-panel {
  width: min(100%, 560px);
  margin-left: auto;
  z-index: 2;
}

.mockup-dashboard {
  right: 16px;
  bottom: 54px;
  width: 250px;
  z-index: 3;
}

.mockup-bars {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.mockup-bars div {
  display: grid;
  gap: 0.35rem;
}

.mockup-bars span {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.mockup-bars i {
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mockup-bars i::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
}

.mockup-heatmap {
  position: relative;
  min-height: 112px;
  margin-top: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(42, 74, 53, 0.9), rgba(27, 46, 41, 0.95)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 10%, transparent 10%, transparent 20%);
  overflow: hidden;
}

.mockup-heatmap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.heat {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 174, 0, 0.76), rgba(255, 73, 73, 0.22), transparent 70%);
  filter: blur(2px);
}

.h1 {
  top: 18px;
  left: 44px;
  width: 54px;
  height: 54px;
}

.h2 {
  top: 32px;
  right: 28px;
  width: 62px;
  height: 62px;
}

.h3 {
  bottom: 12px;
  left: 88px;
  width: 72px;
  height: 72px;
}

.h4 {
  bottom: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
}

.panel-header {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.5);
}

.pitch-preview {
  position: relative;
  margin-top: 1rem;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(42, 74, 53, 0.95), rgba(27, 46, 41, 0.98)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 9%,
      transparent 9%,
      transparent 18%
    );
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.pitch-preview::before,
.pitch-preview::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.pitch-preview::before {
  inset: 1rem;
  border-radius: 18px;
}

.pitch-preview::after {
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pitch-line.vertical {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.24);
}

.event-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.marker-goal {
  top: 28%;
  left: 68%;
  background: #fbbf24;
  box-shadow: 0 0 0 10px rgba(251, 191, 36, 0.12);
}

.marker-pass {
  top: 54%;
  left: 39%;
  border-radius: 4px;
  background: var(--accent-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 0 10px rgba(0, 255, 136, 0.1);
}

.marker-recovery {
  top: 66%;
  left: 74%;
  background: var(--accent-secondary);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 0 0 10px rgba(0, 180, 216, 0.1);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.mini-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-grid strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.mini-grid span,
.floating-label,
.card-index,
.pricing-badge {
  color: var(--accent-primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.floating-panel {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--glass-bg);
}

.floating-panel strong {
  display: block;
  margin: 0.4rem 0 0.2rem;
  font-size: 2rem;
}

.floating-panel p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.floating-kpi {
  top: 54px;
  left: 0;
  width: 220px;
}

.floating-export {
  right: 0;
  bottom: 22px;
  width: 250px;
}

.section {
  padding: 5.5rem 0;
}

.section-demo {
  padding-top: 2.5rem;
  padding-bottom: 2.25rem;
}

.demo-card {
  position: relative;
  border-radius: 28px;
  padding: 2rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(0, 255, 136, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(12, 24, 22, 0.96), rgba(8, 12, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.demo-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.demo-card h2 {
  max-width: 19ch;
  margin-bottom: 0.85rem;
}

.demo-card p {
  max-width: 72ch;
}

.demo-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.demo-credential-item {
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.demo-credential-item span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-credential-item strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.demo-credential-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.copy-credential-button {
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.08);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.copy-credential-button:hover,
.copy-credential-button:focus-visible {
  background: rgba(0, 255, 136, 0.16);
  border-color: rgba(0, 255, 136, 0.58);
  transform: translateY(-1px);
}

.copy-credential-button.is-copied {
  background: rgba(0, 180, 216, 0.22);
  border-color: rgba(0, 180, 216, 0.58);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.section-video {
  padding-top: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 1.5rem;
  align-items: center;
}

.video-copy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.video-copy-points span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.video-card {
  border-radius: 30px;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #05070e;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.12), rgba(11, 15, 25, 0.6)),
    radial-gradient(circle at center, rgba(0, 180, 216, 0.08), transparent 30%);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 18px rgba(0, 255, 136, 0.08);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--accent-primary);
}

.video-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  text-align: left;
  background: rgba(7, 10, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-caption strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
}

.video-caption small {
  color: var(--text-secondary);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, 0.84);
  backdrop-filter: blur(12px);
}

.video-modal-dialog {
  position: relative;
  width: min(calc(100% - 1.5rem), 1020px);
  margin: min(7vh, 3rem) auto;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 21, 34, 0.98), rgba(8, 12, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.video-modal-eyebrow {
  margin-bottom: 0.65rem;
}

.video-modal-dialog h2 {
  max-width: 18ch;
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.video-frame {
  margin-top: 1.25rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-fallback-link {
  margin: 0.9rem 0 0;
  color: var(--text-secondary);
}

.video-fallback-link a {
  color: var(--accent-primary);
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: '';
  position: absolute;
  inset: 12% 0 auto;
  height: 75%;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.05), rgba(0, 180, 216, 0.04));
  transform: skewY(-4deg);
  z-index: -1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.feature-grid,
.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.audience-card,
.education-card,
.pricing-card {
  position: relative;
  border-radius: 28px;
  padding: 1.5rem;
}

.feature-card h3,
.audience-card h3,
.pricing-card h3,
.education-card h2 {
  margin: 0.75rem 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.feature-card::after,
.audience-card::after,
.pricing-card::after,
.education-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background:
    radial-gradient(circle at top right, rgba(0, 255, 136, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(16, 30, 26, 0.95), rgba(8, 12, 20, 0.96));
}

.pricing-card-special {
  background:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(12, 28, 40, 0.95), rgba(8, 12, 20, 0.96));
}

.price {
  margin: 0.75rem 0 0.35rem;
}

.price span {
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
  display: grid;
  gap: 0.95rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.5rem;
}

.pricing-actions {
  margin-top: 1.5rem;
}

.section-program {
  padding-top: 0;
}

.program-wrap {
  display: grid;
  gap: 1.35rem;
}

.program-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.program-info-card,
.program-about {
  position: relative;
  border-radius: 28px;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(0, 255, 136, 0.05)),
    rgba(9, 15, 25, 0.88);
}

.program-info-card::after,
.program-about::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.program-info-card h3,
.program-about h3 {
  margin: 0.15rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.program-info-card p,
.program-about p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.program-about {
  display: grid;
  gap: 1rem;
}

.program-about .button {
  width: fit-content;
}

.education-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.15rem 0 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.education-logo {
  width: min(100%, 260px);
  max-height: 72px;
  object-fit: contain;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-text,
.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: var(--text-secondary);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-primary);
}

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

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

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .video-grid,
  .audience-grid,
  .pricing-wrap,
  .program-highlights,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .pricing-options {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 740px;
  }

  .main-panel {
    margin: 0 auto;
  }

  .mockup-sidebar {
    left: 0;
  }

  .mockup-dashboard {
    right: 0;
  }

  .floating-kpi {
    left: 1rem;
  }

  .floating-export {
    right: 1rem;
  }

  .footer-links,
  .footer-copy {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(10, 15, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
  }

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

  .site-nav .button {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 780px;
  }

  .mockup-sidebar,
  .mockup-dashboard {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .hero-section {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .main-panel {
    padding: 1rem;
  }

  .pitch-preview {
    min-height: 250px;
  }

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

  .floating-panel {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .video-play-button {
    width: 72px;
    height: 72px;
  }

  .video-modal-dialog {
    margin-top: 1rem;
    padding: 1rem;
  }

  .video-modal-dialog h2 {
    max-width: none;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }
}

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

  .button,
  .reveal {
    transition: none;
  }
}