:root {
  --cyan: #04aec5;
  --cyan-dark: #017f98;
  --yellow: #ffd21a;
  --orange: #ff8a00;
  --pink: #ff4da1;
  --ink: #0a0c12;
  --paper: #fffdf6;
  --muted: #d7e6e8;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: white;
  background-color: var(--cyan);
  background-image:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 25%, rgba(0, 0, 0, 0.12) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 48%, rgba(0, 0, 0, 0.08) 49% 51%, transparent 52%);
  background-size: 22px 22px, 25px 25px, 70px 70px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 210, 26, 0.22);
  border-radius: 50%;
}

.hero::before {
  top: -210px;
  left: -190px;
}

.hero::after {
  right: -220px;
  bottom: -120px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 64px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px 6px;
  color: var(--ink);
  background: var(--yellow);
  border: var(--border);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.7rem, 8.4vw, 7.8rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 var(--ink),
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink);
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--yellow);
  font-weight: inherit;
  margin-top: 10px;
}

.hero__line {
  max-width: 540px;
  margin: 18px 0 26px;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero__urgency {
  width: fit-content;
  max-width: 560px;
  margin: 24px 0 0;
  padding: 10px 13px 8px;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  transform: rotate(-1deg);
}

.hero__urgency strong {
  color: #c41010;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  margin: 0 0 26px;
  background: var(--ink);
  border: var(--border);
}

.event-strip div {
  padding: 14px 16px;
  border-right: 1px solid #4b5260;
}

.event-strip div:last-child {
  border-right: 0;
}

.event-strip dt {
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.event-strip dd {
  margin: 3px 0 0;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
}

.price-offer {
  width: min(100%, 480px);
  margin: -8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--ink);
  background: white;
  border: var(--border);
  box-shadow: 6px 6px 0 var(--pink);
}

.price-offer > div {
  padding: 13px 16px 10px;
  display: flex;
  flex-direction: column;
}

.price-offer__today {
  background: var(--yellow);
  border-right: 3px solid var(--ink);
}

.price-offer span {
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.price-offer strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.3rem;
  font-weight: inherit;
  line-height: 1;
}

.price-offer__next strong {
  color: #c41010;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.price-offer__note {
  margin: 9px 0 18px;
  color: #d4f5f8;
  font-size: 0.72rem;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 22px 13px;
  border: var(--border);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button--primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
}

.button--dark {
  color: white;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--pink);
}

.button--ghost {
  color: white;
  border-color: white;
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ink);
  background: white;
  box-shadow: 7px 7px 0 var(--pink);
}

.button-note {
  margin: 12px 0 0;
  color: #d4f5f8;
  font-size: 0.78rem;
}

.hero__art {
  position: relative;
  align-self: end;
  height: min(82svh, 790px);
}

.hero__art img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(12px 13px 0 var(--ink));
}

.burst {
  position: absolute;
  z-index: 1;
  inset: 15% -12% 1%;
  background: var(--yellow);
  clip-path: polygon(50% 0, 60% 22%, 80% 8%, 78% 32%, 100% 30%, 84% 50%, 100% 66%, 75% 67%, 78% 94%, 57% 78%, 49% 100%, 39% 77%, 16% 95%, 22% 69%, 0 65%, 18% 48%, 0 30%, 26% 31%, 22% 6%, 41% 22%);
  filter: drop-shadow(9px 9px 0 var(--ink));
  transform: rotate(-4deg);
}

.sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.04em;
  border: var(--border);
  box-shadow: 5px 5px 0 var(--ink);
}

.sticker--date {
  top: 14%;
  right: -2%;
  width: 104px;
  height: 104px;
  color: var(--ink);
  background: var(--pink);
  border-radius: 50%;
  font-size: 1.45rem;
  transform: rotate(8deg);
}

.sticker--laugh {
  bottom: 22%;
  left: -5%;
  padding: 10px 14px;
  color: var(--ink);
  background: white;
  font-size: 1.25rem;
  transform: rotate(-9deg);
}

.ticker {
  position: relative;
  z-index: 5;
  width: 110%;
  margin-left: -5%;
  color: var(--ink);
  background: var(--pink);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  transform: rotate(-1deg);
}

.ticker div {
  width: max-content;
  padding: 9px 0 7px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-kicker {
  color: var(--cyan-dark);
}

.section-kicker--pink {
  color: var(--pink);
}

h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.intro__body p {
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 10px;
  color: var(--cyan-dark);
  font-weight: 950;
  text-underline-offset: 5px;
}

.story {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 760px;
  background: var(--ink);
}

.story__visual {
  position: relative;
  min-height: 580px;
  background: var(--cyan);
  overflow: hidden;
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story__milestone {
  position: absolute;
  z-index: 2;
  top: clamp(32px, 7vw, 72px);
  left: clamp(24px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: uppercase;
}

.story__milestone span {
  padding: 8px 13px 6px;
  color: white;
  background: var(--ink);
  border: 2px solid white;
  box-shadow: 5px 5px 0 var(--pink);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
}

.story__milestone strong {
  margin-top: 12px;
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: inherit;
  line-height: 0.78;
  letter-spacing: 0.01em;
  text-shadow:
    5px 5px 0 var(--ink),
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink);
  transform: rotate(-1deg);
}

.story__copy {
  align-self: center;
  max-width: 670px;
  padding: 90px clamp(40px, 7vw, 110px);
  color: white;
}

.story__copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
}

blockquote {
  margin: 36px 0 0;
  padding: 22px 0 0 24px;
  color: var(--yellow);
  border-top: 2px solid #4b5260;
  border-left: 7px solid var(--pink);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}

.proof__heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1deg);
}

.stat-card:nth-child(even) {
  transform: rotate(1deg);
}

.stat-card strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.stat-card span {
  max-width: 150px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.stat-card--yellow {
  background: var(--yellow);
}

.stat-card--pink {
  background: var(--pink);
}

.stat-card--cyan {
  background: var(--cyan);
}

.stat-card--black {
  color: white;
  background: var(--ink);
}

.career-highlights {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.career-highlights article {
  padding: 30px;
  border: var(--border);
  box-shadow: 7px 7px 0 var(--ink);
}

.career-highlights article:first-child {
  background: var(--yellow);
  transform: rotate(-0.5deg);
}

.career-highlights article:last-child {
  color: white;
  background: var(--cyan-dark);
  transform: rotate(0.5deg);
}

.career-highlights p {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.career-highlights article:last-child p {
  color: var(--yellow);
}

.career-highlights h3 {
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.career-highlights span {
  display: block;
  max-width: 470px;
  font-size: 1rem;
  line-height: 1.5;
}

.credits {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.credits span {
  padding: 20px 10px;
  border-right: 2px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
  text-align: center;
}

.credits span:last-child {
  border-right: 0;
}

.crowd {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--yellow);
  border-top: var(--border);
  border-bottom: var(--border);
}

.crowd__image {
  min-height: 560px;
  overflow: hidden;
  border-right: var(--border);
}

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

.crowd__copy {
  padding: 80px clamp(40px, 6vw, 90px);
  align-self: center;
}

.crowd__copy p {
  max-width: 480px;
  margin: 24px 0 30px;
  font-size: 1.1rem;
  font-weight: 700;
}

.sold-out {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 12px;
  color: white;
  background: #e11111;
  border: var(--border);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  transform: rotate(-2deg);
}

.session {
  color: white;
}

.session::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--cyan-dark);
  background-size: 34px 34px;
}

.session {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1100px) / 2));
}

.session__top {
  max-width: 780px;
}

.session__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 50px;
  align-items: center;
}

.date-block {
  width: 250px;
  color: var(--ink);
  background: var(--paper);
  border: var(--border);
  box-shadow: 12px 12px 0 var(--pink);
  text-align: center;
  transform: rotate(-2deg);
}

.date-block span,
.date-block small {
  display: block;
  padding: 10px;
  color: white;
  background: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.date-block strong {
  display: block;
  padding: 14px 10px 4px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 8.5rem;
  line-height: 1;
}

.date-block small {
  color: var(--ink);
  background: var(--yellow);
  font-size: 1.5rem;
}

.venue__city {
  margin: 0 0 4px;
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.venue h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.venue > p:not(.venue__city) {
  margin: 18px 0 0;
}

.venue__tip {
  color: #c8eef3;
  font-size: 0.92rem;
}

.session-price {
  width: fit-content;
  margin-top: 24px;
  padding: 14px 16px 12px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 20px;
  color: var(--ink);
  background: white;
  border: var(--border);
  box-shadow: 6px 6px 0 var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
}

.session-price span:first-child strong {
  color: var(--cyan-dark);
}

.session-price span:nth-child(2) strong {
  color: #c41010;
}

.session-price small {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  font-weight: 700;
}

.session__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.faq__items {
  border-top: 2px solid var(--ink);
}

details {
  border-bottom: 2px solid var(--ink);
}

summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 16px;
  color: var(--pink);
  font-size: 1.9rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 40px 24px 0;
}

.final-cta {
  padding: 100px 20px;
  color: white;
  background:
    radial-gradient(circle, rgba(255,255,255,0.13) 0 2px, transparent 3px),
    var(--ink);
  background-size: 22px 22px;
  text-align: center;
}

.final-cta > p {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.final-cta h2 {
  color: var(--yellow);
  text-shadow: 5px 5px 0 var(--cyan-dark);
}

.final-cta > span {
  display: block;
  margin: 24px 0 12px;
  font-weight: 900;
}

.final-cta > .final-cta__urgency {
  width: fit-content;
  margin: 0 auto 30px;
  padding: 8px 12px 6px;
  color: var(--ink);
  background: var(--pink);
  border: 2px solid white;
  font-size: 0.8rem;
  font-weight: 950;
  transform: rotate(-1deg);
}

footer {
  padding: 22px max(20px, calc((100vw - 1100px) / 2));
  display: flex;
  justify-content: space-between;
  color: white;
  background: #020307;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__links button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  width: min(560px, calc(100% - 48px));
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  color: white;
  background: var(--ink);
  border: 3px solid white;
  box-shadow: 8px 8px 0 var(--pink);
}

.cookie-consent strong {
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.cookie-consent p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.cookie-consent__actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

.cookie-consent__actions button {
  min-width: 112px;
  padding: 11px 14px 9px;
  border: 2px solid white;
  font-size: 0.72rem;
  font-weight: 950;
  cursor: pointer;
}

.cookie-consent__accept {
  color: var(--ink);
  background: var(--yellow);
}

.cookie-consent__decline {
  color: white;
  background: transparent;
}

.mobile-buy {
  display: none;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero__art {
    height: min(68svh, 650px);
    margin-top: -30px;
  }

  .intro,
  .faq {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story,
  .crowd {
    grid-template-columns: 1fr;
  }

  .story__copy {
    max-width: none;
  }

  .crowd__image {
    border-right: 0;
    border-bottom: var(--border);
  }

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

  .career-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .hero__inner {
    width: min(100% - 28px, 1180px);
    gap: 12px;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 5.5rem);
  }

  .hero__line {
    margin: 22px 0;
  }

  .event-strip {
    grid-template-columns: 1fr 1fr;
  }

  .event-strip div:nth-child(2) {
    border-right: 0;
  }

  .event-strip div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid #4b5260;
  }

  .price-offer {
    width: 100%;
  }

  .price-offer strong {
    font-size: 2rem;
  }

  .hero__copy > .button,
  .crowd__copy .button,
  .final-cta .button {
    width: 100%;
  }

  .hero__art {
    width: 110%;
    height: min(60svh, 540px);
    margin-left: -5%;
  }

  .sticker--date {
    right: 3%;
    width: 84px;
    height: 84px;
    font-size: 1.18rem;
  }

  .section {
    width: min(100% - 28px, 1100px);
    padding: 76px 0;
  }

  .story__visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .story__milestone strong {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .story__copy,
  .crowd__copy {
    padding: 68px 22px;
  }

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

  .stat-card {
    min-height: 160px;
    padding: 18px;
  }

  .stat-card strong {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .credits {
    grid-template-columns: 1fr 1fr;
  }

  .career-highlights {
    margin-top: 48px;
    gap: 16px;
  }

  .career-highlights article {
    padding: 24px 20px;
  }

  .credits span:nth-child(2) {
    border-right: 0;
  }

  .credits span:nth-child(-n+2) {
    border-bottom: 2px solid var(--ink);
  }

  .crowd__image {
    min-height: 360px;
  }

  .session {
    width: 100%;
    padding-inline: 20px;
  }

  .session__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .session-price {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .session-price small {
    grid-column: 1;
  }

  .date-block {
    width: 100%;
    max-width: 280px;
  }

  .faq {
    width: min(100% - 28px, 1100px);
  }

  footer {
    padding-bottom: 20px;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .mobile-buy {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    padding: 10px 12px 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: white;
    background: var(--ink);
    border-top: 2px solid var(--pink);
  }

  .mobile-buy span {
    font-size: 0.82rem;
  }

  .mobile-buy a {
    padding: 12px 14px 10px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid white;
    font-size: 0.78rem;
    font-weight: 950;
    text-decoration: none;
  }

  .cookie-consent {
    right: 14px;
    bottom: 84px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .cookie-consent__actions {
    flex-direction: row;
  }

  .cookie-consent__actions button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
