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

:root {
  --cream: #fff9f2;
  --red: #d61022;
  --navy: #0a172e;
  --navy-deep: #09172e;
  --black: #121212;
  --white: #ffffff;
  --gray-band: #c8c8c8;
  --hero-gradient: linear-gradient(180deg, #09172eeb 0%, #1e94e36e 58%);
  --counter-gradient: linear-gradient(180deg, #0a172e 0%, #123f8e 100%);
}

html {
  scroll-behavior: smooth;
}

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

body.page-home {
  background: var(--cream);
  color: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Hero overlay header (index.html) */
.page-home .hero-pen .ns-header--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.page-home .hero-pen .ns-header--hero .ns-header__inner {
  max-width: 1440px;
  padding-inline: 8px;
  pointer-events: auto;
}

.page-home .hero-pen .ns-header--hero .ns-header__logo {
  position: relative;
  z-index: 51;
}

.page-home .hero-pen .ns-header--hero .ns-header__logo img {
  position: relative;
  z-index: 51;
  display: block;
}

.page-home .hero-pen .ns-header--hero .ns-menu-trigger {
  background: #ececec;
  color: var(--navy-deep);
}

.page-home .hero-pen .ns-header--hero .ns-menu-trigger:hover {
  background: #fff;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  background: var(--red);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-primary--navy {
  background: var(--navy-deep);
  color: var(--cream);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* Hero */
.hero-pen {
  position: relative;
  width: 100%;
  min-height: min(1054px, 100vh);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-pen__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pen__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-gradient);
  pointer-events: none;
}

.hero-pen__glow {
  position: absolute;
  z-index: 1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-pen__glow--cyan {
  left: 19%;
  top: 1%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.33) 0%, transparent 70%);
}

.hero-pen__glow--violet {
  right: 18%;
  top: 13%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.33) 0%, transparent 70%);
}

.hero-pen__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  justify-items: center;
  align-content: start;
  row-gap: 10px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  min-height: auto;
  padding: 64px 16px 20px;
  box-sizing: border-box;
}

.hero-pen__visual {
  grid-row: 1;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2.5vh, 20px);
  width: 100%;
  max-width: min(420px, 92vw);
  margin-inline: auto;
  isolation: isolate;
}

.hero-pen__product {
  position: relative;
  z-index: 0;
  flex: 0 0 auto;
  width: min(350px, 70vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  display: block;
}

.hero-pen__title {
  grid-row: 2;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1226px;
  padding-inline: 4px;
  font-size: clamp(16px, 4.8vw, 28px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  color: var(--white);
}

.hero-pen__title-line {
  display: block;
}

.hero-pen__actions {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  padding: 0 4px;
  pointer-events: auto;
}

.hero-pen__actions .btn-primary,
.hero-pen__actions .btn-secondary {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  justify-content: center;
  font-size: clamp(11px, 3.1vw, 15px);
  padding: 12px clamp(8px, 2.2vw, 14px);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .hero-pen__grid {
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    row-gap: clamp(20px, 3vh, 32px);
    min-height: min(1054px, 100vh);
    padding: 96px 24px 48px;
  }

  .hero-pen__visual {
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: center;
    z-index: 10;
    gap: 16px;
    margin-top: 0;
    max-width: min(440px, 40vw);
    isolation: isolate;
  }

  .hero-pen__product {
    flex: 0 0 auto;
    width: auto;
    max-width: min(600px, 50vw);
    max-height: min(600px, 55vh);
    z-index: 0;
  }

  .hero-pen__actions {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    width: auto;
    max-width: 100%;
    pointer-events: auto;
  }

  .hero-pen__title {
    grid-row: 2;
    align-self: center;
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 1226px;
    padding-inline: 0;
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.05;
  }

  .hero-pen__title-line {
    white-space: normal;
  }

  .hero-pen__actions .btn-primary,
  .hero-pen__actions .btn-secondary {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    font-size: 18px;
    padding: 16px 24px;
  }
}

/* Gallery */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 75px 54px 120px;
  background: var(--cream);
}

.gallery__title {
  max-width: 836px;
  font-size: clamp(28px, 4vw, 55px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  color: var(--navy);
  white-space: pre-line;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1392px;
}

.gallery__card {
  aspect-ratio: 449 / 534;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
}

.gallery__card:not(.feature-card) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature Cards (gallery replacement) */
.feature-card.gallery__card {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card.gallery__card:hover {
  transform: translateY(-8px) scale(1.01);
}

.feature-card__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 28vw, 280px);
  flex-shrink: 0;
  overflow: hidden;
  background: #2a1045;
  border-radius: 20px 20px 0 0;
}

.feature-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feature-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: #90d4fa;
  border-radius: 4px;
  padding: 3px 8px;
  align-self: flex-start;
}

.feature-card__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}

.feature-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}

.feature-card__stat {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* Divider */
.section-divider {
  background: var(--cream);
  padding: 28px 54px;
}

.section-divider__line {
  height: 5px;
  width: 100%;
  background: var(--navy-deep);
  border-radius: 2px;
}

/* Platforms */
.platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 54px;
  background: var(--cream);
  text-align: center;
}

.platforms__title {
  font-family: "Blinker", sans-serif;
  font-size: clamp(36px, 7vw, 96px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
}

.platforms__subtitle {
  font-family: "Blinker", sans-serif;
  font-size: clamp(24px, 4.5vw, 61px);
  font-style: italic;
  font-weight: 900;
  color: var(--navy);
}

.platforms__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin-top: 8px;
}

.platforms__logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.platforms__logo-cell img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.platforms__logo-cell--win img {
  max-height: 140px;
}

.platforms__note {
  width: 100%;
  max-width: 1263px;
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 800;
  text-align: right;
  color: var(--navy);
}

/* Counter */
.counter {
  padding: 0 54px 32px;
  background: var(--cream);
}

.counter__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 40px;
  border-radius: 30px;
  background: var(--counter-gradient);
  color: var(--white);
}

.counter__title {
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 900;
  text-align: center;
  color: var(--white);
}

.counter__text {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: var(--cream);
}

.counter__progress {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.counter__track {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.counter__fill {
  height: 100%;
  border-radius: 6px;
  background: var(--white);
  width: 53.3%;
  transition: width 1.2s ease-out;
}

.counter__labels {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}

/* Merch */
.merch {
  background: var(--gray-band);
  padding: 60px 54px;
}

.merch__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.merch__title {
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  font-weight: 900;
  color: var(--navy);
}

.merch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 30px;
  background: var(--navy-deep);
  color: var(--white);
}

.merch-card__badge {
  font-size: 15px;
  font-weight: 600;
  color: #e73b3b;
}

.merch-card__img {
  height: 280px;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.merch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-card__price {
  font-size: 23px;
  font-weight: 700;
}

.merch-card__name {
  font-size: 20px;
  font-weight: 700;
}

/* Partner */
.partner {
  background: var(--gray-band);
  padding: 0 54px 24px;
}

.partner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image";
  min-height: 437px;
  border-radius: 30px;
  overflow: hidden;
}

.partner__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 58px 48px;
  background: var(--black);
  color: var(--white);
  border-radius: 30px 0 0 30px;
}

.partner__headlines {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner__headline-sm {
  font-size: clamp(32px, 4vw, 55px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
}

.partner__headline-lg {
  font-size: clamp(56px, 8vw, 100px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
}

.partner__copy {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 590px;
}

.newsletter-field {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 12px 8px 16px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-field input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 18px;
  outline: none;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-field .btn-send {
  flex-shrink: 0;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  font-family: inherit;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
}

.partner__img {
  grid-area: image;
  min-height: 280px;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}

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

/* Footer */
.site-footer {
  padding: 0 20px 28px;
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy);
  border-radius: 16px;
  padding: 18px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 36px;
  justify-content: center;
}

.site-footer__link {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: #00c2ff;
  text-decoration: none;
}

.site-footer__copy {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  position: absolute;
  right: 32px;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 23, 46, 0.72);
  backdrop-filter: blur(6px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__dialog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 691px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.age-gate__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.age-gate__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-deep);
}

.age-gate__question {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.age-gate__img {
  min-height: 200px;
  background: #ddd center/cover no-repeat;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery__row,
  .merch__grid {
    grid-template-columns: 1fr;
  }

  .partner__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
    min-height: 0;
  }

  .partner__text {
    border-radius: 0 0 30px 30px;
  }

  .partner__img {
    border-radius: 30px 30px 0 0;
    min-height: 240px;
  }

  .platforms__note {
    text-align: center;
  }

  .platforms__logo-cell {
    min-height: 0;
  }

  .platforms__logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: clamp(6px, 1.5vw, 12px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .platforms__logo-cell,
  .platforms__logo-cell--win {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .platforms__logo-cell img {
    max-height: clamp(60px, 12vw, 140px);
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .platforms__logo-cell--win img {
    max-height: clamp(50px, 10vw, 110px);
    max-width: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
  }

  .feature-card__visual {
    width: 100%;
    max-width: 100%;
    height: clamp(240px, 40vw, 300px);
    margin: 0;
    border-radius: 20px 20px 0 0;
  }

  .feature-card__visual img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .gallery,
  .platforms,
  .counter,
  .merch,
  .partner,
  .site-footer,
  .section-divider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-home .page {
    max-width: 100%;
    overflow-x: hidden;
  }

  .gallery {
    padding-top: 48px;
    padding-bottom: 64px;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .gallery__title {
    font-size: clamp(35px, 10vw, 45px);
  }

  .gallery__row {
    width: 100%;
    min-width: 0;
  }

  .gallery__card,
  .feature-card.gallery__card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .feature-card__visual {
    width: 100%;
    max-width: 100%;
    height: clamp(200px, 52vw, 260px);
    margin: 0;
    border-radius: 20px 20px 0 0;
  }

  .feature-card__visual img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-divider {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .platforms {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 16px;
  }

  .platforms__logos {
    gap: 6px;
  }

  .platforms__logo-cell img {
    max-height: 80px;
  }

  .platforms__logo-cell--win img {
    max-height: 65px;
  }

  .platforms__note {
    font-size: 12px;
  }

  .counter {
    padding-bottom: 20px;
  }

  .counter__box {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .counter__text {
    font-size: 14px;
  }

  .counter__labels {
    font-size: 14px;
    gap: 8px;
  }

  .merch {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .merch__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .merch__head .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .partner {
    padding: 0 16px 24px;
  }

  .partner__inner {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .partner__img {
    min-height: 0;
    height: clamp(140px, 38vw, 200px);
    border-radius: 20px 20px 0 0;
  }

  .partner__img img {
    object-position: center 35%;
  }

  .partner__text {
    padding: 24px 20px 28px;
    gap: 14px;
    border-radius: 0 0 20px 20px;
    overflow: visible;
    box-sizing: border-box;
    max-width: 100%;
  }

  .partner__headlines {
    gap: 2px;
    margin-bottom: 2px;
  }

  .partner__headline-sm {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.1;
  }

  .partner__headline-lg {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .partner__copy {
    font-size: 15px;
    line-height: 1.45;
    max-width: none;
    color: rgba(255, 255, 255, 0.75);
  }

  .partner__form {
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    box-sizing: border-box;
  }

  .newsletter-field {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-sizing: border-box;
  }

  .newsletter-field input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
  }

  .newsletter-field .btn-send {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
  }

  /* Hero */
  .hero-pen {
    min-height: auto;
  }

  .page-home .hero-pen .ns-header--hero {
    padding: 12px 12px;
  }

  .hero-pen__glow {
    width: min(240px, 65vw);
    height: min(240px, 65vw);
  }

  .hero-pen__glow--cyan {
    left: -10%;
    top: 8%;
  }

  .hero-pen__glow--violet {
    right: -10%;
    top: 18%;
  }

  .hero-pen__title-line {
    white-space: nowrap;
  }

  .page-home .hero-pen .ns-header--hero .ns-header__inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
    min-height: 48px;
    box-sizing: border-box;
  }

  .page-home .hero-pen .ns-header--hero .ns-header__logo {
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(100% - 88px);
  }

  .page-home .hero-pen .ns-header--hero .ns-header__logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
  }

  .page-home .hero-pen .ns-header--hero .ns-header__actions {
    gap: 8px;
  }

  .page-home .hero-pen .ns-header--hero .ns-menu-trigger {
    padding: 10px 16px;
    font-size: 13px;
  }

  .site-footer {
    padding: 0 12px 20px;
  }

  .site-footer__bar {
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px 18px;
    border-radius: 12px;
  }

  .site-footer__copy {
    position: static;
    text-align: center;
  }

  .site-footer__links {
    gap: 8px 24px;
  }

  .age-gate {
    padding: 16px;
    align-items: flex-end;
  }

  .age-gate__dialog {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .age-gate__info {
    padding: 24px;
  }

  .age-gate__title {
    font-size: 28px;
  }

  .age-gate__img {
    min-height: 160px;
  }
}

@media (max-width: 480px) {
  .partner__img {
    height: 130px;
  }

  .partner__text {
    padding: 20px 16px 24px;
  }

  .partner__headline-lg {
    font-size: clamp(32px, 10vw, 40px);
  }

  .hero-pen__grid {
    padding-top: 56px;
  }

  .hero-pen__product {
    width: min(150px, 46vw);
  }

  .hero-pen__title {
    font-size: clamp(14px, 4.2vw, 22px);
  }

  .hero-pen__actions {
    gap: 6px;
  }

  .hero-pen__actions .btn-primary,
  .hero-pen__actions .btn-secondary {
    font-size: clamp(10px, 2.8vw, 13px);
    padding: 10px clamp(6px, 1.8vw, 10px);
  }

  .platforms__subtitle {
    font-size: clamp(18px, 5vw, 24px);
  }

  .counter__labels {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
