:root {
  --black: #000000;
  --white: #ffffff;
  --bg-card: #0c0c0c;
  --bg-card-raised: #131313;
  --line: rgba(255, 255, 255, 0.12);
  --text-soft: rgba(255, 255, 255, 0.82);
  --text-faint: rgba(255, 255, 255, 0.58);
  --overlay-top: rgba(0, 0, 0, 0.35);
  --overlay-bottom: rgba(0, 0, 0, 0.75);
  --header-h: 96px;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Poppins', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  position: relative;
  padding: 130px 24px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.2;
  margin: 0;
}

.section-text {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 16px 0 0;
}

.section.light {
  background: #ffffff;
  color: #000000;
  --text-soft: rgba(0, 0, 0, 0.72);
  --text-faint: rgba(0, 0, 0, 0.5);
  --line: rgba(0, 0, 0, 0.12);
  --bg-card: #f7f6f4;
  --bg-card-raised: #efeeeb;
}

.light .eyebrow {
  border-color: rgba(0, 0, 0, 0.3);
}

.light .btn-solid {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.light .btn-solid:hover {
  background: transparent;
  color: #000000;
}

.light .btn-outline {
  border-color: rgba(0, 0, 0, 0.4);
  color: #000000;
}

.light .btn-outline:hover {
  background: #000000;
  color: #ffffff;
}

.light .includes-list svg {
  color: #000000;
}

.light .progress-fill {
  background: #000000;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.42s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.58s; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 32px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  z-index: 99;
}

.mobile-nav.is-open {
  max-height: 420px;
}

.mobile-nav ul {
  padding: 12px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.mobile-nav .btn {
  display: inline-flex;
  margin-top: 4px;
  align-self: flex-start;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #000000;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-media video.is-ready {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, var(--overlay-top) 0%, rgba(0, 0, 0, 0.45) 45%, var(--overlay-bottom) 100%);
}

.hero-content {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 24px 90px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroIn 0.8s var(--ease) 0.1s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(38px, 6.4vw, 78px);
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.2s forwards;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  margin: 16px 0 0;
  color: var(--text-soft);
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.3s forwards;
}

.hero-text {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 24px 0 0;
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.4s forwards;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 26px 0 0;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.5s forwards;
}

.hero-meta span.dot {
  opacity: 0.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 38px 0 0;
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 0.6s forwards;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--white);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn .arrow {
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-solid {
  background: var(--white);
  color: var(--black);
}

.btn-solid:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--black);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  color: var(--text-faint);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}

.stats {
  padding: 90px 24px;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-card {
  position: relative;
  background: var(--bg-card);
  padding: 40px 32px;
  overflow: hidden;
  transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  background: var(--bg-card-raised);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-num {
  position: absolute;
  top: -6px;
  right: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 68px;
  line-height: 1;
  color: var(--line);
  pointer-events: none;
}

.benefit-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
}

.benefit-icon svg path,
.benefit-icon svg circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s var(--ease);
  transition-delay: 0.4s;
}

.reveal-stagger.is-visible .benefit-icon svg path,
.reveal-stagger.is-visible .benefit-icon svg circle {
  stroke-dashoffset: 0;
}

.benefit-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 10px;
}

.benefit-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-faint);
  margin: 0;
}

@media (max-width: 860px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { text-align: center; }
  .benefit-icon { margin-left: auto; margin-right: auto; }
}

.course-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.course-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.course-item:nth-child(even) {
  flex-direction: row-reverse;
}

.course-media {
  position: relative;
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.course-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.course-item:hover .course-media video {
  transform: scale(1.07);
}

.course-index {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--text-faint);
}

.course-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin: 10px 0 10px;
}

.course-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-faint);
  margin: 0;
  max-width: 420px;
}

.course-item:nth-child(even) .course-text {
  margin-left: auto;
}

@media (max-width: 760px) {
  .course-item, .course-item:nth-child(even) {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }
  .course-media { width: 100%; max-width: 260px; flex-basis: auto; margin: 0 auto; }
  .course-text { margin-left: auto; margin-right: auto; }
  .course-item:nth-child(even) .course-text { margin-left: auto; }
}

.trainerin {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.trainerin-portrait {
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}

.trainerin-portrait video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainerin-eyebrow {
  margin-bottom: 18px;
}

.trainerin-name {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
}

.trainerin-role {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 8px 0 0;
}

.trainerin-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}

@media (max-width: 860px) {
  .trainerin { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .trainerin-portrait { max-width: 360px; margin: 0 auto; }
  .trainerin-quote { border-left: none; padding-left: 0; }
}

.guest-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.guest-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  margin: 18px 0 0;
}

.guest-text {
  margin-top: 22px;
}

.guest-text + .guest-text {
  margin-top: 16px;
}

.guest-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}

.guest-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .guest-card { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guest-card .guest-image { order: -1; max-width: 360px; margin: 0 auto; }
}

.gallery-wrap {
  position: relative;
}

.gallery-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gallery-scroller::-webkit-scrollbar {
  display: none;
}

.gallery-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}

.gallery-nav svg {
  width: 18px;
  height: 18px;
}

.gallery-nav.prev {
  left: 8px;
}

.gallery-nav.next {
  right: 8px;
}

@media (max-width: 640px) {
  .gallery-nav { display: none; }
}

.gallery-tile {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg-card);
}

.gallery-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-tile:hover video {
  transform: scale(1.06);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  pointer-events: none;
}

.gallery-tile-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--white);
}

.registration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.registration-panel {
  min-width: 0;
  background: var(--bg-card);
  padding: 48px;
}

.countdown {
  display: flex;
  gap: 14px;
  margin: 28px 0 6px;
}

.countdown-unit {
  flex: 1;
  min-width: 0;
  background: var(--bg-card-raised);
  border: 1px solid var(--line);
  padding: 16px 8px;
  text-align: center;
}

.countdown-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.seats-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--text-soft);
}

.seats-row strong {
  font-family: var(--font-heading);
  font-weight: 600;
}

.progress-track {
  margin-top: 10px;
  height: 3px;
  background: rgba(128, 128, 128, 0.25);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--white);
  transition: width 1.1s var(--ease);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 40px;
}

.price-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
}

.price-note {
  font-size: 13px;
  color: var(--text-faint);
}

.includes-list {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-soft);
}

.includes-list svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--white);
}

.registration .btn {
  margin-top: 32px;
  width: 100%;
}

@media (max-width: 860px) {
  .registration { grid-template-columns: 1fr; }
  .registration-panel { padding: 36px 26px; }
  .countdown { gap: 8px; }
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-item {
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15.5px;
  text-align: left;
  cursor: pointer;
}

.faq-question .plus {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: '';
  position: absolute;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-question .plus::before {
  width: 14px;
  height: 1px;
}

.faq-question .plus::after {
  width: 1px;
  height: 14px;
}

.faq-item.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 26px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-faint);
  max-width: 620px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-brand img {
  height: 26px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-faint);
  max-width: 260px;
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-soft);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .header-inner { padding: 0 20px; }
  .hero-content { padding-top: 110px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .section { padding: 90px 20px; }
  .section-head { margin-bottom: 44px; }
  .countdown { gap: 6px; }
  .countdown-unit { padding: 12px 4px; }
  .countdown-value { font-size: 20px; }
}
