:root {
  --bg: #060706;
  --panel: #10120f;
  --panel-2: #171914;
  --ink: #f6f3ea;
  --muted: #b7bbad;
  --line: rgba(246, 243, 234, 0.14);
  --accent: #b7ff22;
  --accent-2: #ff4f2e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --display: "Barlow Condensed", Inter, Arial, Helvetica, sans-serif;
  --body: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 26% 0%, rgba(183, 255, 34, 0.08), transparent 30vw),
    linear-gradient(180deg, #050605 0%, var(--bg) 42%, #040504 100%);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 7, 6, 0.82);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 6, 0.94);
  border-color: rgba(183, 255, 34, 0.2);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--display);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #050505;
  font-size: 14px;
  box-shadow: 0 0 0 7px rgba(183, 255, 34, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-12deg) scale(1.04);
  box-shadow: 0 0 0 10px rgba(183, 255, 34, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  overflow: hidden;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(183, 255, 34, 0.12);
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(246, 243, 234, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 234, 0.052) 1px, transparent 1px);
  background-size: 100% 118px, 150px 100%;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.96) 0%, rgba(6, 7, 6, 0.78) 42%, rgba(6, 7, 6, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 7, 6, 1) 0%, rgba(6, 7, 6, 0.1) 42%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.86) contrast(1.15);
  transform: scale(1.04);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 84px 0 82px;
  position: relative;
}

.hero-inner::before {
  content: "NABI KANDIYEV";
  position: absolute;
  top: 38px;
  right: -8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 243, 234, 0.13);
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 178px);
  font-weight: 700;
  line-height: 0.82;
  pointer-events: none;
  writing-mode: vertical-rl;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero .actions,
.hero .stats,
.page-hero .eyebrow,
.page-hero h1 {
  animation: introUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1,
.page-hero h1 {
  animation-delay: 0.12s;
}

.hero .lead {
  animation-delay: 0.24s;
}

.hero .actions {
  animation-delay: 0.36s;
}

.hero .stats {
  animation-delay: 0.48s;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent);
}

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

h1 {
  max-width: 940px;
  margin-top: 24px;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 1.08;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  padding: 0.08em 0 0.06em;
}

h1 span,
.accent {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(183, 255, 34, 0.18);
}

.lead {
  max-width: 690px;
  margin-top: 26px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateX(-105%) skewX(-18deg);
  transition: transform 0.42s ease;
}

.btn:hover {
  color: #050505;
  transform: translateY(-3px);
  border-color: var(--accent);
}

.btn:hover::before {
  transform: translateX(0) skewX(0);
}

.btn.primary {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 16px 42px rgba(183, 255, 34, 0.16);
}

.btn.primary::before {
  background: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  max-width: 780px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat {
  padding: 22px;
  background: rgba(16, 18, 15, 0.76);
  transition: transform 0.35s ease, background 0.35s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(23, 25, 20, 0.94);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
  font-family: var(--display);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(183, 255, 34, 0.035) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.section:hover::before {
  opacity: 1;
}

.section.alt {
  background: #0b0d0a;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 38px;
}

h2 {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.1;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  padding-top: 0.04em;
}

.section-head p,
.rich p,
.card p,
.program p,
.lesson-row p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.program,
.lesson-row,
.quote,
.mini-card,
.price-card,
.price-teaser {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card::before,
.program::before,
.lesson-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(183, 255, 34, 0.13), transparent 38%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover,
.program:hover,
.lesson-row:hover,
.mini-card:hover,
.price-card:hover,
.price-teaser:hover {
  border-color: rgba(183, 255, 34, 0.38);
  background: #141711;
  transform: translateY(-7px);
}

.card:hover::before,
.program:hover::before,
.lesson-row:hover::before {
  opacity: 1;
}

.mini-card {
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.mini-card span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.mini-card h3 {
  margin: 22px 0 10px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.1;
  text-transform: uppercase;
}

.mini-card p {
  color: var(--muted);
}

.feature-split,
.home-pricing,
.offer-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.feature-split .eyebrow + h2,
.home-pricing .eyebrow + h2,
.offer-copy .eyebrow + h2 {
  margin-top: 18px;
}

.feature-split h2 + .lead,
.home-pricing h2 + p,
.offer-copy h2 + p {
  margin-top: 18px;
}

.feature-split p,
.home-pricing p,
.offer-copy p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  border-left: 2px solid var(--accent);
  background: rgba(16, 18, 15, 0.78);
  padding: 22px 24px;
}

.timeline strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.timeline span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.price-teasers,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-teaser {
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.price-teaser.featured,
.price-card.best {
  border-color: rgba(183, 255, 34, 0.55);
  background: linear-gradient(145deg, rgba(183, 255, 34, 0.14), rgba(16, 18, 15, 0.94));
}

.price-teaser strong,
.price-card h3 {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.price-teaser span {
  display: block;
  color: var(--accent);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.price-teaser small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.offer-block.reverse {
  direction: rtl;
}

.offer-block.reverse > * {
  direction: ltr;
}

.offer-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.price-card {
  padding: clamp(24px, 3vw, 32px);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.price-label {
  align-self: flex-start;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  white-space: normal;
}

.price-card strong {
  display: block;
  margin: 2px 0 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1;
}

.price-card p {
  margin-top: auto;
  color: var(--muted);
}

.price-card h3 {
  margin-top: 4px;
}

.card h3,
.program h3,
.lesson-row h3 {
  position: relative;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: var(--display);
  letter-spacing: 0;
}

.card .num {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.image-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.image-band img,
.gallery img,
.rich img,
.program img {
  border-radius: 8px;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.image-band img,
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-band img:hover,
.gallery img:hover,
.rich img:hover,
.program:hover img {
  filter: saturate(1.04) contrast(1.13);
  transform: scale(1.025);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery img {
  min-height: 250px;
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 7, 6, 0.95), rgba(6, 7, 6, 0.48)), linear-gradient(0deg, #060706, rgba(6, 7, 6, 0));
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.page-hero-inner {
  padding: 86px 0 64px;
}

.page-hero h1 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.08;
}

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

.rich img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.rich p + p {
  margin-top: 18px;
}

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

.program img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-body {
  padding: 24px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.steps {
  counter-reset: step;
}

.lesson-row {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  align-items: start;
}

.lesson-row + .lesson-row {
  margin-top: 14px;
}

.lesson-row .tag {
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
}

.quote {
  padding: 34px;
  background: linear-gradient(135deg, rgba(183, 255, 34, 0.12), rgba(255, 79, 46, 0.08));
  overflow: hidden;
  position: relative;
}

.quote::after {
  content: "CONTROL";
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 243, 234, 0.13);
  font-family: var(--display);
  font-size: clamp(72px, 14vw, 190px);
  line-height: 0.8;
  pointer-events: none;
}

.cta-panel,
.contact-panel,
.contact-card,
.faq-list details,
.deliverables {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-panel {
  padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(183, 255, 34, 0.13), rgba(255, 79, 46, 0.07) 42%, rgba(16, 18, 15, 0.96));
  overflow: hidden;
  position: relative;
}

.cta-panel h2,
.cta-panel p {
  max-width: 820px;
}

.cta-panel p {
  color: var(--muted);
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.contact-panel {
  padding: clamp(28px, 4vw, 46px);
}

.contact-panel p {
  color: var(--muted);
  margin-top: 18px;
}

.contact-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(150deg, rgba(183, 255, 34, 0.14), rgba(16, 18, 15, 0.94));
}

.contact-card strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.contact-card span {
  color: var(--ink);
  font-weight: 900;
  margin-top: 14px;
  text-transform: uppercase;
}

.contact-card p {
  color: var(--muted);
  margin-top: 18px;
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  list-style: none;
  padding: 24px 30px;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  float: right;
  font-family: var(--body);
  font-size: 28px;
  line-height: 1;
}

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

.faq-list p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 30px 28px;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding: 16px;
  box-shadow: none;
}

.deliverables strong {
  width: 100%;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.deliverables span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 0;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090a08;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 243, 234, 0.44);
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee b {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(183, 255, 34, 0.7);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.is-hover {
  width: 54px;
  height: 54px;
  border-color: rgba(246, 243, 234, 0.7);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.site-footer {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  background: #050605;
  color: var(--muted);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer strong {
  color: var(--ink);
  display: block;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer span {
  display: block;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
  text-transform: uppercase;
}

.footer-links a:hover {
  border-color: rgba(183, 255, 34, 0.45);
  color: var(--accent);
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-inner::before {
    display: none;
  }

  .section-head,
  .rich,
  .grid.two,
  .grid.three,
  .grid.four,
  .image-band,
  .feature-split,
  .home-pricing,
  .offer-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .gallery,
  .price-teasers,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-block.reverse {
    direction: ltr;
  }

  .price-card {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .price-teasers,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-teaser {
    min-height: auto;
  }

  .price-card p {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0 56px;
  }

  .stats,
  .gallery,
  .price-teasers,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .mini-card,
  .card,
  .program-body,
  .lesson-row,
  .quote,
  .contact-panel,
  .contact-card,
  .price-card,
  .price-teaser {
    padding: 22px;
  }

  .faq-list summary {
    padding: 20px 22px;
  }

  .faq-list p {
    padding: 18px 22px 22px;
  }

  .price-card strong {
    font-size: 40px;
  }

  .price-teaser strong,
  .price-card h3 {
    font-size: 28px;
  }

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

  .btn {
    width: 100%;
  }
}

@media (pointer: coarse), (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes introUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
