/* ============================================================
   SPACEBOX — style.css  (KiwiCo-inspired structure)
   ============================================================ */

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

:root {
  --orange:    #FF6528;
  --orange-dk: #D33600;
  --blue:      #1D5FC3;
  --blue-dk:   #1C446B;
  --green:     #008549;
  --teal:      #00B8A0;
  --purple:    #7B5EA7;
  --yellow:    #FFB800;
  --dark:      #1A1733;
  --text:      #3A3753;
  --text2:     #706D8C;
  --text3:     #444444;
  --border:    #E8E5F0;
  --bg:        #FFFFFF;
  --bg-soft:   #F9F7FF;
  --radius:    0.5rem;
  --radius-lg: 1rem;
  --max-w:     1200px;
  --nav-h:     3.5rem;
  --announce-h: 2.75rem;
  --font:      'Inter', sans-serif;
  --font-d:    'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.type-heading-d {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.type-body-d {
  font-size: 1.0625rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Decorative dot on letters (like KiwiCo heading dots) */
.heading-dot {
  position: relative;
  display: inline;
}
.heading-dot::after {
  content: '';
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  opacity: 0.25;
  z-index: -1;
}
.heading-dot--green::after  { background: var(--green); }
.heading-dot--yellow::after { background: var(--yellow); }
.heading-dot--orange::after { background: var(--orange); }

.heading-wand {
  display: inline-block;
  width: 1.5rem;
  margin-left: 0.375rem;
  vertical-align: middle;
  transform: translateY(-0.2em);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-d);
  font-weight: 800;
  border-radius: 99px;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--filled {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,101,40,0.28);
}
.btn--filled:hover {
  background: var(--orange-dk);
  box-shadow: 0 4px 16px rgba(255,101,40,0.36);
}

.btn--hero {
  background: var(--orange);
  color: #fff;
  font-size: 1.125rem;
  padding: 0.875rem 2.25rem;
  box-shadow: 0 4px 20px rgba(255,101,40,0.38);
  border-radius: 99px;
}
.btn--hero:hover {
  background: var(--orange-dk);
  box-shadow: 0 6px 24px rgba(255,101,40,0.45);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}

.btn--small {
  font-size: 0.875rem;
  padding: 0.5rem 1.125rem;
}

.btn--form {
  border-radius: 0 99px 99px 0;
  padding: 0 1.25rem;
  height: 100%;
}

.btn--join-left {
  border-radius: 0 99px 99px 0;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */

.section {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section--center { text-align: center; }

.section--pad-s { padding-top: 1.25rem;  padding-bottom: 1.25rem; }
.section--pad-m { padding-top: 2.5rem;   padding-bottom: 2.5rem; }
.section--pad-l { padding-top: 3.75rem;  padding-bottom: 3.75rem; }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */

.announce-bar {
  background: var(--orange-dk);
  color: #fff;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-d);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 200;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.announce-bar__icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(10);
  flex-shrink: 0;
}

/* ============================================================
   NAV
   ============================================================ */

.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s, top 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo { flex-shrink: 0; }
.nav__logo-link { display: flex; align-items: center; }

.nav__logo-text {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.nav__logo-accent { color: var(--orange); }

.nav__desktop-links {
  display: none;
  gap: 0.25rem;
  margin-left: 1rem;
}
@media (min-width: 768px) { .nav__desktop-links { display: flex; } }

.nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.375rem 0.75rem;
  border-radius: 99px;
  transition: background 0.15s, color 0.15s;
}
.nav__link:hover { background: var(--bg-soft); color: var(--orange); }

.nav__cta-btn { }
@media (max-width: 767px) { .nav__cta-btn { display: none; } }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

/* ── Lang toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  flex-shrink: 0;
}
.lang-toggle--mobile {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  justify-content: flex-start;
  margin-left: 0;
}
.lang-btn {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--text2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: color 0.15s, background 0.15s;
}
.lang-btn:hover { color: var(--orange); }
.lang-btn--active {
  color: var(--orange);
  background: rgba(255, 101, 40, 0.08);
}
.lang-sep {
  color: var(--border);
  font-size: 0.75rem;
  user-select: none;
}
@media (min-width: 768px) { .nav__burger { display: none; } }

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav__mobile a {
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 0.5rem; text-align: center; }
.site-nav.open .nav__mobile { display: flex; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: #0D0B1E; /* fallback if video fails to load */
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1.25rem;
}

/* Video background */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay so text stays readable over the video */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 28, 0.52) 0%,
    rgba(10, 5, 28, 0.38) 60%,
    rgba(10, 5, 28, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-d);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.3rem 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero__title {
  font-family: var(--font-d);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero__title-highlight {
  color: #FFD066;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero__note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* Tape decorations */
.hero__tape {
  position: absolute;
  top: 1.5rem;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}
.hero__tape img { width: 4rem; }
.hero__tape--left  { left: 1.5rem;  transform: rotate(-15deg); }
.hero__tape--right { right: 1.5rem; transform: rotate(12deg); }

/* ============================================================
   QUICK NAV (kit tabs below hero)
   ============================================================ */

.quick-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.quick-nav__list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.quick-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.15s;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-d);
  color: var(--text);
}
.quick-nav__item:hover { background: var(--bg-soft); color: var(--orange); }
.quick-nav__item small { font-size: 0.75rem; font-weight: 400; color: var(--text2); }

.quick-nav__icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

/* ============================================================
   HOW IT WORKS — club-intro-list
   ============================================================ */

.sub-intro { background: var(--bg-soft); }

.sub-intro > .type-heading-d { margin-bottom: 2.5rem; }

.club-intro-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.625rem;
  margin-bottom: 3rem;
  list-style: none;
}

@media (max-width: 600px) {
  .club-intro-list {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

.club-intro-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.club-intro-list__icon-container {
  background: #fff;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.club-intro-list__icon {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.club-intro-list__heading-wrap {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.club-intro-list__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.club-intro-list__number-circle {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
}

.club-intro-list__desc {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.55;
  max-width: 220px;
}

/* ============================================================
   KITS — clubs-list + card
   ============================================================ */

.join-the-club {
  background: var(--bg);
}

.join-the-club > .type-heading-d {
  margin-bottom: 2rem;
}

.clubs-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

@media (max-width: 700px) {
  .clubs-list { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 701px) and (max-width: 900px) {
  .clubs-list { grid-template-columns: repeat(3, 1fr); }
}

.clubs-list__item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.clubs-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  height: 100%;
}

.card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.35s;
}
.clubs-list__item:hover .card__img { transform: scale(1.04); }

.card__content {
  padding: 0.875rem 1rem 1rem;
}

.card__content-age {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.card__content-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 0.375rem;
  object-fit: contain;
}

.card__content-tagline {
  font-size: 0.875rem;
  color: var(--text2);
}

/* ============================================================
   DESIGNED TO INSPIRE — product-inspiration
   ============================================================ */

.product-inspiration {
  background: var(--bg-soft);
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.product-inspiration .type-heading-d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.product-inspiration .type-body-d { margin-bottom: 1.75rem; }

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.category-tag {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.0625rem;
  padding: 0.375rem 1rem;
  border-radius: 99px;
  transition: transform 0.15s;
}
.category-tag:hover { transform: scale(1.04); }

.category-tag--blue   { background: #D6E4FF; color: #1D5FC3; }
.category-tag--orange { background: #FFE8DC; color: var(--orange-dk); }
.category-tag--green  { background: #D4F5E2; color: var(--green); }
.category-tag--teal   { background: #D0F5F0; color: var(--teal); }
.category-tag--purple { background: #E8DCFF; color: var(--purple); }

.brand-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .brand-showcase { grid-template-columns: 1fr; }
}

.brand-showcase__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.brand-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.brand-showcase__item:hover img { transform: scale(1.04); }

/* ============================================================
   UGC SECTION
   ============================================================ */

.ugc-section {
  overflow: hidden;
  background: var(--bg);
}

.ugc-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}
.ugc-row::-webkit-scrollbar { display: none; }

.ugc-grid {
  display: grid;
  gap: 10px;
  flex-shrink: 0;
}

.ugc-grid--even {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 140px);
  width: max-content;
}

.ugc-grid--tall {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 200px 80px;
  width: max-content;
}

.ugc-img {
  object-fit: cover;
  border-radius: var(--radius);
  width: 140px;
  height: 100%;
  display: block;
}

@media (min-width: 768px) {
  .ugc-grid--even { grid-template-rows: repeat(2, 180px); }
  .ugc-grid--tall { grid-template-rows: 240px 120px; }
  .ugc-img { width: 180px; }
}

/* ============================================================
   FAQ
   ============================================================ */

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

.faq-contents {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.faq-contents .type-heading-d {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-list { display: flex; flex-direction: column; }

.toggle__wrapper {
  border-bottom: 1px solid var(--border);
}
.toggle__wrapper:first-child { border-top: 1px solid var(--border); }

.toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.125rem 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
}

.toggle p {
  flex: 1;
  line-height: 1.4;
  font-size: 0.9375rem;
}

.toggle__icon {
  flex-shrink: 0;
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  transition: transform 0.22s;
}

.toggle__wrapper.open .toggle__icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.toggle__wrapper.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1rem;
}

.faq-answer dd p {
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, #FFF2EB 0%, #FFF8F5 100%);
  border-top: 1px solid #FFD0B5;
  padding: 4rem 0;
}

.cta-newsletter {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.cta-newsletter__heading h3 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline;
}

.cta-newsletter__underline {
  border-bottom: 2px solid var(--green);
}

.cta-newsletter__icon {
  display: inline-block;
  width: 1.75rem;
  vertical-align: middle;
  margin-left: 0.375rem;
  transform: translate(0.2rem, -0.2rem);
}

.cta-newsletter__form { margin-top: 1.5rem; }

.form-group {
  display: flex;
  border-radius: 99px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.form-group--inline { display: flex; }

.form__wrapper {
  display: block;
  flex: 1;
}

.form__wrapper--join-right {
  border-radius: 99px 0 0 99px;
}

.form__field {
  width: 100%;
  height: 3rem;
  padding: 0 1.125rem;
  font-size: 0.9375rem;
  font-family: var(--font);
  border: none;
  background: transparent;
  color: var(--dark);
  outline: none;
}
.form__field::placeholder { color: var(--text2); }

.cta-success {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.5rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: start;
  }
}

.footer__newsletter-signup {
  max-width: 320px;
}

.footer__newsletter-signup-heading h4 {
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.footer__underline {
  border-bottom: 1.5px solid var(--green);
}

.footer__newsletter-signup-icon {
  display: inline-block;
  width: 1.375rem;
  vertical-align: middle;
  margin-left: 0.25rem;
  transform: translate(0.2rem, -0.2rem);
}

.footer__newsletter-signup-form .form-group {
  border-color: #D9D9D9;
}

.footer__disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text2);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 500px) {
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

.footer__col-heading {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: var(--text3);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--blue); text-decoration: underline; }

.footer__sub-footer {
  border-top: 0.5px solid #D9D9D9;
  background: rgba(0,0,0,0.02);
  padding: 1.875rem 0 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__divider {
  display: none;
}

.footer__logo-text {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text2);
  opacity: 0.55;
}
.footer__logo-text span { color: var(--orange); opacity: 1; }

.footer__terms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.footer__terms-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__terms-link {
  color: var(--text3);
  font-size: 0.8125rem;
  transition: color 0.15s;
}
.footer__terms-link:hover { color: var(--blue); }

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text2);
}

/* ============================================================
   MISSIONS BOXES GRID
   ============================================================ */

.missions-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

@media (max-width: 900px) {
  .missions-boxes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .missions-boxes-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

.mission-box-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.mission-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.mission-box-card--soon {
  opacity: 0.75;
}

.mission-box-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0D0B1E;
}

.mission-box-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D0B1E 0%, #1A1733 100%);
}

.mission-box-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.mission-box-card:hover .mission-box-card__img { transform: scale(1.04); }

.mission-box-card__placeholder-icon {
  font-size: 4rem;
  line-height: 1;
}

.mission-box-card__rank {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.2rem 0.625rem;
}

.mission-box-card__coming-soon {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  background: var(--yellow);
  color: #1A1733;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 99px;
  padding: 0.2rem 0.625rem;
}

.mission-box-card__content {
  padding: 1rem 1.125rem 1.25rem;
}

.mission-box-card__num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.mission-box-card__title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.mission-box-card__experiments {
  font-size: 0.8125rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.mission-box-card__module {
  font-size: 0.8125rem;
  color: var(--text2);
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.mission-box-card__module-label {
  font-weight: 700;
  color: var(--dark);
}

/* ============================================================
   STATION SECTION
   ============================================================ */

.station-section {
  background: linear-gradient(135deg, #0D0B1E 0%, #1A1733 50%, #0F1B3A 100%);
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.station-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.station-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 0.875rem;
  min-width: 100px;
  text-align: center;
  transition: background 0.2s;
}

.station-step:hover {
  background: rgba(255,255,255,0.1);
}

.station-step__icon {
  font-size: 2rem;
  line-height: 1;
}

.station-step__box {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.station-step__name {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
}

.station-step__arrow {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .station-step__arrow { display: none; }
  .station-steps { gap: 0.625rem; }
  .station-step { min-width: 86px; padding: 0.75rem 0.625rem; }
}

/* ============================================================
   TELEGRAM COMMUNITY SECTION
   ============================================================ */

.telegram-section {
  background: #0D0B1E;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.telegram-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 700px) {
  .telegram-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 440px) {
  .telegram-features { grid-template-columns: 1fr; }
}

.telegram-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.telegram-feature__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.telegram-feature__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ============================================================
   RESERVATION FORM (CTA)
   ============================================================ */

.cta-reservation-form {
  width: 100%;
}

.reservation-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

@media (max-width: 480px) {
  .reservation-fields { grid-template-columns: 1fr; }
}

.reservation-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.reservation-label {
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-d);
  color: var(--dark);
}

.reservation-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  font-size: 0.9375rem;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.reservation-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,101,40,0.12);
}

.reservation-input::placeholder { color: var(--text2); }

.reservation-submit {
  width: 100%;
  margin-top: 0.25rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 480px) {
  .hero { min-height: 85vh; }
  .hero__title { font-size: 2.125rem; }

  .club-intro-list__icon-container { width: 4rem; height: 4rem; }
  .club-intro-list__icon { width: 2.75rem; height: 2.75rem; }

  .category-tags { gap: 0.5rem; }
  .category-tag { font-size: 0.9375rem; padding: 0.3rem 0.75rem; }
}

/* ============================================================
   GAMES SECTION
   ============================================================ */

.games-section {
  background: var(--dark);
  padding: 0;
}

.games-section .type-heading-d { color: #fff; }
.games-section .type-body-d    { color: rgba(255,255,255,0.65); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 520px) {
  .games-grid { grid-template-columns: 1fr; }
}

.game-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 200px 1fr;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.game-card--v {
  grid-template-columns: 1fr;
  grid-template-rows: 200px 1fr;
}

.game-card__emoji-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  line-height: 1;
}

.game-card__preview {
  position: relative;
  overflow: hidden;
  background: #0D0B1E;
  min-height: 200px;
}

.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.35s;
}
.game-card:hover .game-card__img { opacity: 0.9; transform: scale(1.05); }

.game-card__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card__play-btn svg {
  background: var(--orange);
  border-radius: 50%;
  padding: 14px;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 20px rgba(255,101,40,0.5);
  transition: transform 0.2s;
}
.game-card:hover .game-card__play-btn svg { transform: scale(1.1); }

.game-card__tape {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 3rem;
  transform: rotate(-12deg);
  opacity: 0.85;
}

.game-card__info {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: left;
}

.game-card__title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.375rem;
  color: #fff;
}

.game-card__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex: 1;
}

.game-card__controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.game-card__controls kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-size: 0.875rem;
  font-family: var(--font);
  color: rgba(255,255,255,0.85);
  min-width: 1.75rem;
}
.game-card__controls span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-left: 0.25rem;
}

.game-card__cta { margin-top: 0.25rem; align-self: flex-start; }

/* ============================================================
   PRODUCT PAGE — KIT PAGES
   ============================================================ */

.kit-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
@media (max-width: 700px) { .kit-hero { grid-template-columns: 1fr; } }

.kit-hero__image {
  position: relative;
  overflow: hidden;
}
.kit-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.kit-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 2.5rem;
  background: var(--bg-soft);
}
@media (max-width: 700px) {
  .kit-hero__content { padding: 2rem 1.25rem; }
}

.kit-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-d);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.kit-hero__title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.kit-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.kit-hero__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.kit-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.kit-hero__meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text2);
}
.kit-hero__meta-value {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}

.kit-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Box contents */
.box-contents-section {
  background: var(--bg);
  padding: 4rem 0;
}
.box-contents-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.box-contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.box-item {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s;
}
.box-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.box-item__icon { font-size: 2.25rem; margin-bottom: 0.625rem; }
.box-item__name {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.box-item__desc { font-size: 0.8125rem; color: var(--text2); line-height: 1.45; }

/* Missions */
.missions-section {
  background: var(--bg-soft);
  padding: 4rem 0;
}
.missions-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 700px) {
  .missions-grid { grid-template-columns: 1fr; }
}
.mission-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
}
.mission-card__num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.mission-card__title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--dark);
  margin-bottom: 0.375rem;
}
.mission-card__desc { font-size: 0.875rem; color: var(--text2); line-height: 1.5; }

/* Related kits */
.related-section {
  background: var(--bg);
  padding: 3.5rem 0;
  text-align: center;
}
.related-section h2 { margin-bottom: 2rem; }
.related-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1.25rem;
}
.related-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 200px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.related-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.related-card__name {
  padding: 0.5rem 0.75rem 0.75rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.9375rem;
  background: var(--bg-soft);
  text-align: center;
}

/* Kit breadcrumb */
.kit-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text2);
}
.kit-breadcrumb a { color: var(--orange); font-weight: 600; }
.kit-breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   GAME PAGE
   ============================================================ */

.game-page-hero {
  background: var(--dark);
  padding: 2rem 1.25rem 0;
  text-align: center;
}
.game-page-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.game-page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.game-wrap {
  background: #0D0B1E;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 1rem;
}

.game-canvas-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
#game-canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
}

.game-dpad {
  display: none;
  margin: 1rem auto 0;
  width: 160px;
  position: relative;
  height: 160px;
  flex-shrink: 0;
}
@media (max-width: 900px) and (pointer: coarse) {
  .game-dpad { display: block; }
}

.dpad-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  transition: background 0.1s;
}
.dpad-btn:active, .dpad-btn.pressed { background: rgba(255,101,40,0.5); }
.dpad-up    { top: 0;    left: 56px; }
.dpad-down  { bottom: 0; left: 56px; }
.dpad-left  { top: 56px; left: 0; }
.dpad-right { top: 56px; right: 0; }

.game-instructions {
  background: #0D0B1E;
  padding: 1rem 1.25rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.game-instructions kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  min-width: 1.75rem;
}

/* ============================================================
   ANNOUNCE BAR — CLOSE BUTTON
   ============================================================ */

.announce-bar {
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.announce-bar--hidden {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.announce-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1;
  padding: 0.25rem 0.375rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.announce-bar__close:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.announce-bar__inner { position: relative; }

/* ============================================================
   CONSENT CHECKBOX
   ============================================================ */

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.875rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.consent-checkbox {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1rem;
  accent-color: var(--orange);
  cursor: pointer;
}
.consent-text {
  font-size: 0.8125rem;
  color: var(--text2);
  line-height: 1.5;
}
.consent-link {
  color: var(--orange);
  text-decoration: underline;
}
.consent-field--footer .consent-text { font-size: 0.75rem; }
.consent-field--popup { margin-top: 0.75rem; margin-bottom: 0.5rem; }

/* ============================================================
   EMAIL POP-UP
   ============================================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 50, 0.65);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.popup-overlay--visible {
  opacity: 1;
  visibility: visible;
}
.popup {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.popup-overlay--visible .popup {
  transform: none;
}
.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--text2);
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.popup__close:hover { color: var(--dark); background: var(--bg-soft); }
.popup__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.popup__title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.625rem;
  line-height: 1.2;
}
.popup__desc {
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.popup__form { display: flex; flex-direction: column; }
.popup__input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.popup__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,101,40,0.12);
}
.popup__input::placeholder { color: var(--text2); }
.popup__submit { width: 100%; margin-top: 0.25rem; }
.popup__success {
  padding: 1rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--green);
}
.popup__success p { line-height: 1.55; }

/* ============================================================
   BOX DETAIL PAGE
   ============================================================ */

.box-page-hero {
  background: var(--bg-soft);
  padding: 3rem 1.25rem 2.5rem;
}
.box-page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 680px) {
  .box-page-hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.box-page-hero__img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  margin: 0 auto;
  display: block;
}
.box-page-hero__badge {
  display: inline-block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.box-page-hero__title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.box-page-hero__sub {
  font-size: 1.0625rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.box-page-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.box-page-meta__item { display: flex; flex-direction: column; gap: 0.15rem; }
.box-page-meta__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text2);
}
.box-page-meta__value {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}

.box-page-section {
  padding: 3rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.box-page-section__title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.box-experiments-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.box-experiment-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}
.box-experiment-card__icon { font-size: 2rem; margin-bottom: 0.625rem; }
.box-experiment-card__title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--dark);
  margin-bottom: 0.375rem;
}
.box-experiment-card__desc { font-size: 0.9rem; color: var(--text2); line-height: 1.55; }

.box-skills-list {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.box-skill-tag {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.35rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.box-module-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 560px;
}
.box-module-card__icon { font-size: 3rem; flex-shrink: 0; }
.box-module-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.box-module-card__name {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.2;
}

.box-contents-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.box-content-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.box-content-item__icon { font-size: 1.875rem; margin-bottom: 0.5rem; }
.box-content-item__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.box-page-nav {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}
.box-page-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.box-page-nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--orange);
  transition: gap 0.15s;
}
.box-page-nav__link:hover { gap: 0.75rem; }
.box-page-nav__all {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text2);
}
.box-page-nav__all:hover { color: var(--orange); }
