@font-face {
  font-family: 'Miedinger';
  src: url('fonts/Miedinger--Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Miedinger';
  src: url('fonts/Miedinger--Book-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Miedinger';
  src: url('fonts/Miedinger--Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Miedinger';
  src: url('fonts/Miedinger--Bold-Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050e1c;
  --ink: #e8f4ff;
  --white: #ffffff;
  --blue: #d6ecff;
  --blue-strong: #b6dcff;
  --navy: #092a4d;
  --navy-2: #131f2c;
  --cream: #fefce7;
  --border: #092c64;
  --muted: rgba(197, 227, 254, 0.48);
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--white);
  font-family: 'Miedinger', Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
}

.page-decor {
  position: absolute;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.page-decor img {
  position: absolute;
  top: 0;
  width: auto;
  max-width: none;
  height: clamp(260px, 62vw, 380px);
  mix-blend-mode: screen;
}

.page-decor--back-left {
  top: 1480px;
  right: 50%;
  left: 0;
}

.page-decor--back-left img {
  right: 0;
}

.page-decor--back-right {
  top: 1880px;
  right: 0;
  left: 50%;
}

.page-decor--back-right img {
  left: 0;
}

.section {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.hero {
  min-height: 761px;
  padding-top: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e7edf8;
  font-size: 14px;
  font-weight: 700;
}

.brand__image {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
}

.eyebrow,
.kicker {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.eyebrow {
  margin-top: 16px;
}

h1,
.section-title,
.partners h2,
.gradient-panel h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h1 {
  width: 250px;
  margin-top: 24px;
}

h1 span {
  display: block;
  color: #94ccff;
}

.date-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  margin-top: 42px;
  padding: 10px 16px;
  border: 1px solid var(--white);
  border-radius: 32px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.date-pill__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 16px rgba(232, 244, 255, 0.65);
}

.hero-card {
  height: 166px;
  margin-top: 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(6, 14, 27, 0.05), rgba(6, 14, 27, 0.38)),
    url("images/hero-bg.png") center bottom / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(232, 244, 255, 0.08);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin-top: 16px;
}

.tags span,
.ritual__badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 32px;
  background: var(--blue);
  color: var(--navy);
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__lead {
  width: 240px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 38px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

button.button {
  cursor: pointer;
  font-family: inherit;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: inherit;
  filter: blur(6px);
  transition: filter 0.25s ease;
}

.button:hover::before {
  filter: blur(10px);
}

.button--primary {
  margin-top: 72px;
  background: var(--cream);
}

.button--secondary {
  background: var(--blue);
}

.button--blue {
  width: 100%;
  background: var(--blue-strong);
}

.button--wide {
  width: 100%;
  margin-top: 32px;
  font-size: 20px;
}

.intro {
  display: grid;
  gap: 16px;
  padding-top: 64px;
}

.question-card,
.info-card,
.light-card,
.reward-list article {
  border-radius: 24px;
}

.info-card,
.light-card {
  border: 2px solid var(--border);
}

.question-card {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(90deg, #092c64 0%, #c5e3fe 32%, #c5e3fe 78%, #092c64 100%) border-box;
  padding: 24px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.info-card,
.light-card {
  padding: 24px;
  background: var(--ink);
  color: #0c1117;
}

.number {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 38px;
  background: #0c1117;
  color: var(--cream);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.number--light {
  background: var(--blue);
  color: var(--navy-2);
}

.number--white {
  background: var(--ink);
  color: #0c1117;
}

.info-card h2 {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.info-card p,
.light-card p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
}

.rituals {
  padding-top: 112px;
}

.section-text {
  margin-top: 56px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.timeline {
  position: relative;
  display: grid;
  gap: 56px;
  margin-top: 96px;
  padding-left: 48px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 18px;
  left: 16px;
  width: 40px;
  background: url("images/timeline-mobile-line.png") center top / 40px 100% no-repeat;
  pointer-events: none;
}

.ritual {
  display: grid;
  gap: 16px;
  transition: transform 0.3s ease;
}

.timeline--js::before {
  display: none;
}

.timeline--js .ritual {
  z-index: 1;
}

@media (max-width: 1023px) {
  .timeline--js .ritual {
    position: relative;
  }
}

.timeline__line {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.timeline__line svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tl-dot {
  opacity: 0.3;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

.tl-dot .tl-dot__halo,
.tl-dot .tl-dot__mid {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tl-dot.is-lit {
  opacity: 1;
}

.tl-dot.is-lit .tl-dot__mid {
  opacity: 1;
}

.tl-dot.is-lit .tl-dot__halo {
  opacity: 0.85;
  animation: tl-pulse 2.6s ease-in-out infinite;
}

.tl-dot.is-hover .tl-dot__halo {
  opacity: 1;
  animation: none;
}

.ritual.is-active {
  transform: translateY(-4px);
}

.ritual.is-active h3 {
  color: #fefce7;
}

@keyframes tl-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .tl-dot.is-lit .tl-dot__halo {
    animation: none;
  }

  .ritual,
  .ritual.is-active {
    transition: none;
    transform: none;
  }
}

.ritual .number {
  width: fit-content;
  justify-self: start;
}

.ritual h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ritual p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ritual__badge {
  width: max-content;
  min-height: 56px;
  padding: 0 24px 4px;
  font-size: 22px;
}

.ritual__badge--warm {
  background: var(--cream);
}

.steps {
  padding-top: 96px;
}

.steps__panel {
  min-height: 322px;
  padding: 24px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.32), rgba(8, 16, 25, 0.32));
}

.steps__panel .kicker {
  color: var(--blue);
  font-size: 20px;
  text-transform: none;
}

.steps__panel h2 {
  margin-top: 16px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.steps__panel .button {
  font-size: 18px;
}

.steps__actions {
  margin-top: 32px;
}

.steps__panel .button + .button {
  margin-top: 24px;
}

.conditions {
  display: grid;
  gap: 16px;
  padding-top: 96px;
}

.conditions .kicker,
.rewards .kicker {
  color: var(--blue);
  font-size: 20px;
}

.stats-grid,
.countdown {
  display: grid;
  gap: 8px;
}

.stats-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid div,
.countdown div {
  display: grid;
  gap: 4px;
  min-width: 0;
  justify-items: center;
  border-radius: 24px;
  text-align: center;
}

.stats-grid div {
  padding: 16px 6px;
  background: var(--navy-2);
  color: var(--ink);
}

.stats-grid span {
  font-size: 12px;
}

.stats-grid strong {
  font-size: 14px;
}

.countdown {
  grid-template-columns: repeat(4, 1fr);
}

.countdown strong {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: var(--navy-2);
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.countdown span {
  color: #0c1117;
  font-size: 16px;
}

.light-card h3 {
  margin-top: 24px;
  color: #0c1117;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.packs {
  display: grid;
  gap: 16px;
  padding-top: 96px;
}

.registration {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
  color: var(--white);
}

.registration.is-visible {
  display: block;
}

.registration__shell {
  min-height: 100%;
}

.registration__content {
  width: 100%;
}

.registration__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 96px;
  padding-bottom: 96px;
}

.registration__panel {
  border: 1px solid rgba(55, 72, 103, 0.95);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 32px 74px -26px rgba(0, 0, 0, 0.85);
  background: linear-gradient(180deg, rgba(41, 55, 79, 0.82) 0%, rgba(10, 17, 32, 0.62) 100%);
}

.registration__back {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c5e3fe;
  font-family: inherit;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.registration__aside {
  display: grid;
  gap: 16px;
}

.registration__card {
  border: 1px solid rgba(55, 72, 103, 0.95);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 32px 74px -26px rgba(0, 0, 0, 0.85);
  background: linear-gradient(180deg, rgba(41, 55, 79, 0.82) 0%, rgba(10, 17, 32, 0.62) 100%);
}

.registration__card-label {
  font-weight: 400;
  font-size: 11px;
  color: #97a6c2;
}

.registration__card-product {
  margin-top: 8px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: #e7edf8;
}

.registration__card-change {
  display: block;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c5e3fe;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.registration__panel .registration__eyebrow {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #c5e3fe;
}

.registration__panel .registration__title {
  margin-top: 0;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  color: #e7edf8;
  text-transform: none;
  letter-spacing: -0.02em;
}

.registration__panel .registration__eyebrow + .registration__title {
  margin-top: 8px;
}

.registration__actions {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.registration__actions--full {
  grid-template-columns: minmax(0, 1fr);
}

.registration__actions .button {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  color: #04121f;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  cursor: pointer;
}

.registration__actions a[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px;
  border: 1px solid rgba(55, 72, 103, 0.95);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(41, 55, 79, 0.62), rgba(10, 17, 32, 0.62));
}

.pack h2,
.pack p,
.pack__image,
.pack .price,
.pack__note,
.pack .button {
  align-self: stretch;
}

.pack--featured {
  margin-top: 28px;
  border-color: #c5e3fe;
  box-shadow: 0 0 32px rgba(197, 227, 254, 0.56);
}

.recommend {
  position: absolute;
  top: -28px;
  right: 0;
  min-height: 56px;
  padding: 14px 24px 0;
  border-radius: 32px;
  background: var(--cream);
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.pack h2 {
  color: var(--white);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pack p:not(.pack__note) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.2;
}

.pack__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 56px;
  border-radius: 16px;
  object-fit: cover;
}

.pack .price {
  margin-top: 56px;
}

.pack__note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.pack .button {
  margin-top: 24px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.price__main {
  color: var(--ink);
}

.price__alt {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.65;
}

.price__main + .price__alt {
  margin-top: 6px;
}

.rewards {
  padding-top: 96px;
}

.quote {
  padding: 24px 16px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--navy-2);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.rewards .kicker {
  margin-top: 96px;
}

.rewards .section-title {
  margin-top: 16px;
}

.reward-list {
  display: grid;
  gap: 16px;
  margin-top: 96px;
}

.reward-list article {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(90deg, #092c64 0%, #c5e3fe 32%, #c5e3fe 78%, #092c64 100%) border-box;
  padding: 24px;
  border-radius: 40px;
}

.reward-list h3 {
  margin-top: 15px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.reward-list p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-panel {
  border: none;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(197, 227, 254, 0.05), rgba(5, 14, 28, 0.05));
}

.gradient-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(180deg, #092c64 0%, #c5e3fe 32%, #c5e3fe 78%, #092c64 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.partners {
  display: grid;
  gap: 32px;
  margin: 96px 16px 0;
  padding: 32px 16px;
  text-align: center;
}

.partners + .gradient-panel {
  margin-top: 120px;
  margin-right: 16px;
  margin-bottom: 96px;
  margin-left: 16px;
  padding: 32px 16px;
  min-height: 120px;
  text-align: center;
}

.gradient-panel h2 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.sponsor {
  width: calc((100% - 8px) / 2);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
}

.sponsor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.partner-grid span {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--navy-2);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.partner-grid + h2 {
  margin-top: calc(80px - 32px);
}

.partners p:not(.partners__contact) {
  margin-top: calc(40px - 32px);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.partners__contact {
  color: #6a7e95;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.partners__contact a {
  color: #e8f4ff;
}

.desktop-menu,
.desktop-cta {
  display: none;
}

@media (min-width: 1024px) {
  .page {
    max-width: 1366px;
  }

  .page-decor--back-left {
    top: 1385px;
  }

  .page-decor--back-right {
    top: 1785px;
  }

  .page-decor img {
    height: clamp(320px, 38vw, 520px);
  }

  .section {
    width: min(calc(100vw - 32px), 1334px);
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    display: block;
    height: 645px;
    min-height: 645px;
    margin-top: 16px;
    padding: 26px 24px 24px;
    overflow: hidden;
    border-radius: 40px;
    background:
      linear-gradient(180deg, rgba(5, 14, 28, 0.08), rgba(5, 14, 28, 0.2)),
      url("images/hero-desktop.png") center bottom / cover no-repeat;
  }

  .hero-card {
    display: none;
  }

  .hero .brand,
  .hero .eyebrow,
  .desktop-menu,
  .desktop-cta,
  .hero h1,
  .hero__lead,
  .date-pill,
  .tags {
    position: absolute;
  }

  .hero .brand {
    top: 26px;
    left: 24px;
  }

  .hero .eyebrow {
    top: 26px;
    left: 190px;
    display: flex;
    align-items: center;
    height: 36px;
    margin-top: 0;
    line-height: 1;
  }

  .desktop-menu {
    top: 36px;
    right: 320px;
    display: flex;
    gap: 32px;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  .desktop-menu a {
    position: relative;
    display: inline-block;
  }

  .desktop-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }

  .desktop-menu a:hover::after {
    transform: scaleX(1);
  }

  .desktop-cta {
    top: 16px;
    right: 16px;
    display: inline-flex;
    min-width: 209px;
    margin-top: 0;
  }

  .hero > .button:not(.desktop-cta) {
    display: none;
  }

  h1,
  .section-title,
  .partners h2,
  .gradient-panel h2 {
    width: auto;
    font-size: 56px;
    letter-spacing: -0.03em;
  }

  h1 {
    top: 203px;
    left: 24px;
    width: 500px;
    margin-top: 0;
  }

  .hero__lead {
    top: 460px;
    left: 24px;
    width: 370px;
    margin-top: 0;
    font-size: 24px;
  }

  .date-pill {
    bottom: 24px;
    left: 24px;
    width: min(50vw, 665px);
    height: 56px;
    margin-top: 0;
    padding: 10px 20px 10px 24px;
    font-size: clamp(22px, 2.2vw, 30px);
  }

  .tags {
    right: 24px;
    bottom: 24px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: min(45vw, 605px);
    margin-top: 0;
    gap: 0;
  }

  .tags span {
    min-height: 56px;
    padding: 0 24px;
    font-size: 22px;
  }

  .intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 140px;
  }

  .question-card,
  .info-card {
    min-height: 288px;
    border-radius: 40px;
  }

  .question-card {
    display: flex;
    align-items: center;
    padding: 72px 145px 72px 56px;
    font-size: 40px;
  }

  .info-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px 49px;
    align-content: start;
  }

  .info-card .number {
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    justify-self: start;
    align-self: start;
  }

  .info-card h2 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    align-self: start;
  }

  .info-card p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.2;
    align-self: start;
  }

  .info-card p:first-of-type {
    grid-row: 1;
  }

  .rituals {
    display: grid;
    grid-template-columns: 440px 336px minmax(0, 1fr);
    column-gap: 40px;
    align-items: end;
    padding-top: 124px;
  }

  .rituals .section-title {
    grid-column: 1;
    grid-row: 1;
    width: auto;
  }

  .rituals .section-text {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    max-width: 370px;
    margin-top: 0;
    justify-self: end;
    text-align: right;
  }

  .rituals .button {
    grid-column: 2;
    grid-row: 1;
    width: 336px;
    margin-top: 0;
    justify-self: start;
  }

  .timeline {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    height: 1260px;
    margin-top: 260px;
    padding-left: 0;
  }

  .timeline::before {
    top: 230px;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 420px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
  }

  .ritual {
    position: absolute;
    width: calc((100% - 69px) / 4);
  }

  .ritual:nth-child(1) { left: 0; top: 0; }
  .ritual:nth-child(2) { left: calc((100% + 23px) / 4); top: -53px; }
  .ritual:nth-child(3) { left: calc((100% + 23px) / 2); top: 162px; }
  .ritual:nth-child(4) { right: 0; top: -22px; }
  .ritual:nth-child(5) { left: 0; top: 927px; }
  .ritual:nth-child(6) { left: calc((100% + 23px) / 4); top: 736px; }
  .ritual:nth-child(7) { left: calc((100% + 23px) / 2); top: 955px; }
  .ritual:nth-child(8) { right: 0; top: 806px; }

  .steps {
    padding-top: 80px;
  }

  .steps__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 180px;
    max-width: none;
    padding: 32px;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(232, 244, 255, 0.32), rgba(8, 16, 25, 0.32));
  }

  .steps__content {
    align-self: flex-start;
  }

  .steps__actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 0;
    flex-shrink: 0;
    align-self: center;
  }

  .steps__panel h2 {
    font-size: 32px;
  }

  .steps__panel .button,
  .steps__panel .button + .button {
    margin-top: 0;
    font-size: 22px;
  }

  .conditions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 120px;
  }

  .conditions .kicker,
  .conditions .section-title {
    grid-column: 1 / -1;
  }

  .conditions .section-title {
    width: 680px;
  }

  .light-card {
    display: flex;
    flex-direction: column;
    min-height: 271px;
    padding: 24px;
    border-radius: 40px;
  }

  .light-card > p,
  .light-card > h3 {
    margin-top: auto;
    padding-top: 24px;
  }

  .light-card p {
    font-size: 24px;
    line-height: 1.15;
  }

  .stats-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 112px;
    min-height: 112px;
  }

  .countdown strong {
    height: 112px;
    min-height: 112px;
    font-size: 56px;
  }

  .stats-grid span {
    font-size: 18px;
  }

  .stats-grid strong {
    font-size: 32px;
    font-weight: 700;
  }

  .countdown span {
    font-size: 24px;
  }

  .packs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(6, auto);
    align-items: start;
    gap: 16px;
    padding-top: 124px;
  }

  .registration__grid {
    grid-template-columns: 344px minmax(0, 1fr);
    align-items: start;
    padding-top: 124px;
    padding-bottom: 124px;
  }

  .registration__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration__actions--full {
    grid-template-columns: minmax(0, 1fr);
  }

  .pack {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: subgrid;
    grid-row: span 6;
    padding: 32px;
    border-radius: 40px;
  }

  .pack p:not(.pack__note) {
    align-self: start;
  }

  .pack__note {
    align-self: start;
  }

  .pack--featured {
    margin-top: 0;
  }


  .quote {
    height: 80px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 24px;
  }

  .rewards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    column-gap: 4px;
    align-items: end;
    padding-top: 120px;
  }

  .rewards .quote,
  .rewards .kicker,
  .rewards .reward-list {
    grid-column: 1 / -1;
  }

  .rewards .kicker {
    margin-top: 140px;
  }

  .rewards .section-title {
    grid-column: 1;
    width: auto;
    max-width: 960px;
    margin-top: 16px;
  }

  .rewards .section-text {
    grid-column: 2;
    width: 370px;
    margin-top: 16px;
    justify-self: end;
    text-align: right;
  }

  .reward-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 140px;
  }

  .reward-list article {
    min-height: 285px;
    padding: 24px;
  }

  .gradient-panel {
    width: min(calc(100vw - 32px), 1334px);
    margin-right: auto;
    margin-left: auto;
  }

  .partners {
    min-height: 605px;
    margin-top: 120px;
    padding: 56px 32px 32px;
    grid-template-columns: minmax(0, 1fr) 370px;
    align-items: start;
  }

  .partners + .gradient-panel {
    margin-top: 140px;
    margin-right: auto;
    margin-bottom: 120px;
    margin-left: auto;
    padding: 56px 32px;
    min-height: 200px;
  }

  .sponsors-grid {
    gap: 24px;
  }

  .sponsor {
    width: calc((100% - 96px) / 5);
  }

  .partners > h2:first-of-type,
  .partner-grid {
    grid-column: 1 / -1;
  }

  .partners h2,
  .gradient-panel h2 {
    max-width: 960px;
  }

  .partners h2 {
    justify-self: center;
  }

  .partner-grid + h2 {
    max-width: none;
    justify-self: start;
    font-size: 32px;
    text-align: left;
  }

  .partner-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .partner-grid span {
    font-size: 24px;
  }

  .partners p:not(.partners__contact) {
    margin-top: calc(80px - 32px);
    max-width: 370px;
    justify-self: end;
    text-align: right;
    font-size: 22px;
    color: #fff;
  }

  .partners .partners__contact {
    grid-column: 1;
    margin-top: calc(40px - 32px);
    justify-self: start;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .section {
    margin-right: 16px;
    margin-left: 16px;
  }

  .partners,
  .gradient-panel {
    margin-right: 16px;
    margin-left: 16px;
  }
}

@media (min-width: 1440px) {
  .page {
    width: 100%;
    max-width: none;
  }

  .section {
    width: 1334px;
    margin-right: 0;
    margin-left: calc((100vw - 1334px) / 2);
  }

  .gradient-panel,
  .partners + .gradient-panel {
    width: 1334px;
    margin-right: 0;
    margin-left: calc((100vw - 1334px) / 2);
  }
}

@media (max-width: 374px) {
  .button,
  .ritual__badge,
  .price {
    font-size: 18px;
  }

  .price__alt {
    font-size: 13px;
  }

  .tags {
    justify-content: flex-start;
  }

  .pack {
    padding: 24px;
  }
}

.registration-page {
  min-height: 100vh;
}

.registration-page .registration {
  position: static;
  inset: auto;
  z-index: auto;
  display: block;
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 64px;
}

.registration__kicker {
  margin-top: 32px;
}

.registration__title {
  width: auto;
  margin-top: 16px;
}

.registration__lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.registration-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-top: 32px;
}

.registration-form__field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.registration-form label {
  color: #97a6c2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

.registration-form input,
.registration-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(31, 45, 70, 0.95);
  border-radius: 14px;
  background: rgba(5, 8, 15, 0.48);
  color: #e7edf8;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  outline: none;
  box-shadow: 0 0 0 0 rgba(148, 204, 255, 0);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.registration-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c5e3fe' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.registration-form input::placeholder {
  color: rgba(231, 237, 248, 0.45);
}

.registration-form input:focus,
.registration-form select:focus {
  border-color: #94ccff;
  box-shadow: 0 0 0 3px rgba(148, 204, 255, 0.25);
}

.registration-form__field-error {
  margin: 0;
  color: #ff8f9a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.registration-form__field-error[hidden] {
  display: none;
}

.registration-form__field.is-invalid label {
  color: #ff8f9a;
}

.registration-form__field.is-invalid input,
.registration-form__field.is-invalid select {
  border-color: #ff8f9a;
  color: #ff8f9a;
  box-shadow: 0 0 0 0 rgba(255, 143, 154, 0);
}

.registration-form__field.is-invalid input:focus,
.registration-form__field.is-invalid select:focus {
  border-color: #ff8f9a;
  box-shadow: 0 0 0 3px rgba(255, 143, 154, 0.25);
}

.registration-form__error {
  grid-column: 1 / -1;
  margin: 0;
  color: #ff8f9a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.registration-form__error[hidden] {
  display: none;
}

.registration-form__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  color: #97a6c2;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
}

.registration-form .registration-form__consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 6px;
  accent-color: #94ccff;
  cursor: pointer;
}

.registration-form__submit .button:disabled:not(.is-loading) {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.registration-form__submit {
  margin-top: 8px;
}

.registration-form__submit .button {
  width: 100%;
}

.registration-form__submit .button.is-loading {
  color: transparent;
  pointer-events: none;
  cursor: wait;
}

.registration-form__submit .button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(4, 18, 31, 0.25);
  border-top-color: #04121f;
  border-radius: 50%;
  animation: registration-button-spin 0.7s linear infinite;
}

@keyframes registration-button-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1024px) {
  .registration-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px 16px;
  }

  .registration-form__error,
  .registration-form__submit {
    grid-column: 1 / -1;
  }

  .registration-page .registration {
    width: 480px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
  }
}