@import "../Design System/styles.css";

:root {
  --signal-300: #d6bdff;
  --signal-400: #b98dff;
  --signal-500: #8f4dff;
  --signal-600: #7b38ee;
  --signal-700: #c7a5ff;
  --accent: var(--signal-500);
  --accent-strong: var(--signal-400);
  --accent-text: var(--signal-400);
  --surface-flood: var(--signal-500);
  --text-on-accent: var(--fog-100);
  --text-on-flood: var(--fog-100);
  --focus-ring: var(--pulse-400);
  --glass-bg: rgba(12, 15, 24, 0.48);
  --glass-bg-strong: rgba(12, 15, 24, 0.68);
  --glass-bg-soft: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(214, 189, 255, 0.18);
  --glass-border-strong: rgba(214, 189, 255, 0.28);
  --glass-highlight: rgba(255, 255, 255, 0.14);
  --glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void-900);
  color: var(--fog-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--void-800);
  color: var(--fog-100);
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.nav-shell,
.hero-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  background: var(--void-900);
  color: var(--fog-100);
}

.section-light {
  background: var(--void-900);
  color: var(--fog-100);
}

section {
  scroll-margin-top: 92px;
  padding: 84px 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: capitalize;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 650;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.lead {
  max-width: 640px;
  color: var(--fog-300);
  font-size: 19px;
  line-height: 1.58;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-light .eyebrow {
  color: var(--signal-400);
}

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

.section-heading p {
  color: inherit;
}

.section-light .section-heading > p:not(.eyebrow),
.section-light p {
  color: var(--fog-300);
}

.section-dark .section-heading > p:not(.eyebrow),
.section-dark p {
  color: var(--fog-300);
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 12px 32px rgba(143, 77, 255, 0.24);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 14px;
}

.btn-secondary,
.btn-outline {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fog-100);
  box-shadow: none;
}

.btn-outline {
  color: var(--fog-100);
  background: var(--void-850);
}

.btn-dark {
  background: var(--void-950);
  color: var(--fog-100);
  box-shadow: none;
}

.text-link {
  color: var(--signal-400);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
  font-family: var(--font-mono);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 0;
  background: transparent;
  padding: 18px 0 0;
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: 56px;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(185, 193, 206, 0.12);
  padding: 0 0 14px;
}

.brand,
.nav-menu,
.nav-action,
.nav-toggle {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  align-items: center;
  min-width: 206px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 184px;
  height: 48px;
  place-items: center;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark span {
  display: none;
}

.brand-copy {
  display: none;
  color: var(--fog-100);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--signal-300);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  flex: 1 1 auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--fog-300);
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--signal-400), transparent);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.nav-menu a:hover {
  color: var(--fog-100);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-icon-wrap {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 10, 15, 0.5);
  padding: 4px;
}

.nav-menu .language-switcher a {
  min-width: 34px;
  justify-content: center;
  border-radius: 999px;
  color: var(--fog-500);
  padding: 8px 9px;
  font-size: 10px;
  line-height: 1;
}

.nav-menu .language-switcher a::after {
  display: none;
}

.nav-menu .language-switcher a:hover,
.nav-menu .language-switcher a[aria-current="page"] {
  background: rgba(143, 77, 255, 0.2);
  color: var(--fog-100);
  box-shadow: inset 0 0 0 1px rgba(214, 189, 255, 0.18);
}

.nav-action {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: end;
}

.nav-action .btn-small {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 10px;
  padding: 14px 18px;
  white-space: nowrap;
}

.nav-action .btn-small svg {
  width: 15px;
  height: 15px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(900px 540px at 78% 12%, rgba(128, 62, 255, 0.22), transparent 64%),
    radial-gradient(900px 500px at 18% 0%, #131926, var(--void-900) 58%, var(--void-950));
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(139, 149, 167, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 118px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 28px 0 26px;
}

.proof-bar {
  display: grid;
  width: min(100%, 640px);
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: rgba(16, 20, 28, 0.62);
}

.proof-bar div {
  padding: 14px 18px;
}

.proof-bar div + div {
  border-left: 1px solid var(--border-subtle);
}

.proof-bar dt {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.proof-bar dd {
  margin: 6px 0 0;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 12px;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 560px;
  border-left: 1px solid rgba(185, 193, 206, 0.12);
}

.hero-media img {
  width: 100%;
  height: 584px;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.98) contrast(1.04);
  mask-image: linear-gradient(90deg, transparent 0, black 18%, black 90%, transparent 100%);
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(185, 193, 206, 0.12);
  border-bottom: 1px solid rgba(185, 193, 206, 0.12);
  background: var(--void-950);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 14px 0;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 12px;
  animation: ticker 32s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  text-transform: uppercase;
}

.ticker span::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal-500);
  content: "";
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.closing-card {
  padding: 84px 0 96px;
  background:
    radial-gradient(740px 300px at 50% 100%, rgba(143, 77, 255, 0.18), transparent 70%),
    var(--void-900);
}

.hero-card {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(214, 189, 255, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(520px 220px at 50% 100%, rgba(255, 255, 255, 0.2), transparent 72%),
    radial-gradient(rgba(10, 6, 20, 0.15) 1px, transparent 1px),
    linear-gradient(135deg, #cbb3ff 0%, #9b63ff 42%, #7b38ee 100%);
  background-size: auto, 18px 18px, auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), 0 0 70px rgba(143, 77, 255, 0.2);
  color: #08050f;
  isolation: isolate;
}

.hero-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%, rgba(0, 0, 0, 0.08));
  opacity: 0.64;
  content: "";
}

.hero-card::after {
  position: absolute;
  right: -6%;
  bottom: -18%;
  left: -6%;
  color: rgba(8, 5, 15, 0.08);
  font-family: var(--font-display);
  font-size: clamp(96px, 16vw, 220px);
  font-weight: 800;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  content: "CRITICAL";
}

.hero-card .hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 780px;
  justify-items: center;
  padding: 80px 24px 96px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 28px;
  border: 1px solid rgba(8, 5, 15, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 28px rgba(8, 5, 15, 0.12);
  color: rgba(8, 5, 15, 0.74);
  padding: 6px 8px 6px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-pill span {
  border-radius: 999px;
  background: #08050f;
  color: #fff;
  padding: 8px 11px;
}

.hero-pill strong {
  color: #08050f;
  font-weight: 800;
}

.hero-pill a {
  border-left: 1px solid rgba(8, 5, 15, 0.22);
  color: #08050f;
  padding-left: 10px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-card h1,
.hero-card h2 {
  max-width: 960px;
  margin-bottom: 22px;
  color: #08050f;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 0.98;
}

.hero-card h2 .title-line {
  display: block;
  white-space: nowrap;
}

.hero-card .lead {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(8, 5, 15, 0.72);
  font-size: 19px;
}

.hero-card .hero-actions {
  margin: 30px 0 0;
}

.btn-hero-card {
  border: 0;
  border-radius: 999px;
  background: #08050f;
  box-shadow: 0 22px 46px rgba(8, 5, 15, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
  gap: 14px;
  min-height: 58px;
  padding: 17px 18px 17px 28px;
}

.btn-hero-card svg {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--signal-500);
  color: #fff;
  padding: 7px;
  stroke-width: 1.8;
}

.btn-hero-card:hover {
  background: #151021;
  color: #fff;
  transform: translateY(-2px);
}

.card-float {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.86);
  transform: rotate(var(--tilt, -8deg));
  animation: card-float 5.5s ease-in-out infinite alternate;
}

.card-float svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
}

.card-float-a { top: 17%; left: 7%; --tilt: -9deg; }
.card-float-b { top: 26%; left: 23%; --tilt: 7deg; animation-delay: 400ms; }
.card-float-c { top: 20%; right: 26%; --tilt: -13deg; animation-delay: 900ms; }
.card-float-d { bottom: 31%; left: 13%; --tilt: 8deg; animation-delay: 1200ms; }
.card-float-e { right: 16%; bottom: 28%; --tilt: -8deg; animation-delay: 600ms; }

.hero-card .ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  border-top: 1px solid rgba(8, 5, 15, 0.16);
  border-bottom: 0;
  background: rgba(123, 56, 238, 0.3);
}

.hero-card .ticker div {
  color: rgba(8, 5, 15, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.hero-card .ticker span::after {
  background: rgba(8, 5, 15, 0.32);
}

@keyframes card-float {
  from {
    transform: translateY(-7px) rotate(var(--tilt, -8deg));
  }
  to {
    transform: translateY(8px) rotate(calc(var(--tilt, -8deg) * -1));
  }
}

.pain-grid,
.benefit-grid,
.plan-grid {
  display: grid;
  gap: 18px;
}

.pain {
  padding-top: 56px;
}

.pain-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

.pain-grid article,
.benefit-grid article,
.plan-card {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--surface-card);
}

.pain-grid article {
  min-height: 250px;
  padding: 26px;
}

.pain-grid i {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 42%, color-mix(in oklab, var(--signal-600) 55%, transparent) 43%, transparent 58%),
    radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--pulse-600) 22%, transparent), transparent 58%);
}

.turning-line {
  max-width: 820px;
  margin: 44px auto 0;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
}

.opportunity {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 420px at 82% 22%, rgba(143, 77, 255, 0.18), transparent 66%),
    radial-gradient(680px 380px at 72% 76%, rgba(79, 209, 219, 0.1), transparent 64%),
    linear-gradient(180deg, var(--void-950), var(--void-900)),
    var(--void-950);
}

.opportunity::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(185, 193, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 193, 206, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
  content: "";
}

.opportunity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: 72px;
  align-items: center;
}

.opportunity-heading h2 {
  max-width: 620px;
}

.opportunity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.opportunity-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 20, 28, 0.72);
  color: var(--fog-300);
  padding: 9px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.opportunity-tags svg {
  width: 16px;
  height: 16px;
  color: var(--signal-300);
}

.opportunity-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 193, 206, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(23, 29, 39, 0.82), rgba(8, 10, 15, 0.96)),
    var(--void-850);
  padding: 30px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.opportunity-copy::before {
  position: absolute;
  top: -34%;
  right: -18%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 77, 255, 0.28), transparent 64%);
  content: "";
}

.opportunity-copy p,
.signal-panel {
  position: relative;
  z-index: 1;
}

.opportunity-copy p {
  margin-top: 0;
}

.opportunity strong {
  color: var(--fog-100);
}

.signal-panel {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  border-top: 1px solid rgba(185, 193, 206, 0.12);
  padding-top: 24px;
}

.signal-panel-header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.signal-panel-header span,
.signal-row span {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.signal-panel-header strong {
  color: var(--signal-300);
  font-size: 14px;
}

.signal-row {
  display: grid;
  grid-template-columns: minmax(128px, 0.48fr) 1fr;
  gap: 16px;
  align-items: center;
}

.signal-meter {
  position: relative;
  overflow: hidden;
  height: 10px;
  border: 1px solid rgba(185, 193, 206, 0.12);
  border-radius: 999px;
  background: rgba(2, 4, 9, 0.72);
}

.signal-meter i {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal-700), var(--signal-500), var(--pulse-400));
  box-shadow: 0 0 22px rgba(143, 77, 255, 0.48);
  animation: meter-flow 3.4s ease-in-out infinite;
}

.signal-graph {
  position: absolute;
  right: 8%;
  bottom: 22px;
  display: flex;
  height: 96px;
  gap: 9px;
  align-items: end;
  opacity: 0.42;
}

.signal-graph span {
  width: 8px;
  border-radius: 999px 999px 0 0;
  background: var(--signal-500);
  box-shadow: var(--shadow-glow);
}

.signal-graph span:nth-child(1) { height: 28px; }
.signal-graph span:nth-child(2) { height: 54px; background: var(--pulse-500); }
.signal-graph span:nth-child(3) { height: 38px; }
.signal-graph span:nth-child(4) { height: 78px; background: var(--pulse-500); }
.signal-graph span:nth-child(5) { height: 62px; }
.signal-graph span:nth-child(6) { height: 92px; background: var(--pulse-500); }

.platform.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 14% 16%, rgba(143, 77, 255, 0.18), transparent 66%),
    linear-gradient(180deg, var(--void-900), var(--void-950));
}

.platform::after {
  position: absolute;
  top: 12%;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(185, 141, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(143, 77, 255, 0.08);
  content: "";
}

.platform-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: 76px;
  align-items: center;
}

.platform .platform-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(16, 20, 28, 0.92), rgba(7, 9, 13, 0.96)),
    var(--void-850);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.platform-panel::before {
  position: absolute;
  top: 86px;
  bottom: 86px;
  left: 47px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(185, 141, 255, 0.54), rgba(79, 209, 219, 0.28), transparent);
  content: "";
}

.platform-panel-top,
.platform-panel-foot {
  position: relative;
  z-index: 1;
}

.platform-panel-top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(185, 193, 206, 0.12);
  padding: 20px 22px;
}

.platform-panel-top span,
.platform-panel-foot span {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.platform-panel-top strong {
  color: var(--fog-100);
  font-size: 15px;
}

.panel-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 22px;
}

.panel-row + .panel-row {
  border-top: 1px solid var(--border-subtle);
}

.panel-row span {
  color: var(--signal-400);
  font-family: var(--font-mono);
  font-size: 12px;
}

.panel-row > svg {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 24%, rgba(185, 141, 255, 0.22), transparent 58%),
    rgba(18, 14, 30, 0.82);
  color: var(--signal-300);
  padding: 13px;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.panel-row:hover > svg,
.panel-row.active > svg {
  transform: rotate(-4deg) scale(1.04);
  border-color: rgba(185, 141, 255, 0.48);
  background:
    radial-gradient(circle at 30% 24%, rgba(185, 141, 255, 0.34), transparent 58%),
    rgba(37, 22, 62, 0.92);
}

.panel-row small {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 12px;
}

.platform .panel-row.active {
  background:
    linear-gradient(90deg, rgba(143, 77, 255, 0.12), transparent 64%),
    var(--void-950);
}

.platform-panel-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(185, 193, 206, 0.12);
  background: rgba(185, 193, 206, 0.08);
}

.platform-panel-foot span {
  display: grid;
  min-height: 48px;
  place-items: center;
  background: rgba(7, 9, 13, 0.88);
  color: var(--fog-300);
}

.benefits {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 18% 10%, rgba(143, 77, 255, 0.18), transparent 66%),
    radial-gradient(620px 360px at 92% 62%, rgba(79, 209, 219, 0.08), transparent 68%),
    linear-gradient(180deg, var(--void-900), var(--void-950));
}

.benefits::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(185, 193, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 193, 206, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 84%, transparent);
  content: "";
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.benefits-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 14px;
  background: rgba(7, 9, 13, 0.72);
}

.benefits-metrics span {
  display: grid;
  gap: 4px;
  min-height: 96px;
  align-content: center;
  padding: 16px;
}

.benefits-metrics span + span {
  border-left: 1px solid rgba(185, 193, 206, 0.1);
}

.benefits-metrics strong {
  color: var(--signal-300);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.benefits-metrics small {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.benefit-grid article {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid rgba(185, 193, 206, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(16, 20, 28, 0.9), rgba(8, 10, 15, 0.96)),
    var(--void-850);
  padding: 24px;
  isolation: isolate;
}

.benefit-grid article:first-child {
  min-height: 184px;
  background:
    radial-gradient(360px 220px at 24% 22%, rgba(143, 77, 255, 0.28), transparent 64%),
    linear-gradient(145deg, rgba(24, 18, 42, 0.95), rgba(7, 9, 13, 0.98));
}

.benefit-grid article::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-500);
  box-shadow: var(--shadow-glow);
  content: "";
}

.benefit-grid article::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(185, 141, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  content: attr(data-benefit);
}

.benefit-grid h3 {
  margin-top: 26px;
  color: var(--fog-100);
}

.benefit-grid p {
  max-width: 320px;
  color: var(--fog-400);
}

.benefit-grid article:first-child h3 {
  margin-top: 26px;
  font-size: 22px;
}

.benefit-grid article:first-child p {
  color: var(--fog-300);
  font-size: 15px;
}

.benefit-grid article:first-child > svg {
  width: 28px;
  height: 28px;
}

.course-overview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 360px at 18% 50%, rgba(143, 77, 255, 0.18), transparent 70%),
    var(--void-900);
}

.course-overview-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
  perspective: 1200px;
}

.course-cover {
  --cover-tilt-x: 2deg;
  --cover-tilt-y: -7deg;
  --cover-lift: 0px;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(214, 189, 255, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(360px 220px at 70% 22%, rgba(214, 189, 255, 0.28), transparent 62%),
    radial-gradient(rgba(214, 189, 255, 0.18) 1px, transparent 1px),
    linear-gradient(145deg, rgba(23, 18, 42, 0.92), rgba(7, 9, 13, 0.96));
  background-size: auto, 18px 18px, auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 28px;
  transform: perspective(1000px) rotateY(var(--cover-tilt-y)) rotateX(var(--cover-tilt-x)) translateY(var(--cover-lift));
  transform-origin: center;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  will-change: transform;
}

.course-cover.reveal,
.course-cover.reveal.is-visible {
  transform: perspective(1000px) rotateY(var(--cover-tilt-y)) rotateX(var(--cover-tilt-x)) translateY(var(--cover-lift));
  transition: opacity 620ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.course-cover::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(180deg, transparent 58%, rgba(143, 77, 255, 0.18));
  content: "";
  opacity: 0.72;
}

.course-cover::after {
  position: absolute;
  right: -34px;
  bottom: 28px;
  color: rgba(214, 189, 255, 0.08);
  font-family: var(--font-display);
  font-size: 118px;
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  content: "Assets";
}

.course-cover-art {
  display: grid;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  place-items: center;
  background:
    radial-gradient(420px 280px at 50% 4%, rgba(143, 77, 255, 0.24), transparent 68%),
    linear-gradient(145deg, rgba(20, 14, 38, 0.92), rgba(7, 9, 13, 0.98));
  padding: 14px;
}

.course-cover-art::before,
.course-cover-art::after {
  display: none;
}

.course-cover-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.course-cover-top,
.course-cover-body,
.course-cover-meta {
  position: relative;
  z-index: 1;
}

.course-cover.is-pointer-near {
  border-color: rgba(214, 189, 255, 0.42);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.42),
    0 0 74px rgba(143, 77, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.course-cover-top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fog-100);
  font-family: var(--font-display);
  font-weight: 700;
}

.course-cover-top img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 0 28px rgba(143, 77, 255, 0.34);
}

.course-cover-body {
  display: grid;
  min-height: 300px;
  align-content: center;
}

.course-cover-body p {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 189, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--signal-300);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.course-cover-body h2 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.92;
}

.course-cover-body span {
  max-width: 280px;
  color: var(--fog-300);
  font-size: 15px;
}

.course-cover-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 10, 15, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.course-cover-meta span {
  display: grid;
  gap: 3px;
  min-height: 76px;
  align-content: center;
  padding: 14px;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.course-cover-meta span + span {
  border-left: 1px solid rgba(214, 189, 255, 0.12);
}

.course-cover-meta strong {
  color: var(--fog-100);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
}

.course-copy {
  display: grid;
  gap: 28px;
}

.course-copy .section-heading p:not(.eyebrow) {
  max-width: 680px;
}

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

.course-copy-grid article {
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background:
    linear-gradient(145deg, var(--glass-highlight), transparent 34%),
    linear-gradient(145deg, var(--glass-bg-strong), rgba(7, 9, 13, 0.52));
  box-shadow: var(--glass-shadow);
  padding: 22px;
  backdrop-filter: blur(22px) saturate(1.24);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
}

.course-copy-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--signal-300);
  stroke-width: 1.5;
}

.course-copy-grid h3 {
  font-size: 18px;
}

.course-copy-grid p {
  margin-bottom: 0;
  color: var(--fog-400);
}

.track-intro {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
}


.track-phases {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.track-phases article {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(185, 193, 206, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(16, 20, 28, 0.9), rgba(7, 9, 13, 0.96)),
    var(--void-850);
  padding: 20px;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.track-phases article:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 141, 255, 0.42);
  background: rgba(28, 22, 44, 0.82);
}

.track-phases svg {
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
  color: var(--signal-300);
  stroke-width: 1.5;
}

.track-phases span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(185, 141, 255, 0.62);
  font-family: var(--font-mono);
  font-size: 11px;
}

.track-phases h3 {
  margin-bottom: 8px;
  color: var(--fog-100);
  font-size: 18px;
}

.track-phases p {
  margin: 0;
  color: var(--fog-400);
  font-size: 14px;
  line-height: 1.45;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: track;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--border-subtle);
}

.track-list li {
  min-height: 112px;
  background: var(--void-850);
  padding: 18px;
  color: var(--fog-100);
  font-weight: 650;
  line-height: 1.25;
  counter-increment: track;
}

.track-list li::before {
  display: block;
  margin-bottom: 16px;
  color: var(--signal-700);
  font-family: var(--font-mono);
  font-size: 12px;
  content: "Module " counter(track, decimal-leading-zero);
}

.track-note {
  margin: 22px 0 0;
  color: var(--ink-900);
  font-weight: 700;
}

.comparison {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 360px at 50% 0%, rgba(143, 77, 255, 0.16), transparent 64%),
    linear-gradient(180deg, var(--void-950), var(--void-900));
}

.comparison::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(185, 141, 255, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 78%, transparent);
  content: "";
}

.comparison .container {
  position: relative;
  z-index: 1;
}

.comparison-board {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 20, 28, 0.92), rgba(7, 9, 13, 0.96)),
    var(--void-850);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
}

.comparison-orbit {
  position: absolute;
  top: -116px;
  right: -88px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(185, 141, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(143, 77, 255, 0.12);
}

.comparison-orbit::before {
  position: absolute;
  bottom: 54px;
  left: 32px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pulse-400);
  box-shadow: 0 0 24px rgba(79, 209, 219, 0.72);
  content: "";
  animation: dot-breathe 2.9s ease-in-out infinite;
}

.comparison-table {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(185, 193, 206, 0.12);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  min-height: 70px;
  transition: background 180ms var(--ease-out);
}

.table-row + .table-row {
  border-top: 1px solid rgba(185, 193, 206, 0.1);
}

.table-row:not(.table-head):hover {
  background: rgba(185, 141, 255, 0.045);
}

.table-row > * {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px 22px;
}

.table-row > * + * {
  border-left: 1px solid rgba(185, 193, 206, 0.1);
}

.table-row span {
  color: var(--fog-300);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-row p {
  color: var(--fog-500);
  font-weight: 650;
}

.table-row p:last-child {
  color: var(--fog-100);
  background:
    linear-gradient(90deg, rgba(143, 77, 255, 0.16), rgba(79, 209, 219, 0.035)),
    rgba(143, 77, 255, 0.06);
}

.table-head {
  min-height: 64px;
  background:
    linear-gradient(90deg, rgba(143, 77, 255, 0.12), transparent 72%),
    rgba(7, 9, 13, 0.86);
  color: var(--fog-100);
}

.table-head strong {
  color: var(--fog-100);
}

.table-row svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--fog-700);
  stroke-width: 1.5;
}

.table-row p:last-child svg,
.table-head strong:last-child svg {
  color: var(--signal-300);
  filter: drop-shadow(0 0 10px rgba(143, 77, 255, 0.34));
}

.table-row p:nth-child(2) svg,
.table-head strong:nth-child(2) svg {
  color: var(--fog-500);
}

.comparison-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(185, 193, 206, 0.09);
}

.comparison-summary span {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(7, 9, 13, 0.88);
  color: var(--fog-300);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.comparison-summary svg {
  width: 17px;
  height: 17px;
  color: var(--signal-300);
  stroke-width: 1.5;
}

.institute p {
  font-size: 17px;
}

.tag-cloud,
.community-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud {
  margin-top: 28px;
}

.tag-cloud span,
.community-rail span {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.community {
  background:
    radial-gradient(700px 380px at 86% 42%, rgba(128, 62, 255, 0.18), transparent 68%),
    var(--void-900);
}

.quote-card {
  margin: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--void-850);
  padding: 34px;
}

.quote-card blockquote {
  margin: 0;
  color: var(--fog-100);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.28;
}

.quote-card figcaption {
  margin-top: 24px;
  color: var(--signal-400);
  font-family: var(--font-mono);
  font-size: 12px;
}

.community-rail {
  margin-top: 44px;
  color: var(--fog-300);
}

.video-feedbacks {
  position: relative;
  overflow: hidden;
  padding: 112px 0 78px;
  background:
    linear-gradient(115deg, rgba(143, 77, 255, 0.18), transparent 34%),
    linear-gradient(245deg, rgba(79, 209, 219, 0.09), transparent 38%),
    linear-gradient(180deg, var(--void-950), var(--void-900));
}

.video-feedbacks::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(185, 193, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 193, 206, 0.035) 1px, transparent 1px),
    linear-gradient(125deg, transparent 0 46%, rgba(185, 141, 255, 0.16) 46.2%, transparent 46.6% 100%);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  content: "";
}

.video-feedbacks .container {
  position: relative;
  z-index: 1;
}

.feedbacks-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.feedbacks-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 16px;
  background: rgba(12, 15, 24, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.feedbacks-proof span {
  display: grid;
  min-height: 92px;
  align-content: center;
  padding: 18px;
}

.feedbacks-proof span + span {
  border-left: 1px solid rgba(214, 189, 255, 0.12);
}

.feedbacks-proof strong {
  color: var(--fog-100);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.feedbacks-proof small {
  margin-top: 8px;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.feedbacks-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.68fr);
  gap: 18px;
  align-items: stretch;
}

.video-featured,
.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 189, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(18, 21, 32, 0.88), rgba(7, 9, 13, 0.96)),
    var(--void-850);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.video-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.72fr);
  border-radius: 22px;
}

.video-frame {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(260px 180px at 68% 24%, rgba(214, 189, 255, 0.34), transparent 72%),
    radial-gradient(rgba(214, 189, 255, 0.16) 1px, transparent 1px),
    linear-gradient(145deg, rgba(33, 22, 57, 0.98), rgba(8, 10, 15, 0.98));
  background-size: auto, 18px 18px, auto;
  isolation: isolate;
}

.video-frame::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 54%, rgba(143, 77, 255, 0.18));
  content: "";
}

.video-frame::after {
  position: absolute;
  right: -8%;
  bottom: -18%;
  color: rgba(214, 189, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(90px, 11vw, 150px);
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
  content: "Play";
}

.video-frame-large {
  min-height: 430px;
}

.video-tag,
.video-play,
.video-signal,
.video-meta {
  position: absolute;
  z-index: 2;
}

.video-tag {
  top: 22px;
  left: 22px;
  border: 1px solid rgba(214, 189, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 10, 15, 0.46);
  color: var(--signal-300);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-play {
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.28), transparent 42%),
    var(--signal-500);
  box-shadow: 0 20px 58px rgba(143, 77, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: var(--fog-100);
  cursor: pointer;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 24px 70px rgba(143, 77, 255, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.video-play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
  fill: currentColor;
  stroke-width: 1.4;
}

.video-signal {
  top: 28px;
  right: 28px;
  display: flex;
  gap: 7px;
  align-items: end;
}

.video-signal span {
  width: 7px;
  border-radius: 999px;
  background: var(--signal-300);
  box-shadow: 0 0 18px rgba(185, 141, 255, 0.6);
}

.video-signal span:nth-child(1) { height: 18px; opacity: 0.56; }
.video-signal span:nth-child(2) { height: 31px; opacity: 0.76; }
.video-signal span:nth-child(3) { height: 44px; }

.video-meta {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 10, 15, 0.58);
  color: var(--fog-300);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.video-meta strong {
  color: var(--signal-300);
}

.video-copy {
  display: grid;
  align-content: center;
  padding: 34px;
}

.video-copy > span {
  margin-bottom: 18px;
  color: var(--signal-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.video-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.08;
}

.video-copy p {
  color: var(--fog-300);
}

.video-feedback-list {
  display: grid;
  gap: 18px;
}

.video-card {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 0;
  min-height: 132px;
  border-radius: 18px;
}

.video-card .video-frame {
  min-height: 132px;
}

.video-card .video-play {
  width: 50px;
  height: 50px;
}

.video-card .video-play svg {
  width: 21px;
  height: 21px;
}

.video-card .video-meta {
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 9px;
  font-size: 9px;
}

.video-card h3 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 22px;
  font-size: 18px;
  line-height: 1.2;
}

.feedback-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feedback-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 189, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 15, 24, 0.58);
  color: var(--fog-300);
  padding: 10px 13px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.feedback-marquee span::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal-500);
  box-shadow: 0 0 16px rgba(143, 77, 255, 0.7);
  content: "";
}

.student-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(620px 320px at 22% 4%, rgba(143, 77, 255, 0.2), transparent 68%),
    linear-gradient(145deg, rgba(12, 15, 24, 0.74), rgba(7, 9, 13, 0.96));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.carousel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(214, 189, 255, 0.12);
  padding: 18px;
}

.carousel-top > div:first-child {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.carousel-top strong {
  color: var(--signal-300);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button,
.carousel-dots button {
  border: 1px solid rgba(214, 189, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fog-100);
  cursor: pointer;
}

.carousel-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 189, 255, 0.34);
  background: rgba(143, 77, 255, 0.18);
}

.carousel-controls svg {
  width: 18px;
  height: 18px;
}

.student-carousel-viewport {
  overflow: hidden;
}

.student-carousel-track {
  display: flex;
  transform: translateX(0);
  transition: transform 520ms var(--ease-out);
  will-change: transform;
}

.student-slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.66fr);
  min-width: 0;
  opacity: 0.48;
  transition: opacity 260ms var(--ease-out);
}

.student-slide.is-active {
  opacity: 1;
}

.student-slide .video-frame {
  min-height: 500px;
}

.student-story {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.student-story > span {
  margin-bottom: 18px;
  color: var(--signal-300);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.student-story h3 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
}

.student-story p {
  max-width: 460px;
  color: var(--fog-300);
}

.student-profile {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  border-top: 1px solid rgba(214, 189, 255, 0.12);
  padding-top: 20px;
}

.student-profile strong {
  color: var(--fog-100);
}

.student-profile small {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.student-profile::before {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(214, 189, 255, 0.18);
  border-radius: 50%;
  background: rgba(143, 77, 255, 0.16);
  color: var(--signal-300);
  font-family: var(--font-display);
  font-weight: 800;
  content: "Q";
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(214, 189, 255, 0.12);
  padding: 16px;
}

.carousel-dots button {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  transition: width 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.carousel-dots button.is-active {
  width: 54px;
  border-color: rgba(214, 189, 255, 0.4);
  background: var(--signal-500);
}

.feedbacks-minimal-head {
  position: relative;
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 38px;
  align-items: end;
  margin: 0 auto 28px;
  text-align: left;
}

.feedbacks-minimal-head .eyebrow {
  grid-column: 1;
  justify-content: flex-start;
}

.feedbacks-minimal-head h2 {
  grid-column: 1;
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
}

.feedbacks-minimal-head > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 360px;
  margin: 0 0 6px auto;
  color: var(--fog-300);
  font-size: 17px;
}

.reels-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.reels-carousel::before {
  position: absolute;
  top: 27%;
  right: 2%;
  left: 2%;
  z-index: -1;
  height: 54%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 77, 255, 0.24), transparent 54%),
    linear-gradient(90deg, transparent, rgba(79, 209, 219, 0.12), rgba(143, 77, 255, 0.18), transparent);
  filter: blur(24px);
  content: "";
}

.reels-carousel::after {
  position: absolute;
  top: 50%;
  right: 4%;
  left: 4%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 189, 255, 0.52), rgba(79, 209, 219, 0.34), transparent);
  content: "";
}

.reels-carousel .carousel-top {
  position: absolute;
  z-index: 4;
  top: 36px;
  right: 6px;
  left: 6px;
  border-bottom: 0;
  padding: 0;
  pointer-events: none;
}

.reels-carousel .carousel-count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(214, 189, 255, 0.26);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.58);
  color: var(--signal-300);
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reels-carousel .carousel-controls {
  pointer-events: auto;
}

.reels-carousel .carousel-controls button {
  width: 38px;
  height: 38px;
  border-color: rgba(214, 189, 255, 0.28);
  border-radius: 50%;
  background: rgba(7, 9, 13, 0.58);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reels-carousel .student-carousel-viewport {
  overflow: hidden;
  padding: 34px 4px 42px;
}

.reels-carousel .student-carousel-track {
  gap: 20px;
}

.reels-carousel .student-slide {
  display: block;
  flex: 0 0 calc((100% - 40px) / 3);
  opacity: 1;
  transform: translateY(26px) scale(0.92);
  transition: transform 280ms var(--ease-out), filter 280ms var(--ease-out);
  filter: saturate(0.82) brightness(0.78);
}

.reels-carousel .student-slide.is-featured {
  transform: translateY(-18px) scale(1.04);
  filter: saturate(1.12) brightness(1.04);
}

.reels-carousel .student-slide:hover {
  transform: translateY(-10px) scale(1.02);
  filter: saturate(1.08) brightness(1.02);
}

.reels-carousel .reel-video-frame {
  aspect-ratio: 9 / 16;
  width: 100%;
  min-height: 0;
  border: 1px solid rgba(214, 189, 255, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(214, 189, 255, 0.22), transparent 28%),
    radial-gradient(240px 320px at 50% -6%, rgba(143, 77, 255, 0.42), transparent 62%),
    radial-gradient(rgba(214, 189, 255, 0.16) 1px, transparent 1px),
    linear-gradient(145deg, rgba(35, 25, 62, 0.98), rgba(8, 10, 15, 0.98));
  background-size: auto, auto, 17px 17px, auto;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.reels-carousel .reel-video-frame::after {
  content: "";
}

.reels-carousel .student-slide.is-featured .reel-video-frame,
.reels-carousel .student-slide:hover .reel-video-frame {
  border-color: rgba(214, 189, 255, 0.42);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(143, 77, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.reels-carousel .video-play {
  width: 68px;
  height: 68px;
}

.reels-carousel .video-signal {
  top: auto;
  right: 24px;
  bottom: 24px;
}

.reels-carousel .carousel-dots {
  border-top: 0;
  padding: 4px 16px 18px;
}

.plans {
  background: var(--void-900);
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.plan-card.featured {
  border-color: var(--signal-500);
  box-shadow: 0 20px 60px rgba(143, 77, 255, 0.24);
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: -13px;
  left: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-purpose {
  min-height: 50px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  color: var(--ink-600);
  font-family: var(--font-mono);
  font-size: 13px;
}

.price span {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-600);
  font-size: 14px;
}

.plan-card li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok-600);
  content: "";
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-microcopy {
  margin: 28px 0 0;
  color: var(--ink-600);
  text-align: center;
}

.guarantee {
  background: var(--void-950);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 54px;
  align-items: center;
}

.seal {
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  border: 1px dashed rgba(158, 91, 255, 0.8);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(128, 62, 255, 0.22), transparent 58%),
    var(--void-850);
  color: var(--fog-100);
  text-align: center;
}

.seal strong {
  display: block;
  margin-bottom: -38px;
  color: var(--signal-400);
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 1;
}

.seal span {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--void-850);
}

.accordion details + details {
  border-top: 1px solid var(--border-subtle);
}

.accordion summary {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink-900);
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  color: var(--signal-700);
  font-family: var(--font-mono);
  content: "+";
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-600);
}

.final-cta {
  padding: 56px 0;
  background: var(--void-950);
}

.flood {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(620px 200px at 50% 112%, rgba(255, 240, 190, 0.82), transparent 72%),
    var(--surface-flood);
  color: var(--text-on-flood);
  text-align: center;
}

.flood::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 9, 13, 0.15) 1px, transparent 1px);
  background-size: 17px 17px;
  content: "";
}

.flood-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 84px 28px;
}

.flood h2 {
  margin-bottom: 18px;
  color: var(--void-950);
  font-size: 48px;
}

.flood p {
  color: color-mix(in oklab, var(--void-950) 78%, transparent);
  font-size: 15px;
}

.btn-flood {
  margin-top: 12px;
  background: var(--void-950);
  color: var(--fog-100);
  box-shadow: 0 12px 32px rgba(7, 9, 13, 0.18);
}

.flood small {
  display: block;
  margin-top: 18px;
  color: color-mix(in oklab, var(--void-950) 70%, transparent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.footer {
  border-top: 1px solid rgba(185, 193, 206, 0.1);
  background: var(--void-950);
  color: var(--fog-300);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 54px;
}

.footer img {
  width: min(228px, 100%);
  height: auto;
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--fog-100);
  font-size: 15px;
}

.footer p {
  max-width: 420px;
  color: var(--fog-500);
}

.footer nav {
  display: grid;
  gap: 8px;
}

.footer nav a {
  color: var(--fog-300);
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  border-top: 1px solid rgba(185, 193, 206, 0.08);
  padding-top: 22px;
  color: var(--fog-700);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* Qualifica dark-only theme override */
.section-light,
.pain,
.platform,
.track,
.institute,
.plans,
.faq {
  background: var(--void-900);
  color: var(--fog-100);
}

.pain-grid article,
.platform-panel,
.track-list li,
.plan-card,
.accordion,
.tag-cloud span {
  border-color: rgba(185, 193, 206, 0.14);
  background: var(--void-850);
  color: var(--fog-100);
}

.pain-grid h3,
.track-list li,
.plan-card h3,
.accordion summary,
.price span,
.turning-line,
.track-note {
  color: var(--fog-100);
}

.pain-grid p,
.panel-row small,
.plan-card li,
.plan-purpose,
.price,
.plan-microcopy,
.accordion details p,
.institute p {
  color: var(--fog-300);
}

.platform-panel {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.panel-row + .panel-row,
.accordion details + details {
  border-color: rgba(185, 193, 206, 0.12);
}

.panel-row.active,
.plans,
.track-list {
  background: var(--void-950);
}

.track-list {
  border-color: rgba(185, 193, 206, 0.14);
}

.comparison .table-row p:last-child {
  background: rgba(143, 77, 255, 0.08);
}

.plan-card.featured {
  border-color: var(--signal-500);
  box-shadow: 0 20px 60px rgba(143, 77, 255, 0.24);
}

.popular,
.btn {
  background: var(--signal-500);
}

.popular {
  color: var(--fog-100);
}

.accordion summary::after,
.panel-row span,
.track-list li::before,
.text-link,
.tag-cloud span {
  color: var(--signal-400);
}

.final-cta {
  background: var(--void-950);
}

.flood {
  background:
    radial-gradient(620px 200px at 50% 112%, rgba(214, 189, 255, 0.34), transparent 72%),
    var(--surface-flood);
}

.flood h2,
.flood p,
.flood small {
  color: var(--fog-100);
}

.btn-flood {
  background: var(--void-950);
  color: var(--fog-100);
  box-shadow: 0 12px 32px rgba(7, 9, 13, 0.24);
}

@media (max-width: 1060px) {
  section {
    padding: 84px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .nav-shell {
    min-height: 54px;
    justify-content: space-between;
    overflow: visible;
    padding-bottom: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 141, 255, 0.24);
    border-radius: 14px;
    background: rgba(143, 77, 255, 0.12);
    color: var(--fog-100);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
  }

  .nav-menu,
  .nav-action {
    display: none;
  }

  .site-header.menu-open .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    align-items: stretch;
    justify-content: stretch;
    justify-self: stretch;
    overflow: hidden;
    border: 1px solid rgba(214, 189, 255, 0.24);
    border-radius: 22px;
    background:
      radial-gradient(380px 180px at 18% 0%, rgba(143, 77, 255, 0.22), transparent 72%),
      radial-gradient(300px 160px at 100% 96%, rgba(70, 209, 230, 0.1), transparent 70%),
      linear-gradient(180deg, rgba(16, 19, 30, 0.98), rgba(6, 8, 13, 0.98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 12px;
  }

  .site-header.menu-open .nav-menu > a {
    display: grid;
    width: 100%;
    min-height: 56px;
    grid-template-columns: 38px minmax(0, 1fr) 12px;
    gap: 12px;
    align-items: center;
    justify-content: initial;
    border: 1px solid rgba(214, 189, 255, 0.11);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
    color: var(--fog-200);
    padding: 8px 12px 8px 9px;
    text-align: left;
    transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
  }

  .site-header.menu-open .nav-menu > a::after {
    position: static;
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    background: none;
    content: "";
    opacity: 0.48;
    transform: rotate(45deg);
    transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
  }

  .site-header.menu-open .nav-menu > a:hover,
  .site-header.menu-open .nav-menu > a:focus-visible {
    transform: translateX(2px);
    border-color: rgba(185, 141, 255, 0.26);
    background: linear-gradient(135deg, rgba(143, 77, 255, 0.22), rgba(255, 255, 255, 0.035));
    color: var(--fog-100);
  }

  .site-header.menu-open .nav-menu > a:hover::after,
  .site-header.menu-open .nav-menu > a:focus-visible::after {
    opacity: 0.9;
    transform: rotate(45deg) translate(2px, -2px);
  }

  .site-header.menu-open .nav-icon-wrap {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(214, 189, 255, 0.18);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(143, 77, 255, 0.28), rgba(255, 255, 255, 0.055));
    color: var(--signal-300);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .site-header.menu-open .nav-link-icon {
    width: 18px;
    height: 18px;
  }

  .site-header.menu-open .language-switcher {
    display: flex;
    justify-content: center;
    justify-self: center;
    margin-top: 6px;
    border-color: rgba(214, 189, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
    padding: 5px;
  }

  .site-header.menu-open .language-switcher a {
    min-height: 38px;
    justify-content: center;
    padding: 10px 13px;
  }

  .hero-grid,
  .split,
  .opportunity-grid,
  .platform-layout,
  .course-overview-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .course-cover {
    width: min(560px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .hero-grid {
    gap: 18px;
    padding-top: 108px;
  }

  .hero-media {
    min-height: auto;
    border-left: 0;
  }

  .hero-media img {
    height: 460px;
  }

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

  .opportunity-grid,
  .platform-layout {
    gap: 40px;
  }

  .benefits-head {
    grid-template-columns: 1fr;
  }

  .opportunity-heading h2 {
    max-width: 820px;
  }

  .track-list,
  .track-phases {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedbacks-head,
  .feedbacks-stage,
  .video-featured,
  .student-slide {
    grid-template-columns: 1fr;
  }

  .video-featured,
  .student-carousel {
    max-width: 820px;
    margin: 0 auto;
  }

  .reels-carousel {
    max-width: 700px;
  }

  .reels-carousel .student-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .video-feedback-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .container,
  .nav-shell,
  .hero-grid {
    width: min(100% - 32px, 1200px);
  }

  section {
    padding: 56px 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 16px;
  }

  .brand-mark {
    width: 166px;
    height: 44px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
  }

  .hero-actions,
  .track-intro,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .pain-grid,
  .benefit-grid,
  .course-copy-grid,
  .plan-grid,
  .track-list,
  .track-phases,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .course-overview-grid {
    gap: 34px;
  }

  .course-cover {
    min-height: 430px;
    padding: 22px;
  }

  .course-cover-body {
    min-height: 240px;
  }

  .course-cover-body h2 {
    font-size: 44px;
  }

  .course-cover-meta {
    grid-template-columns: 1fr;
  }

  .course-cover-meta span + span {
    border-top: 1px solid rgba(214, 189, 255, 0.12);
    border-left: 0;
  }

  .opportunity-copy {
    padding: 22px;
  }

  .benefits-metrics {
    grid-template-columns: 1fr;
  }

  .benefits-metrics span + span {
    border-top: 1px solid rgba(185, 193, 206, 0.1);
    border-left: 0;
  }

  .benefit-grid article,
  .benefit-grid article:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 184px;
  }

  .benefit-grid article:first-child h3 {
    margin-top: 26px;
    font-size: 22px;
  }

  .benefit-grid article:first-child p {
    font-size: 15px;
  }

  .opportunity-tags {
    margin-top: 22px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signal-graph,
  .platform::after {
    display: none;
  }

  .platform-panel::before {
    left: 40px;
  }

  .platform-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-row {
    grid-template-columns: 44px auto 1fr;
    gap: 12px;
    padding: 18px;
  }

  .panel-row > svg {
    width: 44px;
    height: 44px;
    padding: 12px;
  }

  .panel-row small {
    grid-column: 3;
    justify-self: start;
  }

  .platform-panel-foot {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-bar div + div {
    border-top: 0;
    border-left: 1px solid var(--border-subtle);
  }

  .proof-bar div {
    padding: 12px 10px;
  }

  .proof-bar dt {
    font-size: 24px;
  }

  .proof-bar dd {
    font-size: 11px;
  }

  .hero-grid {
    min-height: 0;
    padding: 42px 0 20px;
  }

  .hero-media {
    display: none;
  }

  .hero-word,
  .floating-stack,
  .flood-tile {
    display: none;
  }

  .ticker {
    display: none;
  }

  .pain {
    padding-top: 24px;
  }

  .track-intro {
    display: flex;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-head span {
    display: none;
  }

  .comparison-board {
    margin-top: 32px;
    border-radius: 14px;
  }

  .comparison-orbit {
    display: none;
  }

  .table-row > * {
    padding: 15px 18px;
  }

  .table-row > * + * {
    border-left: 0;
    border-top: 1px solid var(--border-subtle);
  }

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

  .comparison-summary span {
    min-height: 54px;
    padding: 0 10px;
    text-align: center;
  }

  .plan-card.featured {
    transform: none;
  }

  .quote-card blockquote {
    font-size: 22px;
  }

  .flood {
    border-radius: 16px;
  }

  .flood h2 {
    font-size: 34px;
  }
}

/* Attraction and motion layer */
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 85% 8%, rgba(143, 77, 255, 0.18), transparent 62%),
    radial-gradient(760px 440px at 12% 48%, rgba(79, 209, 219, 0.08), transparent 66%),
    var(--void-900);
  content: "";
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--signal-500), var(--pulse-400), var(--signal-400));
  box-shadow: 0 0 18px rgba(143, 77, 255, 0.85);
}

.site-header {
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.site-header.is-scrolled {
  background: transparent;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  inset: -1px auto -1px -52%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transition: left 520ms var(--ease-out);
}

.btn:hover {
  box-shadow: 0 16px 44px rgba(143, 77, 255, 0.32);
}

.btn:hover::before {
  left: 112%;
}

.hero-card .btn-hero-card {
  border: 0;
  border-radius: 999px;
  background: #08050f;
  box-shadow: 0 22px 46px rgba(8, 5, 15, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-card .btn-hero-card svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--signal-500);
  color: #fff;
  padding: 7px;
  stroke-width: 1.8;
}

.hero-card .btn-hero-card:hover {
  background: #151021;
  color: #fff;
}

.hero::before {
  animation: grid-drift 18s linear infinite;
}

.nav-shell,
.proof-bar,
.benefits-metrics,
.benefit-grid article,
.track-phases article,
.plan-card,
.faq-support,
.faq .accordion,
.footer {
  border-color: var(--glass-border);
  background:
    linear-gradient(145deg, var(--glass-highlight), transparent 34%),
    linear-gradient(145deg, var(--glass-bg-strong), rgba(7, 9, 13, 0.52));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(1.24);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
}

.nav-shell {
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 18px;
  padding: 8px 12px;
}

.site-header {
  padding-top: 12px;
}

.benefits-metrics {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

.benefit-grid article,
.track-phases article,
.plan-card,
.faq-support,
.faq .accordion {
  border-radius: 18px;
}

.benefit-grid article:first-child,
.plan-card.featured,
.faq .accordion details[open] {
  background:
    radial-gradient(340px 220px at 18% 12%, rgba(185, 141, 255, 0.24), transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(22, 18, 36, 0.72), rgba(7, 9, 13, 0.56));
}

.track-phases article:hover,
.benefit-grid article:hover,
.plan-card:hover {
  border-color: var(--glass-border-strong);
  background:
    radial-gradient(280px 190px at 50% 0%, rgba(185, 141, 255, 0.18), transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(24, 19, 39, 0.76), rgba(7, 9, 13, 0.58));
}

.hero-pill,
.card-float {
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.hero-card {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 42%, rgba(185, 141, 255, 0.14) 48%, transparent 56% 100%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  content: "";
  animation: scan-sweep 7s ease-in-out infinite;
}

.energy-canvas,
.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.energy-canvas {
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.hero-scan {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent, rgba(185, 141, 255, 0.07) 50%, transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px);
  mask-image: linear-gradient(90deg, black 0 52%, transparent 84%);
  animation: scan-lines 8s linear infinite;
}

.hero-word {
  position: absolute;
  right: -4vw;
  bottom: 50px;
  z-index: 1;
  max-width: 92vw;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(76px, 12vw, 190px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.04em;
  opacity: 0.16;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(185, 141, 255, 0.54);
  text-transform: uppercase;
  animation: word-drift 12s ease-in-out infinite alternate;
}

.hero-copy {
  z-index: 4;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.proof-bar {
  animation: hero-rise 760ms var(--ease-out) both;
}

.hero-copy h1 { animation-delay: 90ms; }
.hero-copy .lead { animation-delay: 180ms; }
.hero-actions { animation-delay: 270ms; }
.proof-bar { animation-delay: 360ms; }

.hero-media {
  z-index: 3;
  perspective: 1000px;
}

.hero-media img {
  animation: hero-image-drift 8s ease-in-out infinite alternate;
  will-change: transform;
}

.floating-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-tile,
.flood-tile {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(214, 189, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    rgba(18, 12, 32, 0.74);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--signal-300);
  backdrop-filter: blur(10px);
  animation: tile-float 7s ease-in-out infinite alternate;
}

.floating-tile svg,
.flood-tile svg,
.benefit-grid article > svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.tile-ev {
  top: 15%;
  left: 26%;
  transform: rotate(-13deg);
}

.tile-bess {
  top: 30%;
  right: 1%;
  animation-delay: -2s;
  transform: rotate(10deg);
}

.tile-solar {
  right: 20%;
  bottom: 15%;
  animation-delay: -4s;
  transform: rotate(-8deg);
}

.tile-cert {
  bottom: 32%;
  left: 19%;
  animation-delay: -5s;
  transform: rotate(8deg);
}

.pain-grid article,
.benefit-grid article,
.plan-card,
.quote-card,
.platform-panel {
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.pain-grid article:hover,
.benefit-grid article:hover,
.plan-card:hover,
.quote-card:hover,
.platform-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 141, 255, 0.42);
  box-shadow: 0 24px 70px rgba(7, 9, 13, 0.38), 0 0 0 1px rgba(143, 77, 255, 0.12);
}

.benefit-grid article > svg {
  margin-bottom: 24px;
  color: var(--signal-300);
}

.pain-grid i {
  animation: icon-pulse 3.4s ease-in-out infinite;
}

.benefit-grid article::before,
.track-list li::after {
  animation: dot-breathe 2.7s ease-in-out infinite;
}

.benefit-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.benefit-grid article {
  display: flex;
  min-height: 228px;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: span 4;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 18%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(15, 18, 28, 0.88), rgba(6, 8, 12, 0.96));
  padding: 26px;
  box-shadow:
    0 26px 82px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.benefit-grid article:nth-child(1),
.benefit-grid article:nth-child(6) {
  grid-column: span 6;
  min-height: 252px;
}

.benefit-grid article:nth-child(1) { --benefit-accent: var(--signal-400); }
.benefit-grid article:nth-child(2) { --benefit-accent: #4fd1db; }
.benefit-grid article:nth-child(3) { --benefit-accent: #d6bdff; }
.benefit-grid article:nth-child(4) { --benefit-accent: #8f4dff; }
.benefit-grid article:nth-child(5) { --benefit-accent: #9bb7ff; }
.benefit-grid article:nth-child(6) { --benefit-accent: #b98dff; }

.benefit-grid article::before {
  top: 18px;
  right: 18px;
  left: 18px;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 74%, transparent), transparent);
  box-shadow: none;
  animation: none;
}

.benefit-grid article::after {
  top: 22px;
  right: 22px;
  bottom: auto;
  border: 1px solid rgba(214, 189, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 10, 15, 0.5);
  color: color-mix(in oklab, var(--benefit-accent, var(--signal-400)) 84%, white 16%);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.benefit-grid article > svg,
.benefit-grid article:first-child > svg {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid rgba(214, 189, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 24%, color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 42%, transparent), transparent 58%),
    rgba(255, 255, 255, 0.06);
  color: color-mix(in oklab, var(--benefit-accent, var(--signal-400)) 82%, white 18%);
  padding: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  stroke-width: 1.55;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.benefit-grid h3,
.benefit-grid article:first-child h3 {
  margin: 78px 0 12px;
  color: var(--fog-100);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.04;
}

.benefit-grid p,
.benefit-grid article:first-child p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--fog-300);
  font-size: 15px;
  line-height: 1.48;
}

.benefit-grid article:nth-child(1) h3,
.benefit-grid article:nth-child(6) h3 {
  max-width: 420px;
  font-size: clamp(28px, 3vw, 40px);
}

.benefit-grid article:nth-child(1) p,
.benefit-grid article:nth-child(6) p {
  max-width: 470px;
  font-size: 16px;
}

.benefit-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 189, 255, 0.36);
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 26%, transparent), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(145deg, rgba(20, 18, 34, 0.9), rgba(6, 8, 12, 0.96));
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.42),
    0 0 0 1px color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 22%, transparent),
    0 0 48px color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 16%, transparent);
}

.benefit-grid article:hover > svg {
  transform: translateY(-3px) scale(1.04);
}

.benefit-grid article,
.benefit-grid article:first-child,
.benefit-grid article:nth-child(1),
.benefit-grid article:nth-child(6) {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
}

.benefit-grid article > svg,
.benefit-grid article:first-child > svg {
  grid-row: 1;
  grid-column: 1;
}

.benefit-grid h3,
.benefit-grid article:first-child h3,
.benefit-grid article:nth-child(1) h3,
.benefit-grid article:nth-child(6) h3 {
  grid-column: 1;
  margin: 20px 0 8px;
}

.benefit-grid p,
.benefit-grid article:first-child p,
.benefit-grid article:nth-child(1) p,
.benefit-grid article:nth-child(6) p {
  grid-column: 1;
  max-width: 300px;
}

.signal-graph span {
  transform-origin: bottom;
  animation: graph-pulse 2.8s ease-in-out infinite;
}

.signal-graph span:nth-child(2) { animation-delay: -0.4s; }
.signal-graph span:nth-child(3) { animation-delay: -0.8s; }
.signal-graph span:nth-child(4) { animation-delay: -1.2s; }
.signal-graph span:nth-child(5) { animation-delay: -1.6s; }
.signal-graph span:nth-child(6) { animation-delay: -2s; }

.panel-row {
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.panel-row:hover {
  transform: translateX(6px);
  background: color-mix(in oklab, var(--void-800) 70%, var(--signal-500) 10%);
}

.track-list li {
  position: relative;
  overflow: hidden;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out);
}

.track-list li::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--signal-500);
  box-shadow: 0 0 18px rgba(143, 77, 255, 0.8);
  content: "";
}

.track-list li:hover {
  transform: translateY(-2px);
  background: color-mix(in oklab, var(--void-850) 86%, var(--signal-500) 14%);
}

.seal {
  animation: seal-pulse 4.4s ease-in-out infinite;
}

.flood::before {
  animation: grid-drift 16s linear infinite;
}

.flood {
  background:
    radial-gradient(620px 200px at 50% 112%, rgba(214, 189, 255, 0.34), transparent 72%),
    radial-gradient(700px 420px at 15% 20%, rgba(255, 255, 255, 0.18), transparent 58%),
    var(--surface-flood);
}

.flood-tile {
  z-index: 1;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.08);
  color: var(--fog-100);
}

.flood-tile-1 {
  top: 18%;
  left: 9%;
  transform: rotate(-11deg);
}

.flood-tile-2 {
  top: 24%;
  right: 12%;
  animation-delay: -2s;
  transform: rotate(9deg);
}

.flood-tile-3 {
  bottom: 18%;
  left: 18%;
  animation-delay: -4s;
  transform: rotate(8deg);
}

.flood-tile-4 {
  right: 22%;
  bottom: 15%;
  animation-delay: -5s;
  transform: rotate(-10deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

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

@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 44px 22px; }
}

@keyframes scan-sweep {
  0%, 18% { transform: translateX(-120%); opacity: 0; }
  35%, 52% { opacity: 1; }
  72%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes scan-lines {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 80px, 0 56px; }
}

@keyframes hero-image-drift {
  from { transform: translate3d(0, -6px, 0) scale(1.01); }
  to { transform: translate3d(0, 8px, 0) scale(1.035); }
}

@keyframes panel-float {
  from { transform: translate3d(0, -4px, 0); }
  to { transform: translate3d(0, 8px, 0); }
}

@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}

@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(143, 77, 255, 0); }
  50% { box-shadow: 0 0 28px rgba(143, 77, 255, 0.34); }
}

@keyframes dot-breathe {
  0%, 100% { opacity: 0.52; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes graph-pulse {
  0%, 100% { transform: scaleY(0.74); opacity: 0.46; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes meter-flow {
  0%, 100% { filter: saturate(0.86); transform: translateX(-2px); }
  50% { filter: saturate(1.18); transform: translateX(2px); }
}

@keyframes seal-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(143, 77, 255, 0); }
  50% { box-shadow: 0 0 54px rgba(143, 77, 255, 0.24); }
}

@keyframes tile-float {
  from { translate: 0 -8px; }
  to { translate: 0 10px; }
}

@keyframes word-drift {
  from { transform: translate3d(-18px, 0, 0); }
  to { transform: translate3d(18px, -10px, 0); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interactive module explorer */
.track-list {
  position: relative;
  background:
    linear-gradient(90deg, rgba(143, 77, 255, 0.16), rgba(79, 209, 219, 0.1), rgba(143, 77, 255, 0.16)),
    rgba(185, 193, 206, 0.12);
}

.track-list li {
  min-height: 120px;
  padding: 0;
}

.track-list li::before {
  content: none;
}

.module-card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 120px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 18px;
  text-align: left;
}

.module-card::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(220px 120px at 16% 8%, rgba(185, 141, 255, 0.2), transparent 64%),
    linear-gradient(135deg, rgba(143, 77, 255, 0.08), transparent 58%);
  content: "";
  transition: opacity 180ms var(--ease-out);
}

.module-card span,
.module-card strong {
  position: relative;
  z-index: 1;
}

.module-card span {
  margin-bottom: 16px;
  color: var(--signal-400);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.module-card strong {
  color: var(--fog-100);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.25;
}

.module-card:hover::before,
.module-card:focus-visible::before,
.module-card.is-active::before {
  opacity: 1;
}

.module-card.is-active {
  box-shadow: inset 0 0 0 1px rgba(185, 141, 255, 0.52), inset 0 -3px 0 var(--signal-500);
}

.module-card.is-active span {
  color: var(--signal-300);
}

.module-card.is-active strong {
  text-shadow: 0 0 20px rgba(185, 141, 255, 0.34);
}

.module-inspector {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(185, 141, 255, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(520px 180px at 8% 50%, rgba(143, 77, 255, 0.22), transparent 68%),
    linear-gradient(90deg, rgba(16, 20, 28, 0.96), rgba(7, 9, 13, 0.92));
  padding: 24px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.module-inspector::after {
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 141, 255, 0.72), transparent);
  content: "";
}

.module-orb {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(185, 141, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(185, 141, 255, 0.25), transparent 62%),
    var(--void-950);
  box-shadow: 0 0 46px rgba(143, 77, 255, 0.22);
  transition: transform 220ms var(--ease-out);
}

.module-orb span {
  color: var(--signal-300);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
}

.module-copy h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.module-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--fog-300);
}

.module-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(185, 193, 206, 0.12);
  border-radius: 8px;
  background: rgba(185, 193, 206, 0.12);
}

.module-meta div {
  min-width: 120px;
  background: rgba(7, 9, 13, 0.58);
  padding: 14px 16px;
}

.module-meta dt {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.module-meta dd {
  margin: 6px 0 0;
  color: var(--fog-100);
  font-weight: 700;
}

.module-inspector.is-changing .module-orb {
  transform: scale(1.06) rotate(4deg);
}

.module-inspector.is-changing .module-copy,
.module-inspector.is-changing .module-meta {
  animation: module-pop 260ms var(--ease-out) both;
}

@keyframes module-pop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Premium guarantee section */
.guarantee {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(780px 360px at 18% 50%, rgba(143, 77, 255, 0.15), transparent 64%),
    radial-gradient(720px 360px at 86% 10%, rgba(79, 209, 219, 0.06), transparent 64%),
    var(--void-950);
}

.guarantee-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 20, 28, 0.92), rgba(7, 9, 13, 0.96)),
    var(--void-950);
  padding: 54px;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.3);
}

.guarantee-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(185, 141, 255, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  content: "";
}

.guarantee-visual,
.guarantee-content {
  position: relative;
  z-index: 1;
}

.guarantee-visual {
  display: grid;
  min-height: 320px;
  place-items: center;
}

.guarantee-ring {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 50%;
  animation: orbit-rotate 18s linear infinite;
}

.guarantee-ring::before,
.guarantee-ring::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal-400);
  box-shadow: 0 0 22px rgba(185, 141, 255, 0.9);
  content: "";
}

.guarantee-ring::before {
  top: 18px;
  left: 42px;
}

.guarantee-ring::after {
  right: 24px;
  bottom: 54px;
  background: var(--pulse-400);
}

.guarantee-panel .seal {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  border-color: rgba(185, 141, 255, 0.86);
  background:
    radial-gradient(circle, rgba(185, 141, 255, 0.24), transparent 58%),
    var(--void-850);
}

.guarantee-panel .seal strong {
  font-size: 78px;
}

.guarantee-scan {
  position: absolute;
  right: 6%;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.guarantee-scan span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.guarantee-scan span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-500);
  box-shadow: 0 0 14px rgba(143, 77, 255, 0.9);
  content: "";
}

.guarantee-content h2 {
  max-width: 760px;
}

.guarantee-content > p:not(.eyebrow) {
  max-width: 820px;
  color: var(--fog-300);
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.guarantee-cards article {
  border: 1px solid rgba(185, 193, 206, 0.12);
  border-radius: 10px;
  background: rgba(16, 20, 28, 0.72);
  padding: 18px;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.guarantee-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 141, 255, 0.42);
  background: rgba(28, 22, 44, 0.78);
}

.guarantee-cards svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--signal-300);
  stroke-width: 1.5;
}

.guarantee-cards strong,
.guarantee-cards span {
  display: block;
}

.guarantee-cards strong {
  color: var(--fog-100);
  font-size: 15px;
}

.guarantee-cards span {
  margin-top: 6px;
  color: var(--fog-500);
  font-size: 13px;
  line-height: 1.45;
}

.guarantee-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.guarantee-actions p {
  margin: 0;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 12px;
}

@media (max-width: 1060px) {
  .module-inspector {
    grid-template-columns: auto 1fr;
  }

  .module-meta {
    grid-column: 1 / -1;
  }

  .guarantee-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .guarantee-visual {
    min-height: 250px;
  }
}

@media (max-width: 720px) {
  .module-card {
    min-height: 112px;
  }

  .module-inspector {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .module-orb {
    width: 72px;
    height: 72px;
  }

  .module-orb span {
    font-size: 26px;
  }

  .module-meta {
    grid-template-columns: 1fr;
  }

  .guarantee-panel {
    padding: 24px;
  }

  .guarantee-content {
    order: 1;
  }

  .guarantee-visual {
    order: 2;
    min-height: 188px;
  }

  .guarantee-panel .seal {
    width: 138px;
    height: 138px;
  }

  .guarantee-panel .seal strong {
    font-size: 56px;
  }

  .guarantee-ring {
    width: 190px;
    height: 190px;
  }

  .guarantee-scan {
    display: none;
  }

  .guarantee-cards {
    grid-template-columns: 1fr;
  }

  .guarantee-actions .btn {
    width: 100%;
  }
}



/* FAQ redesign */
.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 380px at 14% 20%, rgba(143, 77, 255, 0.16), transparent 66%),
    radial-gradient(580px 320px at 90% 78%, rgba(79, 209, 219, 0.08), transparent 66%),
    linear-gradient(180deg, var(--void-900), var(--void-950));
}

.faq::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(185, 141, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  content: "";
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: 62px;
  align-items: start;
}

.faq-aside {
  display: grid;
  gap: 28px;
}

.faq-aside .section-heading > p:not(.eyebrow) {
  color: var(--fog-300);
  font-size: 17px;
}

.faq-support {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(16, 20, 28, 0.88), rgba(7, 9, 13, 0.96)),
    var(--void-850);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.faq-support span {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
}

.faq-support span + span {
  border-top: 1px solid rgba(185, 193, 206, 0.1);
}

.faq-support svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(185, 141, 255, 0.2);
  border-radius: 10px;
  background: rgba(28, 22, 44, 0.76);
  color: var(--signal-300);
  padding: 9px;
  stroke-width: 1.5;
}

.faq-support strong {
  color: var(--fog-100);
  font-size: 15px;
}

.faq-support small {
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.faq .accordion {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 141, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(16, 20, 28, 0.92), rgba(7, 9, 13, 0.96)),
    var(--void-850);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.faq .accordion::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(185, 141, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(143, 77, 255, 0.1);
  content: "";
}

.faq .accordion details {
  position: relative;
  z-index: 1;
  transition: background 180ms var(--ease-out);
}

.faq .accordion details[open] {
  background:
    linear-gradient(90deg, rgba(143, 77, 255, 0.12), transparent 70%),
    rgba(7, 9, 13, 0.3);
}

.faq .accordion details + details {
  border-top: 1px solid rgba(185, 193, 206, 0.1);
}

.faq .accordion summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--fog-100);
  font-weight: 750;
  list-style: none;
}

.faq .accordion summary span {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.faq .accordion summary svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 10px;
  background: rgba(18, 14, 30, 0.8);
  color: var(--signal-300);
  padding: 9px;
  stroke-width: 1.5;
}

.faq .accordion summary::-webkit-details-marker {
  display: none;
}

.faq .accordion summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(185, 141, 255, 0.2);
  border-radius: 999px;
  color: var(--signal-300);
  font-family: var(--font-mono);
  line-height: 1;
  content: "+";
}

.faq .accordion details[open] summary::after {
  background: var(--signal-500);
  color: var(--fog-100);
  content: "-";
}

.faq .accordion details p {
  max-width: 760px;
  margin: 0;
  padding: 0 68px 24px 72px;
  color: var(--fog-300);
  font-size: 15px;
}

@media (max-width: 1060px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .faq-support span {
    min-height: 78px;
  }

  .faq .accordion summary {
    align-items: flex-start;
    padding: 18px;
  }

  .faq .accordion summary span {
    align-items: flex-start;
  }

  .faq .accordion details p {
    padding: 0 18px 22px 68px;
  }
}/* Guarantee redesign: risk transfer system */
.guarantee {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 360px at 18% 18%, rgba(143, 77, 255, 0.2), transparent 68%),
    radial-gradient(620px 360px at 86% 70%, rgba(79, 209, 219, 0.08), transparent 68%),
    linear-gradient(180deg, var(--void-950), var(--void-900));
}

.guarantee::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(185, 193, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 193, 206, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  content: "";
}

.guarantee-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  gap: 62px;
  align-items: center;
}

.guarantee-copy h2 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.guarantee-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--fog-300);
  font-size: 15px;
}

.guarantee-copy strong {
  color: var(--fog-100);
}

.guarantee-system {
  position: relative;
  display: grid;
  gap: 14px;
}

.guarantee-system::before {
  position: absolute;
  top: -38px;
  right: -34px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(185, 141, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(143, 77, 255, 0.1);
  content: "";
  animation: orbit-rotate 22s linear infinite;
}

.guarantee-ticket {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 141, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(420px 220px at 24% 18%, rgba(143, 77, 255, 0.34), transparent 64%),
    linear-gradient(145deg, rgba(24, 18, 42, 0.96), rgba(7, 9, 13, 0.98));
  padding: 26px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.guarantee-ticket::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(214, 189, 255, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, black, transparent 74%);
  content: "";
}

.ticket-top,
.ticket-number,
.ticket-status {
  position: relative;
  z-index: 1;
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.ticket-top strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal-300);
}

.ticket-top strong::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pulse-400);
  box-shadow: 0 0 18px rgba(79, 209, 219, 0.72);
  content: "";
}

.ticket-number {
  display: flex;
  align-items: end;
  gap: 14px;
  margin: 38px 0 28px;
}

.ticket-number span {
  color: var(--fog-100);
  font-family: var(--font-display);
  font-size: clamp(110px, 15vw, 172px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.75;
  text-shadow: 0 0 48px rgba(143, 77, 255, 0.36);
}

.ticket-number small {
  color: var(--signal-300);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(185, 193, 206, 0.1);
  border-radius: 12px;
  background: rgba(185, 193, 206, 0.08);
}

.ticket-status span {
  display: grid;
  min-height: 50px;
  place-items: center;
  background: rgba(7, 9, 13, 0.82);
  color: var(--fog-300);
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

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

.guarantee-flow article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 193, 206, 0.12);
  border-radius: 14px;
  background: rgba(16, 20, 28, 0.72);
  padding: 18px;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.guarantee-flow article:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 141, 255, 0.42);
  background: rgba(28, 22, 44, 0.82);
}

.guarantee-flow svg {
  width: 22px;
  height: 22px;
  margin-bottom: 20px;
  color: var(--signal-300);
  stroke-width: 1.5;
}

.guarantee-flow span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(185, 141, 255, 0.54);
  font-family: var(--font-mono);
  font-size: 11px;
}

.guarantee-flow strong,
.guarantee-flow p {
  display: block;
  margin: 0;
}

.guarantee-flow strong {
  color: var(--fog-100);
  font-size: 15px;
}

.guarantee-flow p {
  margin-top: 6px;
  color: var(--fog-500);
  font-size: 13px;
  line-height: 1.45;
}

.guarantee-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.guarantee-actions p {
  margin: 0;
  color: var(--fog-500);
  font-family: var(--font-mono);
  font-size: 12px;
}

@media (max-width: 1060px) {
  .guarantee-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guarantee-copy h2,
  .guarantee-copy > p:not(.eyebrow) {
    max-width: 820px;
  }
}

@media (max-width: 720px) {
  .guarantee-shell {
    gap: 28px;
  }

  .guarantee-copy h2 {
    font-size: 38px;
  }

  .guarantee-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .guarantee-ticket {
    padding: 20px;
  }

  .ticket-number {
    margin: 32px 0 24px;
  }

  .ticket-number span {
    font-size: 104px;
  }

  .ticket-status,
  .guarantee-flow {
    grid-template-columns: 1fr;
  }

  .guarantee-actions .btn {
    width: 100%;
  }
}

/* Mobile polish */
@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .nav-shell,
  .hero-grid {
    width: calc(100% - 32px);
  }

  section {
    padding: 60px 0;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    min-height: 66px;
    border: 1px solid rgba(214, 189, 255, 0.18);
    border-radius: 20px;
    background: rgba(10, 12, 20, 0.74);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 9px 10px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark,
  .brand-mark img {
    width: 152px;
    height: 40px;
  }

  .brand-copy {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .site-header.menu-open .nav-menu {
    top: calc(100% + 8px);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav-menu > a {
    min-height: 48px;
    align-items: center;
  }

  .hero-grid {
    min-height: 0;
    gap: 24px;
    padding: 108px 0 30px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    max-width: 280px;
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(34px, 10.8vw, 44px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-copy .lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin: 24px 0;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .proof-bar {
    border-radius: 12px;
    background: rgba(12, 15, 24, 0.64);
  }

  .proof-bar div {
    padding: 13px 10px;
  }

  .proof-bar dt {
    font-size: 25px;
  }

  .proof-bar dd {
    font-size: 10px;
    line-height: 1.35;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.35;
  }

  .benefits-head,
  .course-overview-grid,
  .feedbacks-head,
  .feedbacks-stage,
  .faq-grid {
    gap: 32px;
  }

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

  .benefits-metrics span {
    min-height: 82px;
    padding: 13px 10px;
  }

  .benefits-metrics span + span {
    border-top: 0;
    border-left: 1px solid rgba(185, 193, 206, 0.1);
  }

  .benefits-metrics strong {
    font-size: 25px;
  }

  .benefits-metrics small {
    font-size: 9px;
    line-height: 1.3;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-grid article,
  .benefit-grid article:first-child {
    min-height: 168px;
    padding: 20px;
  }

  .course-overview-grid {
    perspective: none;
  }

  .course-cover,
  .course-cover.reveal,
  .course-cover.reveal.is-visible {
    min-height: 360px;
    border-radius: 22px;
    padding: 18px;
    transform: none;
  }

  .course-cover::after {
    right: -22px;
    bottom: 22px;
    font-size: 76px;
  }

  .course-cover-top {
    font-size: 14px;
  }

  .course-cover-top img {
    width: 44px;
    height: 44px;
  }

  .course-cover-body {
    min-height: 184px;
  }

  .course-cover-body p {
    margin-bottom: 14px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .course-cover-body h2 {
    max-width: 290px;
    margin-bottom: 14px;
    font-size: clamp(38px, 12vw, 50px);
  }

  .course-cover-body span {
    max-width: 250px;
    font-size: 13px;
    line-height: 1.45;
  }

  .course-cover-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 12px;
  }

  .course-cover-meta span {
    min-height: 66px;
    padding: 10px 8px;
    font-size: 9px;
    line-height: 1.25;
  }

  .course-cover-meta span + span {
    border-top: 0;
    border-left: 1px solid rgba(214, 189, 255, 0.12);
  }

  .course-cover-meta strong {
    font-size: 21px;
  }

  .course-copy-grid article,
  .track-phases article {
    padding: 22px;
  }

  .video-feedbacks {
    padding: 84px 0 70px;
    background:
      radial-gradient(360px 260px at 86% 4%, rgba(143, 77, 255, 0.22), transparent 72%),
      radial-gradient(280px 220px at 0% 72%, rgba(79, 209, 219, 0.08), transparent 72%),
      linear-gradient(180deg, var(--void-950), var(--void-900));
  }

  .feedbacks-head,
  .feedbacks-stage,
  .video-featured {
    grid-template-columns: 1fr;
  }

  .feedbacks-head {
    margin-bottom: 28px;
  }

  .feedbacks-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 14px;
  }

  .feedbacks-proof span {
    min-height: 78px;
    padding: 12px 9px;
  }

  .feedbacks-proof strong {
    font-size: 22px;
  }

  .feedbacks-proof small {
    font-size: 8.5px;
    line-height: 1.25;
  }

  .video-featured {
    border-radius: 22px;
  }

  .student-carousel {
    border-radius: 22px;
  }

  .carousel-top {
    padding: 14px;
  }

  .carousel-top > div:first-child {
    display: grid;
    gap: 4px;
    font-size: 9px;
  }

  .carousel-controls button {
    width: 40px;
    height: 40px;
  }

  .student-slide {
    grid-template-columns: 1fr;
  }

  .student-slide .video-frame {
    min-height: 340px;
  }

  .video-frame-large {
    min-height: 360px;
  }

  .video-frame::after {
    font-size: 82px;
  }

  .video-tag {
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .video-signal {
    top: 18px;
    right: 18px;
  }

  .video-play {
    width: 66px;
    height: 66px;
  }

  .video-play svg {
    width: 26px;
    height: 26px;
  }

  .video-meta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 10px 12px;
    font-size: 9px;
  }

  .video-copy {
    padding: 24px;
  }

  .student-story {
    padding: 24px;
  }

  .student-story h3 {
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .student-story p {
    font-size: 15px;
  }

  .student-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
  }

  .student-profile small {
    display: block;
  }

  .carousel-dots {
    padding: 14px;
  }

  .carousel-dots button {
    width: 24px;
  }

  .carousel-dots button.is-active {
    width: 42px;
  }

  .feedbacks-minimal-head {
    display: block;
    max-width: 330px;
    margin-bottom: 22px;
    text-align: center;
  }

  .feedbacks-minimal-head .eyebrow {
    justify-content: center;
  }

  .feedbacks-minimal-head h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .feedbacks-minimal-head > p:not(.eyebrow) {
    max-width: 310px;
    margin: 0 auto;
    font-size: 14px;
  }

  .reels-carousel {
    max-width: min(318px, 100%);
  }

  .reels-carousel .carousel-top {
    top: 18px;
    right: 0;
    left: 0;
    padding: 0;
  }

  .reels-carousel .carousel-count {
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }

  .reels-carousel .carousel-controls button {
    width: 34px;
    height: 34px;
  }

  .reels-carousel .student-carousel-viewport {
    padding: 20px 0 26px;
  }

  .reels-carousel .student-slide {
    display: block;
    flex: 0 0 100%;
    transform: none;
    filter: saturate(1) brightness(1);
  }

  .reels-carousel .student-slide.is-featured,
  .reels-carousel .student-slide:hover {
    transform: none;
    filter: saturate(1) brightness(1);
  }

  .reels-carousel .reel-video-frame {
    aspect-ratio: 9 / 16;
    min-height: 0;
    border-radius: 22px;
  }

  .reels-carousel .video-play {
    width: 58px;
    height: 58px;
  }

  .reels-carousel .video-play svg {
    width: 23px;
    height: 23px;
  }

  .reels-carousel .video-signal {
    right: 18px;
    bottom: 18px;
  }

  .reels-carousel .carousel-dots {
    padding: 2px 12px 13px;
  }

  .video-copy h3 {
    font-size: clamp(24px, 7.5vw, 31px);
  }

  .video-feedback-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-right: -16px;
    margin-left: -16px;
    padding: 2px 16px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-feedback-list::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    flex: 0 0 min(78vw, 300px);
    grid-template-columns: 1fr;
    min-height: 0;
    scroll-snap-align: start;
  }

  .video-card .video-frame {
    min-height: 180px;
  }

  .video-card h3 {
    min-height: 94px;
    padding: 20px;
    font-size: 17px;
  }

  .feedback-marquee {
    gap: 8px;
    margin-top: 16px;
  }

  .feedback-marquee span {
    padding: 9px 11px;
    font-size: 9px;
  }

  .track-phases {
    gap: 12px;
  }

  .track-note {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.5;
  }

  .plan-grid {
    gap: 18px;
    margin-top: 32px;
  }

  .plan-card {
    padding: 28px;
  }

  .plan-card.featured {
    transform: none;
  }

  .price span {
    font-size: clamp(36px, 11vw, 44px);
  }

  .plan-purpose {
    min-height: 0;
  }

  .faq-support span {
    min-height: 72px;
    padding: 16px;
  }

  .faq .accordion {
    border-radius: 16px;
  }

  .faq .accordion summary {
    min-height: 0;
    gap: 12px;
    padding: 17px;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq .accordion summary span {
    gap: 10px;
  }

  .faq .accordion summary svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .faq .accordion summary::after {
    width: 28px;
    height: 28px;
  }

  .faq .accordion details p {
    padding: 0 18px 20px 59px;
    font-size: 14px;
    line-height: 1.56;
  }

  .closing-card {
    padding: 60px 0 72px;
  }

  .hero-card {
    min-height: 460px;
    border-radius: 24px;
  }

  .hero-card .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 64px 18px 90px;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 20px;
    margin-bottom: 22px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-pill a {
    border-left: 0;
    padding-left: 0;
  }

  .hero-card h1,
  .hero-card h2 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1;
    text-wrap: balance;
  }

  .hero-card h2 .title-line {
    white-space: normal;
  }

  .hero-card .lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-card .hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .btn-hero-card {
    justify-content: center;
    min-height: 54px;
    padding: 14px 16px;
  }

  .card-float {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    opacity: 0.72;
  }

  .card-float svg {
    width: 21px;
    height: 21px;
  }

  .card-float-b,
  .card-float-d {
    display: none;
  }

  .card-float-a { top: 12%; left: 8%; }
  .card-float-c { top: 14%; right: 8%; }
  .card-float-e { right: 10%; bottom: 20%; }

  .hero-card .ticker {
    display: none;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-bottom {
    gap: 8px;
    text-align: center;
  }

  .hero {
    background:
      radial-gradient(360px 260px at 84% 12%, rgba(143, 77, 255, 0.34), transparent 70%),
      radial-gradient(280px 220px at 10% 36%, rgba(79, 209, 219, 0.1), transparent 72%),
      linear-gradient(180deg, #0d1018 0%, #080a0f 72%, #090610 100%);
  }

  .hero-grid {
    position: relative;
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 8px;
  }

  .hero-copy h1 {
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  }

  .hero-copy .lead {
    color: rgba(233, 236, 244, 0.78);
  }

  .hero-media {
    position: absolute;
    top: 92px;
    right: 0;
    z-index: 1;
    display: block;
    width: min(62vw, 255px);
    height: 310px;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 28px 0 0 28px;
    opacity: 0.54;
    pointer-events: none;
    filter: saturate(1.08) contrast(1.06);
    mask-image: linear-gradient(90deg, transparent 0, black 26%, black 76%, transparent 100%);
  }

  .hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 15, 0.78), transparent 38%, rgba(8, 10, 15, 0.24));
    content: "";
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    mask-image: none;
  }

  .hero-media .floating-stack {
    display: none;
  }

  .hero-actions .btn {
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(143, 77, 255, 0.3);
  }

  .hero-actions .btn-secondary {
    border-color: rgba(214, 189, 255, 0.22);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .proof-bar {
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .proof-bar::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(214, 189, 255, 0.12), transparent 42%);
    pointer-events: none;
    content: "";
  }

  .benefit-grid article,
  .course-copy-grid article,
  .track-phases article,
  .plan-card,
  .faq-support,
  .faq .accordion {
    border-color: rgba(214, 189, 255, 0.16);
    background:
      linear-gradient(145deg, rgba(22, 25, 36, 0.9), rgba(7, 9, 13, 0.96)),
      var(--void-850);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .benefit-grid article:nth-child(odd),
  .track-phases article:nth-child(odd) {
    background:
      radial-gradient(220px 140px at 88% 0%, rgba(143, 77, 255, 0.2), transparent 70%),
      linear-gradient(145deg, rgba(22, 25, 36, 0.92), rgba(7, 9, 13, 0.96));
  }

  .benefit-grid article > svg,
  .course-copy-grid article svg,
  .track-phases article svg {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(214, 189, 255, 0.18);
    border-radius: 14px;
    background: rgba(143, 77, 255, 0.12);
    color: var(--signal-300);
    padding: 10px;
  }

  .course-overview {
    background:
      radial-gradient(360px 260px at 84% 4%, rgba(143, 77, 255, 0.18), transparent 70%),
      linear-gradient(180deg, var(--void-900), #090610);
  }

  .course-cover,
  .course-cover.reveal,
  .course-cover.reveal.is-visible {
    position: relative;
    border-color: rgba(214, 189, 255, 0.28);
    background:
      radial-gradient(260px 180px at 72% 18%, rgba(214, 189, 255, 0.34), transparent 70%),
      radial-gradient(rgba(214, 189, 255, 0.2) 1px, transparent 1px),
      linear-gradient(145deg, rgba(22, 16, 43, 0.98), rgba(8, 10, 15, 0.98));
    background-size: auto, 18px 18px, auto;
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34), 0 0 56px rgba(143, 77, 255, 0.16);
  }

  .course-cover::before {
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 34%),
      linear-gradient(180deg, transparent 46%, rgba(143, 77, 255, 0.2));
  }

  .plans {
    background:
      radial-gradient(360px 260px at 50% 0%, rgba(143, 77, 255, 0.16), transparent 72%),
      var(--void-900);
  }

  .plan-card.featured {
    border-color: rgba(185, 141, 255, 0.82);
    background:
      radial-gradient(280px 180px at 78% 8%, rgba(185, 141, 255, 0.28), transparent 72%),
      linear-gradient(145deg, rgba(28, 22, 44, 0.96), rgba(8, 10, 15, 0.98));
    box-shadow: 0 28px 90px rgba(143, 77, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .popular {
    left: 20px;
    box-shadow: 0 12px 30px rgba(143, 77, 255, 0.28);
  }

  .faq {
    background:
      radial-gradient(360px 260px at 16% 10%, rgba(143, 77, 255, 0.16), transparent 70%),
      linear-gradient(180deg, var(--void-900), var(--void-950));
  }

  .faq-support {
    grid-template-columns: 1fr;
  }

  .closing-card {
    background:
      radial-gradient(360px 240px at 50% 100%, rgba(143, 77, 255, 0.2), transparent 72%),
      var(--void-900);
  }

  .hero-card {
    overflow: hidden;
    border-color: rgba(214, 189, 255, 0.34);
    background:
      radial-gradient(260px 180px at 50% 100%, rgba(255, 255, 255, 0.22), transparent 76%),
      radial-gradient(rgba(8, 5, 15, 0.14) 1px, transparent 1px),
      linear-gradient(145deg, #d8c6ff 0%, #a36dff 48%, #7b38ee 100%);
    background-size: auto, 18px 18px, auto;
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36), 0 0 68px rgba(143, 77, 255, 0.2);
  }

  .hero-card::before {
    opacity: 0.72;
  }

  .btn-hero-card {
    box-shadow: 0 24px 54px rgba(8, 5, 15, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .benefits,
  .track,
  .plans,
  .faq {
    position: relative;
  }

  .benefits::after,
  .track::after,
  .plans::after {
    position: absolute;
    right: 16px;
    bottom: 0;
    left: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 189, 255, 0.24), transparent);
    content: "";
  }

  .course-copy-grid article,
  .track-phases article,
  .faq-support span {
    position: relative;
    overflow: hidden;
  }

  .course-copy-grid article::after,
  .track-phases article::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--signal-500);
    box-shadow: 0 0 20px rgba(143, 77, 255, 0.8);
    content: "";
  }

  .hero-card {
    min-height: 560px;
    padding-bottom: 66px;
  }

  .hero-card::after {
    bottom: 20px;
    font-size: clamp(82px, 22vw, 124px);
    opacity: 0.42;
  }

  .card-float,
  .card-float-b,
  .card-float-d {
    display: grid;
  }

  .card-float {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(8, 5, 15, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 34px rgba(8, 5, 15, 0.16);
    opacity: 0.86;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
  }

  .card-float-a { top: 118px; left: 24px; }
  .card-float-b { top: 112px; right: 24px; left: auto; }
  .card-float-c { top: auto; right: 24px; bottom: 138px; }
  .card-float-d { top: auto; bottom: 138px; left: 24px; }
  .card-float-e { right: 50%; bottom: 72px; transform: translateX(50%) rotate(var(--tilt, -8deg)); }

  .hero-card .ticker {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: block;
    overflow: hidden;
    border-top: 1px solid rgba(8, 5, 15, 0.16);
    background: rgba(8, 5, 15, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero-card .ticker div {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    animation: none;
    padding: 0;
    transform: none;
  }

  .hero-card .ticker span {
    display: flex;
    min-height: 33px;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(8, 5, 15, 0.07);
    color: rgba(8, 5, 15, 0.64);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
  }

  .hero-card .ticker span::after,
  .hero-card .ticker span:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 420px) {
  .container,
  .nav-shell,
  .hero-grid {
    width: calc(100% - 24px);
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10.2vw, 38px);
  }

  .proof-bar dd,
  .benefits-metrics small,
  .course-cover-meta span {
    font-size: 8.5px;
  }

  .course-cover {
    min-height: 344px;
  }

  .faq .accordion details p {
    padding-left: 18px;
  }

  .hero-card {
    min-height: 540px;
  }

  .card-float {
    display: grid;
    width: 44px;
    height: 44px;
  }

  .card-float svg {
    width: 19px;
    height: 19px;
  }

  .card-float-b {
    top: 106px;
  }

  .card-float-c,
  .card-float-d {
    bottom: 132px;
  }

  .card-float-e {
    display: none;
  }
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.benefit-grid article,
.benefit-grid article:first-child,
.benefit-grid article:nth-child(1),
.benefit-grid article:nth-child(6) {
  display: grid;
  min-height: 188px;
  grid-column: auto;
  grid-template-columns: 66px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-content: start;
  border-radius: 20px;
  padding: 22px;
  background:
    radial-gradient(220px 130px at 0% 0%, color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 24%, transparent), transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(13, 16, 25, 0.94), rgba(6, 8, 12, 0.98));
}

.benefit-grid article::before {
  top: auto;
  right: 20px;
  bottom: 18px;
  left: 106px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--benefit-accent, var(--signal-500)) 78%, transparent), transparent);
}

.benefit-grid article::after {
  top: auto;
  right: 18px;
  bottom: 16px;
  padding: 6px 9px;
  font-size: 9px;
}

.benefit-grid article > svg,
.benefit-grid article:first-child > svg {
  position: static;
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 58px;
  height: 58px;
  align-self: start;
  margin: 0;
  border-radius: 18px;
  padding: 15px;
}

.benefit-grid h3,
.benefit-grid article:first-child h3,
.benefit-grid article:nth-child(1) h3,
.benefit-grid article:nth-child(6) h3 {
  grid-column: 2;
  margin: 6px 0 8px;
  font-size: clamp(21px, 1.8vw, 25px);
  line-height: 1.08;
}

.benefit-grid p,
.benefit-grid article:first-child p,
.benefit-grid article:nth-child(1) p,
.benefit-grid article:nth-child(6) p {
  grid-column: 2;
  max-width: 310px;
  margin: 0 0 28px;
  color: var(--fog-300);
  font-size: 14.5px;
  line-height: 1.45;
}

@media (max-width: 1060px) {
  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(6) {
    grid-column: span 3;
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(6) {
    grid-column: 1;
    min-height: 178px;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .benefit-grid article > svg,
  .benefit-grid article:first-child > svg {
    top: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .benefit-grid h3,
  .benefit-grid article:first-child h3,
  .benefit-grid article:nth-child(1) h3,
  .benefit-grid article:nth-child(6) h3 {
    margin-top: 18px;
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .benefit-grid p,
  .benefit-grid article:first-child p,
  .benefit-grid article:nth-child(1) p,
  .benefit-grid article:nth-child(6) p {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final Benefits alignment pass */
.benefit-grid article,
.benefit-grid article:first-child,
.benefit-grid article:nth-child(1),
.benefit-grid article:nth-child(6) {
  grid-template-columns: 66px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 18px;
}

.benefit-grid article::before {
  display: none;
}

.benefit-grid article > svg,
.benefit-grid article:first-child > svg {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.benefit-grid h3,
.benefit-grid article:first-child h3,
.benefit-grid article:nth-child(1) h3,
.benefit-grid article:nth-child(6) h3,
.benefit-grid p,
.benefit-grid article:first-child p,
.benefit-grid article:nth-child(1) p,
.benefit-grid article:nth-child(6) p {
  grid-column: 2;
}

.benefit-grid h3,
.benefit-grid article:first-child h3,
.benefit-grid article:nth-child(1) h3,
.benefit-grid article:nth-child(6) h3 {
  margin: 6px 0 8px;
}

@media (min-width: 721px) {
  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(1),
  .benefit-grid article:nth-child(6) {
    height: 188px;
    min-height: 188px;
  }
}

@media (max-width: 720px) {
  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(1),
  .benefit-grid article:nth-child(6) {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
  }

  .benefit-grid h3,
  .benefit-grid article:first-child h3,
  .benefit-grid article:nth-child(1) h3,
  .benefit-grid article:nth-child(6) h3 {
    margin-top: 4px;
  }
}
