:root {
  --background: #000a16;
  --foreground: #5c00f1;
  --secondary: #ffffff;
  --tertiary: #0e1826;
  --card: #0e1319;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--secondary);
  font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.light {
  position: fixed;
  top: 0;
  z-index: 0;
  width: 224px;
  height: 208px;
  pointer-events: none;
  opacity: 0.9;
}

.light::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 120px 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.08) 35%, transparent 72%),
    linear-gradient(135deg, rgba(92, 0, 241, 0.46), transparent 65%);
  filter: blur(22px);
}

.light-left {
  left: -20px;
}

.light-right {
  right: -24px;
  transform: rotate(90deg);
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 40;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 192px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(185, 166, 255, 0.88));
  color: #05080f;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow:
    0 0 28px rgba(92, 0, 241, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: min(610px, 48vw);
  height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  outline: 1px solid rgba(92, 0, 241, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
}

.nav-links a {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 16px 6px 6px;
  height: 44px;
  border-radius: 999px;
  outline: 1px solid rgba(92, 0, 241, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease;
}

.nav-cta:hover {
  opacity: 0.8;
}

.nav-cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
}

.divider {
  width: 1px;
  height: 1px;
  outline: 1.5px solid var(--secondary);
}

.nav-cta-arrow {
  font-size: 0.9rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--secondary);
}

.main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding-top: 152px;
  padding-bottom: 120px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 40px;
  min-height: auto;
  align-items: start;
  padding-bottom: 8px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #333a47;
  border-radius: 999px;
}

.eyebrow-text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  background-image: linear-gradient(120deg, #b5b5b5 0%, #b5b5b5 35%, #ffffff 50%, #b5b5b5 65%, #b5b5b5 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.8s linear infinite;
}

.hero h1 {
  margin: 0;
  max-width: min(640px, 100%);
  font-size: clamp(2.2rem, 3.1vw, 3.05rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.68;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 12px;
  border: 1px solid rgba(92, 0, 241, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.trust-pill p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.avatars {
  display: flex;
  margin-right: 4px;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: -12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #0b1320;
  font-size: 0.72rem;
  font-weight: 700;
}

.avatars span:first-child {
  margin-left: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

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

.button-primary {
  background: var(--secondary);
  color: var(--foreground);
}

.full-width {
  width: 100%;
}

.hero-media {
  position: relative;
}

.video-shell {
  position: relative;
  width: 100%;
  max-width: 756px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(92, 0, 241, 0.16);
  border-radius: 28px;
  background: #080e17;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 30px 80px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s ease;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 26%, transparent 70%, rgba(112, 8, 231, 0.24)),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.15), transparent 24%);
  opacity: 0.58;
  transition: opacity 0.32s ease;
}

.video-frame:hover,
.video-frame:focus-within {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 34px 92px rgba(0, 0, 0, 0.5),
    0 0 42px rgba(92, 0, 241, 0.24);
  transform: translateY(-2px) scale(1.006);
}

.video-frame:hover::before,
.video-frame:focus-within::before {
  opacity: 0.82;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050913;
  filter: saturate(0.82) brightness(0.62) contrast(1.04);
  object-fit: cover;
  pointer-events: none;
  transform: scale(1);
  transition:
    filter 0.36s ease,
    transform 6s ease;
}

.video-frame:hover .hero-video,
.video-frame:focus-within .hero-video {
  filter: saturate(1.05) brightness(0.82) contrast(1.08);
  transform: scale(1.025);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 10, 22, 0.06) 0%, rgba(0, 10, 22, 0.02) 38%, rgba(0, 10, 22, 0.68) 100%),
    radial-gradient(circle at center, rgba(112, 8, 231, 0.08), transparent 45%);
  transition: opacity 0.32s ease;
}

.video-frame:hover .video-overlay,
.video-frame:focus-within .video-overlay {
  opacity: 0.82;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 999px;
  background: rgba(112, 8, 231, 0.78);
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition:
    background 0.26s ease,
    opacity 0.26s ease,
    transform 0.26s ease;
}

.video-frame:hover .video-play,
.video-frame:focus-within .video-play,
.video-play.is-paused {
  opacity: 1;
  pointer-events: auto;
}

.video-play:hover,
.video-play:focus-visible {
  background: rgba(112, 8, 231, 0.92);
  outline: 0;
  transform: translate(-50%, -50%) scale(1.04);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
}

.video-play.is-paused .play-icon {
  left: 50%;
  width: 16px;
  height: 18px;
  border: 0;
}

.video-play.is-paused .play-icon::before,
.video-play.is-paused .play-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 18px;
  border-radius: 2px;
  background: #fff;
}

.video-play.is-paused .play-icon::before {
  left: 0;
}

.video-play.is-paused .play-icon::after {
  right: 0;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  animation: vsl-wave-pulse 2.2s infinite;
}

.pulse-ring-two {
  animation-delay: 1.1s;
}

.video-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.video-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  padding: 18px;
  pointer-events: none;
}

.video-topbar,
.video-lower {
  display: flex;
  align-items: center;
}

.video-topbar {
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.video-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}

.video-lower {
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.video-frame:hover .video-lower,
.video-frame:focus-within .video-lower {
  opacity: 1;
  transform: translateY(0);
}

.mute-chip,
.quality-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.mute-chip {
  cursor: pointer;
  pointer-events: auto;
}

.progress {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: #7008e7;
  transition: width 0.18s linear;
}

.floating {
  position: absolute;
  z-index: 3;
  width: min(300px, 82%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(14, 19, 25, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: floatY 4.6s ease-in-out infinite;
}

.floating-right {
  right: -16px;
  bottom: -28px;
}

.story-card strong,
.update strong {
  display: block;
  margin-bottom: 8px;
}

.story-label,
.section-kicker,
.mini-kicker,
.best-value {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 600;
}

.story-card p,
.section-copy p,
.pricing-card p,
.update p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.section {
  scroll-margin-top: 128px;
}

.section-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.course-grid,
.result-grid,
.updates {
  display: grid;
  gap: 18px;
}

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

.course-card,
.result-card,
.pricing-card,
.update,
.testimonial-card,
.transformation-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--card);
  box-shadow: var(--shadow);
}

.course-card {
  padding: 14px;
}

.course-visual {
  display: grid;
  place-items: center;
  height: 210px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(160deg, rgba(92, 0, 241, 0.38), rgba(14, 24, 38, 0.72));
}

.course-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.course-card h3,
.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.course-card p,
.result-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.thumbnail-heading {
  max-width: 820px;
}

.thumbnail-showcase {
  position: relative;
}

.thumbnail-showcase::before {
  content: "";
  position: absolute;
  inset: -28px -18px 80px;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 78% 38%, rgba(0, 210, 190, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 68%);
  filter: blur(2px);
}

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

.thumbnail-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 16, 27, 0.78);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transform: translateY(10px);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.thumbnail-card::before,
.thumbnail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.thumbnail-card::before {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.28), transparent 20%, transparent 78%, rgba(0, 210, 190, 0.15)),
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0.72;
  transition: opacity 0.28s ease;
}

.thumbnail-card::after {
  top: auto;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
  opacity: 0.18;
  transform: translateY(68%) scaleY(-1);
  filter: blur(12px);
}

.thumbnail-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    filter 0.32s ease,
    transform 0.42s ease;
}

.thumbnail-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  text-align: left;
}

.thumbnail-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.thumbnail-overlay strong {
  overflow: hidden;
  max-width: 72%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thumbnail-card.visible {
  transform: translateY(0);
  transition-delay: var(--card-delay, 0ms);
}

.thumbnail-card:hover,
.thumbnail-card:focus-visible,
.thumbnail-card.visible:hover,
.thumbnail-card.visible:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.5),
    0 0 38px rgba(92, 0, 241, 0.24),
    0 0 30px rgba(0, 210, 190, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  outline: 0;
  transform: translateY(-5px);
}

.thumbnail-card:hover img,
.thumbnail-card:focus-visible img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.065);
}

.thumbnail-card:hover::before,
.thumbnail-card:focus-visible::before {
  opacity: 0.9;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.gallery-button {
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(210, 245, 241, 0.92)),
    #fff;
  color: #190042;
  box-shadow:
    0 16px 44px rgba(92, 0, 241, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.gallery-button:hover,
.gallery-button:focus-visible {
  opacity: 1;
  outline: 0;
  box-shadow:
    0 18px 54px rgba(92, 0, 241, 0.38),
    0 0 34px rgba(0, 210, 190, 0.18);
}

.gallery-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lightbox {
  z-index: 90;
}

.gallery-modal.open,
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 0, 241, 0.22), transparent 42%),
    rgba(0, 6, 14, 0.78);
  backdrop-filter: blur(18px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(1180px, 100%);
  max-height: min(86vh, 920px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(8, 13, 22, 0.88);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.32s ease;
}

.gallery-modal.open .gallery-panel {
  transform: translateY(0) scale(1);
}

.gallery-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.gallery-topbar h2 {
  margin: 12px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 16px;
  overflow-y: auto;
  max-height: calc(86vh - 150px);
  padding: 2px 4px 8px 2px;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.gallery-item {
  transform: translateY(0);
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
  width: min(1180px, 100%);
}

.lightbox-stage figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(4, 8, 15, 0.88);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.72),
    0 0 46px rgba(92, 0, 241, 0.18);
}

.lightbox-stage img {
  display: block;
  width: 100%;
  max-height: 76vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.lightbox-stage figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  position: absolute;
  top: -58px;
  right: 0;
}

.lightbox-nav {
  display: grid;
  place-items: center;
  width: 54px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  outline: 0;
  transform: translateY(-1px);
}

.reels-section {
  position: relative;
}

.reels-section::before {
  content: "";
  position: absolute;
  inset: -44px -24px auto;
  z-index: -1;
  height: 420px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 74% 16%, rgba(92, 0, 241, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  filter: blur(1px);
}

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

.reels-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: 100%;
}

.featured-reel,
.reel-carousel-shell,
.reel-card,
.reel-modal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(8, 13, 22, 0.82);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.featured-reel {
  width: min(340px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  isolation: isolate;
  justify-self: start;
}

.featured-reel::before,
.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 36%, rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 74%, rgba(92, 0, 241, 0.2));
}

.reel-iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050913;
}

.featured-reel .reel-iframe {
  pointer-events: none;
}

.featured-reel-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.featured-reel-copy span,
.reel-card-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.featured-reel-copy strong,
.reel-card-meta strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.reel-carousel-shell {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  padding: 20px;
}

.reel-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.reel-controls {
  display: flex;
  gap: 10px;
}

.reel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.reel-carousel {
  display: grid;
  grid-auto-columns: 220px;
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reel-carousel::-webkit-scrollbar {
  display: none;
}

.reel-card {
  aspect-ratio: 9 / 16;
  width: 220px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  scroll-snap-align: start;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
  transform: translateY(0);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.reel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    filter 0.32s ease,
    transform 0.42s ease;
}

.reel-card-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.22), transparent 28%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.reel-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
  transform: translate(-50%, -50%);
}

.reel-card-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.reel-card:hover,
.reel-card:focus-visible,
.reel-card.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.56),
    0 0 38px rgba(92, 0, 241, 0.24);
  outline: 0;
  transform: translateY(-6px) scale(1.015);
}

.reel-card:hover img,
.reel-card:focus-visible img,
.reel-card.is-active img {
  filter: saturate(1.08) brightness(1.08) contrast(1.06);
  transform: scale(1.075);
}

.reel-card:hover .reel-card-shine,
.reel-card:focus-visible .reel-card-shine,
.reel-card.is-active .reel-card-shine {
  opacity: 1;
}

.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.reel-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.reel-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(92, 0, 241, 0.22), transparent 36%),
    rgba(0, 6, 14, 0.82);
  backdrop-filter: blur(18px);
}

.reel-modal-panel {
  width: min(390px, 92vw);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
}

.reel-modal-player,
.reel-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-modal-close {
  position: absolute;
  top: -58px;
  right: 0;
  z-index: 2;
}

.watch-section,
.about-section,
.software-section {
  position: relative;
}

.watch-section::before,
.about-section::before,
.software-section::before {
  content: "";
  position: absolute;
  inset: -36px -18px auto;
  z-index: -1;
  height: 360px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 210, 190, 0.11), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(92, 0, 241, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  filter: blur(1px);
}

.watch-showcase {
  position: relative;
}

.watch-card,
.watch-modal-panel,
.about-image,
.software-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(8, 13, 22, 0.82);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.watch-card {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: 24px;
  cursor: pointer;
  isolation: isolate;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.watch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 24%, transparent 72%, rgba(92, 0, 241, 0.18));
}

.watch-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.78);
  transform: scale(1.02);
  transition:
    filter 0.32s ease,
    transform 0.42s ease;
}

.watch-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}

.watch-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top-width: 7px;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-width: 7px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-left-width: 12px;
  border-left-style: solid;
  border-left-color: #fff;
  transform: translate(-50%, -50%);
}

.watch-card-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  text-align: left;
  pointer-events: none;
}

.watch-card-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.watch-card-meta strong {
  overflow: hidden;
  max-width: 72%;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-card:hover,
.watch-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.52),
    0 0 36px rgba(0, 210, 190, 0.16),
    0 0 34px rgba(92, 0, 241, 0.18);
  outline: 0;
  transform: translateY(-4px);
}

.watch-card:hover img,
.watch-card:focus-visible img {
  filter: saturate(1.08) brightness(0.9);
  transform: scale(1.07);
}

.watch-card:hover .watch-play,
.watch-card:focus-visible .watch-play {
  background: rgba(92, 0, 241, 0.52);
  transform: translate(-50%, -50%) scale(1.04);
}

.watch-modal {
  position: fixed;
  inset: 0;
  z-index: 94;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.watch-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.watch-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(92, 0, 241, 0.22), transparent 38%),
    rgba(0, 6, 14, 0.84);
  backdrop-filter: blur(18px);
}

.watch-modal-panel {
  width: min(1100px, 94vw);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
}

.watch-modal-player,
.watch-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-modal-close {
  position: absolute;
  top: -58px;
  right: 0;
  z-index: 2;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.about-copy h2 {
  margin: 16px 0 22px;
  max-width: 720px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.86;
}

.about-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.icon-link:hover,
.icon-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(92, 0, 241, 0.22);
  outline: 0;
  transform: translateY(-2px);
}

.about-image {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 72%, rgba(92, 0, 241, 0.2)),
    radial-gradient(circle at 80% 12%, rgba(0, 210, 190, 0.14), transparent 32%);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(0.88) contrast(1.04);
}

.software-heading {
  margin-inline: auto;
  text-align: center;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.software-card {
  min-height: 330px;
  padding: 26px;
  border-radius: 26px;
  transform-style: preserve-3d;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.software-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 70%, rgba(0, 210, 190, 0.1)),
    radial-gradient(circle at 18% 18%, rgba(92, 0, 241, 0.2), transparent 34%);
  opacity: 0.72;
}

.software-card > * {
  position: relative;
  z-index: 2;
}

.software-shine {
  position: absolute;
  inset: -40% auto auto -30%;
  z-index: 1;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  opacity: 0;
  transform: translate3d(-20px, -20px, 0);
  transition:
    opacity 0.3s ease,
    transform 0.42s ease;
}

.software-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.software-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.software-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.software-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.software-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.software-card:hover,
.software-card:focus-within {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.56),
    0 0 38px rgba(92, 0, 241, 0.24),
    0 0 26px rgba(0, 210, 190, 0.12);
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
}

.software-card:hover .software-shine,
.software-card:focus-within .software-shine {
  opacity: 1;
  transform: translate3d(22px, 22px, 0);
}

.transformation,
.pricing-grid,
.updates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.transformation-card {
  padding: 32px;
}

.transformation-card.after,
.pricing-card.highlight {
  background:
    linear-gradient(180deg, rgba(92, 0, 241, 0.42), rgba(49, 10, 116, 0.28)),
    linear-gradient(180deg, var(--foreground), #2b0f6f 100%);
  box-shadow: 0 0 30px 10px rgba(92, 0, 241, 0.42);
}

.transformation-card ul,
.pricing-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.transformation-card li,
.pricing-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.transformation-card li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

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

.result-card {
  padding: 24px;
}

.result-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.result-footer,
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.mini-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(146, 112, 255, 0.88));
  color: #07111e;
  font-size: 0.76rem;
  font-weight: 700;
}

.meta-line {
  color: var(--muted);
  font-size: 0.84rem;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: stretch;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card p {
  min-height: 144px;
}

.slider-arrow {
  align-self: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.pricing-card {
  padding: 32px;
}

.pricing-card.highlight {
  padding-top: 24px;
}

.pricing-card.muted {
  background: rgba(14, 19, 25, 0.74);
}

.muted-list li {
  color: rgba(255, 255, 255, 0.58);
}

.best-value {
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 28px 0 20px;
}

.price-row strong {
  font-size: 3.5rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.price-row span {
  color: var(--muted);
}

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

.update {
  padding: 24px;
}

.contact-section {
  position: relative;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 0, 241, 0.22), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(0, 210, 190, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(8, 13, 22, 0.86);
  box-shadow:
    0 36px 96px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 16px;
}

.contact-copy h2 {
  margin: 16px 0 16px;
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.contact-copy p {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.76;
}

.contact-copy a {
  width: fit-content;
  color: #fff;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input[type="hidden"] {
  display: none;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  outline: 0;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form select option {
  color: #08101c;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(92, 0, 241, 0.16);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.footer {
  margin-top: 10px;
  padding: 54px 0 44px;
  background: rgba(4, 6, 10, 0.72);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1fr) minmax(120px, 0.35fr);
  gap: 28px;
  align-items: center;
}

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

.footer-brand span:last-child {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.footer-links a,
.footer-socials a,
.footer a {
  color: #fff;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  transition: color 0.22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  outline: 0;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 26px rgba(92, 0, 241, 0.2);
  color: #fff;
  outline: 0;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.4s;
}

@keyframes shimmer {
  0% {
    background-position: 150% center;
  }
  100% {
    background-position: -50% center;
  }
}

@keyframes vsl-wave-pulse {
  0% {
    opacity: 0.56;
    transform: scale(0.78);
  }
  55% {
    opacity: 0.22;
  }
  100% {
    opacity: 0;
    transform: scale(1.52);
  }
}

@keyframes progressMove {
  0% {
    width: 24%;
  }
  100% {
    width: 85%;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (hover: none) {
  .video-frame {
    transform: none;
  }

  .video-play,
  .video-lower {
    opacity: 1;
  }

  .video-play {
    pointer-events: auto;
  }

  .video-lower {
    transform: translateY(0);
  }

  .video-frame:hover .hero-video {
    transform: scale(1.012);
  }
}

@media (max-width: 1100px) {
  .site-header {
    top: 16px;
  }

  .nav {
    min-height: 52px;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    height: auto;
    padding: 16px;
    border-radius: 24px;
    background: rgba(10, 16, 27, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .transformation,
  .pricing-grid,
  .testimonial-wrap,
  .watch-showcase,
  .about-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2rem, 3.8vw, 2.55rem);
  }

  .hero-media {
    margin-top: 12px;
  }

  .floating {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .reels-showcase {
    grid-template-columns: 1fr;
  }

  .featured-reel {
    width: min(340px, 100%);
    margin: 0 auto;
  }

  .software-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    min-height: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-socials {
    justify-content: center;
  }

  .course-grid,
  .thumbnail-grid,
  .gallery-grid,
  .result-grid,
  .testimonial-track,
  .updates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 1280px);
  }

  .site-header {
    top: 10px;
  }

  .brand-name {
    display: none;
  }

  .main {
    gap: 48px;
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .hero {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6.6vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero h1 span {
    display: inline;
  }

  .hero h1 span:not(:last-child)::after {
    content: " ";
  }

  .hero-lead,
  .section-copy p,
  .about-copy p,
  .story-card p,
  .pricing-card p,
  .update p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .section-copy {
    margin-bottom: 20px;
  }

  .section-copy h2 {
    margin-top: 10px;
    font-size: clamp(1.62rem, 8vw, 2.15rem);
  }

  .button {
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.86rem;
  }

  .eyebrow,
  .section-kicker {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .trust-pill {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .video-caption {
    width: calc(100% - 24px);
    bottom: 14px;
    font-size: 0.72rem;
    text-align: center;
  }

  .video-ui {
    padding: 12px;
  }

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

  .video-frame {
    border-radius: 20px;
  }

  .reels-section::before {
    inset: -28px -10px auto;
    height: 360px;
    border-radius: 28px;
  }

  .reels-showcase {
    gap: 18px;
  }

  .featured-reel {
    width: min(260px, 100%);
    border-radius: 22px;
  }

  .reel-carousel-shell {
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
    padding: 18px 12px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .reel-carousel-top {
    padding: 0 4px;
  }

  .reel-carousel {
    display: flex;
    grid-auto-columns: unset;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 14px;
    scroll-padding-inline: 16px;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .reel-card {
    flex: 0 0 min(178px, 64vw);
    width: min(178px, 64vw);
    border-radius: 20px;
  }

  .reel-controls {
    display: none;
  }

  .reel-modal {
    padding: 14px;
  }

  .reel-modal-panel {
    width: min(340px, 92vw);
    border-radius: 22px;
  }

  .watch-section::before,
  .about-section::before,
  .software-section::before {
    inset: -24px -10px auto;
    height: 320px;
    border-radius: 28px;
  }

  .watch-showcase {
    gap: 16px;
  }

  .watch-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .watch-card {
    border-radius: 18px;
  }

  .watch-play {
    width: 54px;
    height: 54px;
  }

  .watch-modal {
    padding: 14px;
  }

  .watch-modal-panel {
    width: min(720px, 94vw);
    border-radius: 20px;
  }

  .about-layout {
    gap: 20px;
  }

  .about-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .about-copy p {
    margin-bottom: 14px;
  }

  .about-image {
    border-radius: 22px;
    aspect-ratio: 4 / 3;
  }

  .software-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .software-card {
    min-height: 220px;
    padding: 18px;
    border-radius: 20px;
  }

  .software-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 15px;
  }

  .software-icon img {
    width: 34px;
    height: 34px;
  }

  .software-card:hover,
  .software-card:focus-within {
    transform: translateY(-5px);
  }

  .contact-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .contact-copy {
    padding: 4px;
  }

  .contact-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(1.62rem, 8vw, 2.2rem);
  }

  .contact-form {
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .contact-form input,
  .contact-form select {
    min-height: 46px;
  }

  .contact-form textarea {
    min-height: 112px;
  }

  .course-grid,
  .gallery-grid,
  .result-grid,
  .testimonial-track,
  .updates {
    grid-template-columns: 1fr;
  }

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

  .thumbnail-showcase::before {
    inset: -18px -10px 64px;
    border-radius: 28px;
  }

  .thumbnail-card {
    border-radius: 14px;
  }

  .thumbnail-overlay {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 8px;
  }

  .thumbnail-overlay span {
    min-width: 30px;
    height: 26px;
    font-size: 0.64rem;
  }

  .thumbnail-overlay strong {
    max-width: 62%;
    font-size: 0.66rem;
  }

  .gallery-modal,
  .lightbox {
    padding: 14px;
  }

  .gallery-panel {
    max-height: 88vh;
    padding: 16px;
    border-radius: 22px;
  }

  .gallery-topbar {
    align-items: center;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    max-height: calc(88vh - 124px);
    gap: 12px;
  }

  .gallery-item {
    flex: 0 0 auto;
  }

  .lightbox-stage {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lightbox-stage figure {
    order: 1;
    border-radius: 18px;
  }

  .lightbox-stage img {
    max-height: 68vh;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: calc(50% - 32px);
    z-index: 2;
    width: 46px;
    height: 56px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: -58px;
  }

  .lightbox-stage figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    font-size: 0.74rem;
  }

  .slider-arrow {
    width: 100%;
    height: 48px;
    border-radius: 14px;
  }

  .pricing-card,
  .transformation-card,
  .result-card,
  .testimonial-card,
  .update {
    padding: 22px;
  }

  .footer {
    padding: 34px 0 28px;
  }

  .footer-links {
    gap: 14px 18px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-bottom {
    padding-top: 20px;
    text-align: center;
  }
}
