:root {
  --paper: #f3ecdf;
  --paper-deep: #e9dece;
  --ink: #171717;
  --blue: #2653ff;
  --blue-dark: #1739bf;
  --coral: #ff5a36;
  --yellow: #e9ff57;
  --mint: #9ce8c5;
  --white: #fffdf7;
  --border: 2px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgb(255 90 54 / 8%) 0 1px, transparent 2px) 0 0 / 18px 18px,
    var(--paper);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border: var(--border);
  background: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: var(--border);
  background: rgb(243 236 223 / 94%);
  backdrop-filter: blur(10px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 34px;
}

.wordmark {
  display: inline-flex;
  align-items: stretch;
  color: var(--ink);
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -1.7px;
  line-height: 1;
  text-decoration: none;
}

.wordmark-main {
  padding: 8px 2px 7px 0;
}

.wordmark-ai {
  margin-left: 4px;
  padding: 8px 7px 7px;
  border: 2px solid var(--ink);
  background: var(--coral);
  color: var(--ink);
  letter-spacing: -1px;
  transform: rotate(-3deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.main-nav a,
.footer-links a,
.telegram-handle {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.telegram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: var(--border);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.telegram-handle:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.telegram-handle svg {
  width: 18px;
  height: 18px;
  fill: var(--blue);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: var(--border);
}

.hero::before {
  content: "PESNI  AI";
  position: absolute;
  right: -46px;
  bottom: -62px;
  color: transparent;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: clamp(110px, 17vw, 260px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgb(23 23 23 / 7%);
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  min-height: 720px;
  gap: clamp(30px, 6vw, 90px);
  padding-block: 64px 78px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 9px;
  border: var(--border);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
}

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

h1,
h2 {
  margin: 0;
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.2vw, 84px);
}

h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.cta-destination {
  margin: 13px 0 0;
  color: #55514b;
  font-size: 12px;
  font-weight: 700;
}

.cta-destination strong {
  color: var(--ink);
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 15px 22px;
  border: var(--border);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2.3;
}

.button-primary {
  background: var(--coral);
}

.button-primary:hover {
  background: #ff7659;
}

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

.button-dark:hover {
  box-shadow: 3px 3px 0 var(--coral);
}

.button-yellow {
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--coral);
}

.button-yellow:hover {
  box-shadow: 3px 3px 0 var(--coral);
}

.text-link,
.payment-link {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-facts li:not(:last-child)::after {
  content: "✦";
  margin-inline: 13px;
  color: var(--blue);
}

.hero-art {
  position: relative;
  min-height: 550px;
  isolation: isolate;
}

.sleeve {
  position: absolute;
  top: 67px;
  left: 0;
  z-index: 3;
  width: min(420px, 78%);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 25px;
  border: var(--border);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.sleeve::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 22px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.95;
}

.sleeve-topline,
.sleeve-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sleeve-title {
  position: relative;
  z-index: 2;
  margin: 52px 0 22px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.sleeve-title em {
  color: var(--yellow);
  font-style: normal;
}

.sound-line {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  margin-top: 42px;
}

.sound-line path {
  fill: none;
  stroke: var(--white);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 5;
  vector-effect: non-scaling-stroke;
}

.sleeve-caption {
  margin-top: 24px;
}

.vinyl {
  position: absolute;
  top: 118px;
  right: -50px;
  z-index: 2;
  display: grid;
  width: 390px;
  max-width: 76%;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid #000;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 5px, rgb(255 255 255 / 8%) 6px 7px),
    #121212;
  box-shadow: 12px 15px 0 rgb(23 23 23 / 18%);
  animation: slow-spin 22s linear infinite;
}

.vinyl::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
}

.vinyl-ring {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
}

.vinyl-ring-one {
  inset: 18%;
}

.vinyl-ring-two {
  inset: 30%;
}

.vinyl-label {
  position: relative;
  z-index: 2;
  display: flex;
  width: 39%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: clamp(7px, 1vw, 11px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
}

.vinyl-label strong {
  font-size: clamp(11px, 1.5vw, 17px);
}

.vinyl-label small {
  margin-top: 10px;
  font-size: 0.7em;
}

.vinyl-label::after {
  content: "";
  position: absolute;
  width: 10%;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.price-sticker {
  position: absolute;
  right: 5px;
  bottom: 26px;
  z-index: 7;
  display: flex;
  width: 145px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(9deg);
  animation: sticker-float 4s ease-in-out infinite;
}

.price-sticker strong {
  margin-block: 4px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 43px;
  letter-spacing: -0.06em;
}

.hand-note {
  position: absolute;
  bottom: 7px;
  left: 32px;
  z-index: 7;
  padding: 11px 16px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-7deg);
}

.burst {
  position: absolute;
  z-index: 1;
  width: 78px;
  aspect-ratio: 1;
  background: var(--yellow);
  clip-path: polygon(50% 0, 59% 35%, 85% 15%, 66% 41%, 100% 50%, 66% 59%, 85% 85%, 59% 66%, 50% 100%, 41% 66%, 15% 85%, 34% 59%, 0 50%, 34% 41%, 15% 15%, 41% 35%);
}

.burst-one {
  top: 17px;
  right: 12%;
  transform: rotate(12deg);
}

.burst-two {
  right: 40%;
  bottom: 28px;
  width: 48px;
  background: var(--coral);
  transform: rotate(31deg);
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes sticker-float {
  0%, 100% { transform: rotate(9deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-7px); }
}

.ticker {
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--yellow);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding-block: 13px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: ticker-move 26s linear infinite;
}

.ticker-track span {
  margin-inline: 22px;
}

.ticker-track b {
  color: var(--coral);
  font-size: 18px;
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

.section {
  padding-block: clamp(82px, 10vw, 132px);
  border-bottom: var(--border);
}

.section-heading h2,
.emotion-statement h2,
.final-cta h2 {
  font-size: clamp(40px, 5.8vw, 74px);
}

.kicker {
  color: var(--blue);
}

.kicker-light {
  color: var(--yellow);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 28px;
  border: var(--border);
  box-shadow: var(--shadow);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.23;
}

.step-coral { background: var(--coral); }
.step-yellow { background: var(--yellow); }
.step-blue { background: var(--blue); color: var(--white); }

.step-number {
  display: block;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-top: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.step-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.5;
}

.step-card h3 {
  max-width: 270px;
  margin: 34px 0 14px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.step-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.emotion-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 126px);
  border-bottom: var(--border);
  background: var(--blue);
  color: var(--white);
}

.emotion-section::after {
  content: "♪";
  position: absolute;
  right: -25px;
  bottom: -120px;
  color: rgb(255 255 255 / 7%);
  font-family: serif;
  font-size: 430px;
  line-height: 1;
  transform: rotate(-8deg);
}

.emotion-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(54px, 8vw, 120px);
}

.emotion-statement h2 span,
.final-cta h2 span {
  color: var(--yellow);
}

.emotion-statement > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.55;
}

.emotion-notes {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--white);
  list-style: none;
}

.emotion-notes li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding-block: 22px;
  border-bottom: 2px solid var(--white);
  font-size: 18px;
  font-weight: 800;
}

.emotion-notes span {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.ticket {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 24px;
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 180ms ease;
}

.ticket:hover {
  transform: translateY(-5px) rotate(-0.7deg);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  right: 37px;
  width: 25px;
  height: 25px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.ticket::before { top: -14px; }
.ticket::after { bottom: -14px; }

.ticket > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ticket h3 {
  max-width: 280px;
  margin: 47px 0 8px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ticket p {
  max-width: 260px;
  margin: 0;
  font-size: 14px;
}

.ticket-blue { background: var(--blue); color: var(--white); }
.ticket-coral { background: var(--coral); }
.ticket-yellow { background: var(--yellow); }
.ticket-cream { background: var(--white); }
.ticket-ink { background: var(--ink); color: var(--white); }
.ticket-mint { background: var(--mint); }

.price-section {
  background: var(--paper-deep);
}

.price-panel {
  display: grid;
  grid-template-columns: 1.1fr auto 0.85fr;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  padding: clamp(32px, 5vw, 58px);
  border: var(--border);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.price-copy h2 {
  font-size: clamp(34px, 4vw, 55px);
}

.price-copy > p:not(.kicker) {
  max-width: 440px;
  margin: 20px 0;
  font-size: 17px;
}

.price-value {
  display: grid;
  min-width: 220px;
  place-items: center;
  padding: 24px;
  border: var(--border);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
  line-height: 0.9;
  transform: rotate(-4deg);
}

.price-value span {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-value strong {
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: clamp(58px, 7vw, 86px);
  letter-spacing: -0.08em;
}

.price-action {
  text-align: center;
}

.price-action .button {
  width: 100%;
}

.price-action p {
  margin: 17px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-heading {
  position: relative;
}

.faq-mark {
  display: grid;
  width: 110px;
  aspect-ratio: 1;
  margin-top: 50px;
  place-items: center;
  border: var(--border);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 70px;
  line-height: 1;
  transform: rotate(8deg);
}

.faq-list {
  border-top: var(--border);
}

.faq-list details {
  border-bottom: var(--border);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 60px 25px 0;
  font-size: 17px;
  line-height: 1.55;
}

.final-cta {
  padding-block: clamp(72px, 9vw, 112px);
  border-bottom: var(--border);
  background: var(--ink);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
}

.final-action {
  text-align: center;
}

.final-action .button {
  width: 100%;
}

.final-action p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  padding-block: 60px 30px;
  background: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 60px;
  padding-bottom: 42px;
}

.wordmark-footer {
  font-size: 27px;
}

.footer-brand p {
  margin: 19px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 15px 38px;
}

.footer-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.requisites {
  border-top: var(--border);
  border-bottom: var(--border);
}

.requisites summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.summary-icon {
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease;
}

.requisites[open] .summary-icon {
  transform: rotate(45deg);
}

.requisites-content {
  padding: 12px 0 34px;
}

.requisites dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 60px;
  margin: 0;
}

.requisites dl > div {
  min-width: 0;
}

.requisites dl > .wide {
  grid-column: 1 / -1;
}

.requisites dt {
  margin-bottom: 4px;
  color: #55514b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.requisites dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  color: rgb(23 23 23 / 65%);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

/* Payment page */
.payment-page {
  min-height: 100vh;
}

.payment-main {
  padding-block: 68px 100px;
}

.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.payment-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
}

.payment-hero h1 span {
  color: var(--coral);
}

.payment-hero .hero-lead {
  max-width: 680px;
}

.payment-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 620px;
  margin-top: 25px;
  padding: 14px 16px;
  border: var(--border);
  background: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.payment-note svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.receipt-art {
  position: relative;
  padding: 34px 34px 46px;
  border: var(--border);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(2deg);
}

.receipt-art::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  height: 26px;
  background: linear-gradient(135deg, transparent 10px, var(--white) 0) 0 0 / 24px 24px repeat-x;
  filter: drop-shadow(0 2px 0 var(--ink));
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-title {
  margin: 34px 0 24px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
  border-bottom: 1px solid rgb(23 23 23 / 24%);
  font-size: 14px;
  font-weight: 700;
}

.receipt-row strong {
  text-align: right;
}

.receipt-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.receipt-total span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-total strong {
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: 50px;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 88px;
}

.payment-step {
  padding: 25px;
  border: var(--border);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.payment-step span {
  display: inline-grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.payment-step h2 {
  margin-top: 34px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.payment-step p {
  margin: 14px 0 0;
  font-size: 15px;
}

.payment-action-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  margin-top: 72px;
  padding: 36px;
  border: var(--border);
  background: var(--blue);
  color: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}

.payment-action-panel h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.payment-action-panel p {
  max-width: 680px;
  margin: 16px 0 0;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-weight: 900;
  text-underline-offset: 5px;
}

/* Success page */
.success-page {
  min-height: 100vh;
}

.success-header-inner {
  grid-template-columns: auto 1fr;
}

.success-header-tag {
  justify-self: end;
  padding: 7px 10px;
  border: var(--border);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(1deg);
}

.success-main {
  padding-block: 78px 94px;
}

.success-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.success-copy h1 {
  margin-top: 22px;
  font-size: clamp(50px, 7vw, 94px);
}

.success-copy h1 span {
  color: var(--coral);
}

.success-copy .hero-lead {
  max-width: 720px;
}

.success-button {
  margin-top: 34px;
}

.success-warning {
  max-width: 650px;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 4px solid var(--coral);
  color: #55514b;
  font-size: 13px;
  font-weight: 800;
}

.success-receipt {
  position: relative;
  padding: 35px 34px 72px;
  border: var(--border);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(1.5deg);
}

.success-receipt::after {
  position: absolute;
  right: -2px;
  bottom: -13px;
  left: -2px;
  height: 17px;
  background: linear-gradient(135deg, var(--white) 8px, transparent 0) 0 0 / 16px 16px repeat-x;
  content: "";
}

.success-receipt-title {
  margin: 34px 0 40px;
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.success-stamp {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 116px;
  height: 74px;
  place-items: center;
  border: 4px solid var(--coral);
  color: var(--coral);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-7deg);
}

.success-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 92px;
}

.success-steps article {
  min-height: 230px;
  padding: 26px;
  border: var(--border);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.success-steps article:nth-child(2) {
  background: var(--yellow);
}

.success-steps article:nth-child(3) {
  background: var(--blue);
  color: var(--white);
}

.success-steps article > span {
  display: inline-grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 2px solid currentcolor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.success-steps h2 {
  margin-top: 38px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.success-steps p {
  margin: 13px 0 0;
  font-size: 15px;
}

.success-back-wrap {
  margin-top: 12px;
}

.success-footer {
  border-top: var(--border);
  background: var(--paper-deep);
}

.success-footer-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.success-footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .telegram-handle {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 28px;
  }

  .hero-art {
    min-height: 490px;
  }

  .sleeve {
    top: 75px;
  }

  .vinyl {
    top: 124px;
    right: -42px;
  }

  .price-sticker {
    right: -2px;
    bottom: 18px;
  }

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

  .steps-grid .step-card:last-child,
  .payment-steps .payment-step:last-child {
    grid-column: 1 / -1;
  }

  .steps-grid .step-card:last-child {
    min-height: 300px;
  }

  .price-panel {
    grid-template-columns: 1fr auto;
  }

  .price-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 680px);
    --shadow: 5px 5px 0 var(--ink);
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 66px;
  }

  .wordmark {
    font-size: 19px;
  }

  .telegram-handle {
    padding: 8px 10px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 11px;
  }

  .telegram-handle svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding-block: 43px 42px;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow {
    order: 1;
    margin-bottom: 4px;
    font-size: 10px;
  }

  h1 {
    order: 2;
    font-size: clamp(42px, 13vw, 66px);
  }

  .hero-lead {
    order: 3;
    margin-top: 3px;
    font-size: 18px;
  }

  .hero-art {
    order: 4;
    min-height: min(105vw, 490px);
    margin: 5px -14px 0;
  }

  .hero-actions {
    order: 5;
    margin-top: 4px;
  }

  .cta-destination {
    order: 5;
    margin-top: -4px;
  }

  .hero-actions .button {
    display: none;
  }

  .hero-facts {
    order: 6;
    justify-content: center;
    margin-top: 0;
  }

  .hero-facts li {
    font-size: 10px;
  }

  .hero-facts li:not(:last-child)::after {
    margin-inline: 8px;
  }

  .sleeve {
    top: 38px;
    left: 4%;
    width: 74%;
    padding: 19px;
  }

  .sleeve-title {
    margin-top: 36px;
    font-size: clamp(37px, 10.5vw, 58px);
  }

  .sound-line {
    margin-top: 30px;
  }

  .vinyl {
    top: 88px;
    right: -7%;
    width: 69%;
  }

  .price-sticker {
    right: 3%;
    bottom: 3%;
    width: 118px;
  }

  .price-sticker strong {
    font-size: 35px;
  }

  .hand-note {
    bottom: 4%;
    left: 6%;
  }

  .burst-one {
    top: 0;
  }

  .section {
    padding-block: 74px;
  }

  .section-heading h2,
  .emotion-statement h2,
  .final-cta h2 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .split-heading,
  .emotion-grid,
  .faq-grid,
  .final-cta-inner,
  .payment-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading > p {
    font-size: 17px;
  }

  .steps-grid,
  .ticket-grid,
  .payment-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps-grid .step-card:last-child,
  .payment-steps .payment-step:last-child {
    grid-column: auto;
  }

  .step-card,
  .steps-grid .step-card:last-child {
    min-height: 320px;
  }

  .emotion-section {
    padding-block: 76px;
  }

  .ticket {
    min-height: 185px;
  }

  .ticket h3 {
    margin-top: 37px;
  }

  .price-panel {
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 27px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .price-value {
    width: 190px;
    min-width: 0;
    justify-self: center;
  }

  .faq-mark {
    width: 80px;
    margin-top: 32px;
    font-size: 50px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 15px;
  }

  .final-action {
    text-align: left;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .requisites dl {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .requisites dl > .wide {
    grid-column: auto;
  }

  .requisites summary {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: max(10px, env(safe-area-inset-left, 0px));
    z-index: 90;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    border: var(--border);
    background: var(--coral);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    white-space: nowrap;
  }

  .payment-main {
    padding-block: 46px 78px;
  }

  .payment-hero {
    display: flex;
    flex-direction: column;
  }

  .payment-copy {
    display: contents;
  }

  .payment-copy .eyebrow { order: 1; }
  .payment-copy h1 { order: 2; }
  .payment-copy .hero-lead { order: 3; }
  .payment-copy .payment-note { order: 5; }
  .payment-copy .hero-actions { order: 6; }
  .payment-copy .cta-destination { order: 7; }
  .receipt-art { order: 4; width: calc(100% - 12px); margin-block: 12px 18px; padding: 28px 25px 40px; }

  .payment-action-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 22px);
  }

  .telegram-handle span {
    display: none;
  }

  .telegram-handle {
    width: 39px;
    height: 39px;
    justify-content: center;
    padding: 0;
  }

  .eyebrow span {
    display: table;
    margin-bottom: 9px;
  }

  .hero-art {
    min-height: 410px;
  }

  .sleeve-title {
    font-size: 35px;
  }

  .sleeve-topline,
  .sleeve-caption {
    font-size: 8px;
  }

  .sound-line {
    margin-top: 20px;
  }

  .price-sticker {
    width: 102px;
  }

  .hand-note {
    font-size: 12px;
  }

  .hero-facts {
    gap: 7px 0;
  }

  .price-panel {
    padding: 22px;
  }

}

@media (max-width: 780px) {
  .success-page {
    padding-bottom: 0;
  }

  .success-header-inner {
    grid-template-columns: auto 1fr;
  }

  .success-header-tag {
    max-width: 155px;
    font-size: 9px;
    text-align: center;
  }

  .success-main {
    padding-block: 45px 64px;
  }

  .success-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 42px;
  }

  .success-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .success-button {
    width: 100%;
  }

  .success-receipt {
    width: calc(100% - 10px);
    padding: 29px 25px 70px;
  }

  .success-receipt-title {
    font-size: clamp(38px, 13vw, 54px);
  }

  .success-steps {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .success-steps article {
    min-height: 205px;
  }

  .success-footer-inner {
    min-height: 125px;
  }
}

@media (max-width: 420px) {
  .success-header-tag {
    max-width: 132px;
  }

  .success-receipt {
    padding-inline: 21px;
  }

  .success-stamp {
    right: 16px;
    width: 105px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
