/* ============================================================
   ДЕЛЬТА — лендинг
   Анимации работают всегда: prefers-reduced-motion намеренно не учитывается.
   ============================================================ */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --bg: #0A1133;
  --bg-deep: #060B24;
  --surface: #111B4A;
  --line: rgba(157, 151, 240, 0.16);
  --line-strong: rgba(157, 151, 240, 0.34);
  --text: #F4F5FF;
  --muted: #AEB5DC;
  --lav: #9D97F0;
  --lav-soft: #CBC7FF;
  --violet: #7B6CF6;
  --violet-deep: #5140D6;
  --gold: #F2B544;
  --gold-soft: #FFE1A1;
  --mint: #3DD68C;

  --container: 1200px;
  --gutter: 16px;
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  color-scheme: dark;
}

@media (min-width: 640px) {
  :root { --gutter: 24px; }
}

@media (min-width: 1200px) {
  :root { --gutter: 40px; }
}

/* ---------- База ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 50% -10%, rgba(81, 64, 214, 0.18), transparent 60%),
    var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  /* лёгкое зерно поверх фона */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.footer {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: rgba(123, 108, 246, 0.55);
  color: #fff;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: none;
}

html.is-locked,
html.is-locked body {
  overflow: hidden;
}

html.is-locked body,
html.is-locked .topbar {
  padding-right: var(--scrollbar, 0px);
}

/* ---------- Градиентный текст ---------- */

.grad {
  background-image: linear-gradient(95deg, #E2DFFF 0%, #A59FF5 32%, #7B6CF6 62%, #CBC7FF 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradShift 6s ease-in-out infinite alternate;
}

.grad--gold {
  background-image: linear-gradient(95deg, #FFF0CC 0%, #FFD27A 35%, #F2A93B 65%, #FFE1A1 100%);
}

@keyframes gradShift {
  to { background-position: 100% 50%; }
}

/* ---------- Кнопки ---------- */

.btn {
  --h: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: var(--h);
  padding: 0 30px;
  border: 0;
  border-radius: 18px;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background-image:
    linear-gradient(100deg, transparent 15%, rgba(255, 255, 255, 0.55) 50%, transparent 85%),
    linear-gradient(135deg, #A89CFF 0%, #7B6CF6 45%, #5140D6 100%);
  background-size: 38% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -160% 0, 0 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -3px 0 rgba(20, 10, 90, 0.35),
    0 18px 40px -14px rgba(123, 108, 246, 0.9);
  animation: btnShine 4.6s ease-in-out infinite;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(20, 10, 90, 0.35),
    0 26px 54px -14px rgba(123, 108, 246, 1),
    0 0 0 5px rgba(157, 151, 240, 0.16);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.12s;
}

.btn:focus-visible {
  outline: 3px solid var(--lav-soft);
  outline-offset: 4px;
}

.btn__arrow {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  color: currentColor;
  transition: transform 0.4s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--lg {
  --h: 68px;
  padding: 0 38px;
  font-size: 18px;
  border-radius: 20px;
}

.btn--sm {
  --h: 46px;
  padding: 0 20px;
  font-size: 15px;
  border-radius: 14px;
  gap: 10px;
}

.btn--sm .btn__arrow {
  width: 17px;
  height: 17px;
}

.btn--block {
  width: 100%;
}

@media (max-width: 767px) {
  .btn,
  .btn--lg {
    --h: 62px;
    padding: 0 22px;
    font-size: 17px;
  }
}

.btn--glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: btnRing 2.8s var(--ease) infinite;
}

@keyframes btnShine {
  0%, 55% { background-position: -160% 0, 0 0; }
  100% { background-position: 260% 0, 0 0; }
}

@keyframes btnRing {
  0% { box-shadow: 0 0 0 0 rgba(157, 151, 240, 0.55); }
  75%, 100% { box-shadow: 0 0 0 18px rgba(157, 151, 240, 0); }
}

/* ---------- Плитки-иконки (как на референсе) ---------- */

.tile {
  --tile: #333;
  --size: 64px;
  position: relative;
  display: grid;
  place-items: center;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 24%;
  color: #fff;
  background: linear-gradient(145deg,
      color-mix(in srgb, var(--tile) 74%, #fff) 0%,
      var(--tile) 46%,
      color-mix(in srgb, var(--tile) 80%, #000) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -6px 14px rgba(0, 0, 0, 0.2),
    0 18px 34px -16px color-mix(in srgb, var(--tile) 85%, transparent);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%);
  pointer-events: none;
}

.tile .icon {
  position: relative;
  z-index: 1;
  width: 48%;
  height: 48%;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.22));
}

/* ---------- Шапка ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  animation: topbarIn 1s var(--ease-out) both;
}

.topbar.is-scrolled {
  background-color: rgba(8, 13, 42, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line), 0 20px 40px -30px rgba(0, 0, 0, 0.8);
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.4s var(--ease);
}

.topbar.is-scrolled .topbar__row {
  height: 66px;
}

.topbar__logo {
  display: block;
  width: 140px;
  color: #fff;
  border-radius: 6px;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.topbar__logo svg {
  width: 100%;
  height: auto;
  aspect-ratio: 524 / 100;
  fill: url(#logo-gradient);
}

.topbar__logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 18px rgba(157, 151, 240, 0.6));
}

.topbar__logo:focus-visible {
  outline: 3px solid var(--lav-soft);
  outline-offset: 6px;
}

@keyframes topbarIn {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 767px) {
  .topbar__row {
    justify-content: center;
    height: 64px;
  }

  .topbar.is-scrolled .topbar__row {
    height: 56px;
  }

  .topbar__logo {
    width: 116px;
  }

  .topbar .btn {
    display: none;
  }
}

/* ---------- Первый экран ---------- */

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 128px 0 96px;
  overflow-x: clip;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.aurora--1 {
  top: -420px;
  left: -300px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(closest-side, rgba(94, 79, 224, 0.5), rgba(94, 79, 224, 0.12) 55%, transparent);
  animation: drift1 18s ease-in-out infinite alternate;
}

.aurora--2 {
  top: 8%;
  right: -360px;
  width: 860px;
  height: 860px;
  background: radial-gradient(closest-side, rgba(30, 96, 200, 0.42), rgba(30, 96, 200, 0.1) 55%, transparent);
  animation: drift2 22s ease-in-out infinite alternate;
}

.aurora--3 {
  bottom: -460px;
  left: 28%;
  width: 760px;
  height: 760px;
  background: radial-gradient(closest-side, rgba(184, 64, 79, 0.22), transparent);
  animation: drift3 26s ease-in-out infinite alternate;
}

@keyframes drift1 {
  to { transform: translate3d(180px, 120px, 0) scale(1.1); }
}

@keyframes drift2 {
  to { transform: translate3d(-160px, 80px, 0) scale(0.92); }
}

@keyframes drift3 {
  to { transform: translate3d(-120px, -140px, 0) scale(1.15); }
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157, 151, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 151, 240, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 25%, transparent 78%);
  animation: gridMove 24s linear infinite;
}

@keyframes gridMove {
  to { background-position: 64px 64px, 64px 64px; }
}

.particle {
  position: absolute;
  bottom: -40px;
  left: var(--x);
  width: var(--s);
  aspect-ratio: 1 / 0.88;
  background: var(--c);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0;
  animation: rise var(--t, 18s) linear var(--d, 0s) infinite;
}

@keyframes rise {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.9; }
  85% { opacity: 0.6; }
  100% { transform: translate3d(40px, -115vh, 0) rotate(260deg); opacity: 0; }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 56px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

[data-enter] {
  animation: enterUp 1.1s var(--ease-out) both;
  animation-delay: calc(var(--e, 0) * 0.12s + 0.15s);
}

@keyframes enterUp {
  from { opacity: 0; translate: 0 28px; filter: blur(8px); }
  to { opacity: 1; translate: 0 0; filter: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--lav);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  flex: none;
  width: 52px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--lav));
}

.eyebrow::after {
  margin-left: -0.26em;
  transform: scaleX(-1);
}

.hero__title {
  margin: 0;
  font-size: clamp(40px, 5.9vw, 90px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding: 0.12em 0 0.06em;
  margin: -0.12em 0 -0.06em;
}

.hero__title .line > span {
  display: inline-block;
  animation: lineUp 1.2s var(--ease-out) both;
  animation-delay: calc(0.25s + var(--l) * 0.12s);
}

@keyframes lineUp {
  from { transform: translateY(115%) rotate(4deg); }
  to { transform: none; }
}

.hero__lead {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}

.hero__lead mark {
  color: var(--text);
  font-weight: 700;
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(123, 108, 246, 0.55), rgba(157, 151, 240, 0.35));
  background-size: 0% 0.4em;
  background-repeat: no-repeat;
  background-position: 0 88%;
  animation: markIn 1.2s var(--ease) 1.5s forwards;
}

@keyframes markIn {
  to { background-size: 100% 0.4em; }
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 42px;
}

/* визуал: доска с плитками в 3D */

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  perspective: 1400px;
  animation: visualIn 1.6s var(--ease-out) 0.35s both;
}

@keyframes visualIn {
  from { opacity: 0; transform: translateY(70px) scale(0.9); }
  to { opacity: 1; transform: none; }
}

.hero__halo {
  position: absolute;
  width: 125%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(123, 108, 246, 0.42), rgba(123, 108, 246, 0.1) 55%, transparent 72%);
  animation: halo 6s ease-in-out infinite;
}

@keyframes halo {
  0%, 100% { transform: scale(0.94); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero__delta {
  position: absolute;
  width: 112%;
  max-width: 660px;
  height: auto;
  overflow: visible;
  opacity: 0.32;
  animation: deltaFloat 10s ease-in-out infinite;
}

.hero__delta-path {
  fill: none;
  stroke: var(--lav);
  stroke-width: 0.35;
  stroke-linejoin: round;
  stroke-dasharray: 2 3;
  animation: dashFlow 14s linear infinite;
}

.hero__delta-path--inner {
  stroke: var(--violet);
  stroke-width: 0.25;
  stroke-dasharray: 1 2.5;
  animation-direction: reverse;
  animation-duration: 10s;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -100; }
}

@keyframes deltaFloat {
  0%, 100% { transform: translateY(-2%) rotate(-2deg); }
  50% { transform: translateY(2%) rotate(2deg); }
}

.board {
  --tx: 0;
  --ty: 0;
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  transform-style: preserve-3d;
  transform:
    rotateX(calc(12deg - var(--ty) * 12deg))
    rotateY(calc(-14deg + var(--tx) * 20deg))
    rotateZ(2deg);
  will-change: transform;
}

.board__face {
  position: relative;
  transform-style: preserve-3d;
  padding: 40px 32px 32px;
  border-radius: 36px;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(123, 108, 246, 0.28), transparent 60%),
    linear-gradient(160deg, rgba(30, 42, 118, 0.94), rgba(11, 18, 58, 0.96) 62%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(157, 151, 240, 0.26),
    0 70px 120px -40px rgba(0, 0, 0, 0.85),
    0 0 90px -20px rgba(123, 108, 246, 0.45);
}

.board__logo {
  width: 100%;
  height: auto;
  aspect-ratio: 524 / 100;
  fill: url(#logo-gradient);
  transform: translateZ(36px);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.45));
}

.board__rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  transform: translateZ(20px);
}

.board__rule i {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(157, 151, 240, 0.15), rgba(157, 151, 240, 0.7), rgba(157, 151, 240, 0.15));
}

.board__rule b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lav);
  box-shadow: 0 0 12px var(--lav);
  animation: dotPulse 2.4s ease-in-out infinite;
}

.board__rule b + i + b {
  animation-delay: -1.2s;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
}

.board__tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  transform-style: preserve-3d;
}

.board .tile {
  --size: 100%;
  border-radius: 22%;
  animation:
    tilePop 0.9s var(--ease-out) calc(0.8s + var(--i) * 0.08s) both,
    tileBob 5.2s ease-in-out calc(var(--i) * -0.42s) infinite;
  transition: rotate 0.4s var(--ease), filter 0.4s var(--ease);
}

.board .tile:hover {
  rotate: -8deg;
  filter: brightness(1.15);
}

@keyframes tilePop {
  from { scale: 0.2; opacity: 0; }
  to { scale: 1; opacity: 1; }
}

@keyframes tileBob {
  0%, 100% { transform: translateZ(22px); }
  50% { transform: translateZ(62px) translateY(-6px); }
}

.board__corner {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 3px solid var(--violet);
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(123, 108, 246, 0.7));
  animation: cornerPulse 3.2s ease-in-out infinite;
}

.board__corner--tl { top: -20px; left: -20px; border-right: 0; border-bottom: 0; border-top-left-radius: 24px; --dx: -1; --dy: -1; }
.board__corner--tr { top: -20px; right: -20px; border-left: 0; border-bottom: 0; border-top-right-radius: 24px; --dx: 1; --dy: -1; }
.board__corner--bl { bottom: -20px; left: -20px; border-right: 0; border-top: 0; border-bottom-left-radius: 24px; --dx: -1; --dy: 1; }
.board__corner--br { bottom: -20px; right: -20px; border-left: 0; border-top: 0; border-bottom-right-radius: 24px; --dx: 1; --dy: 1; }

@keyframes cornerPulse {
  0%, 100% { translate: 0 0; }
  50% { translate: calc(var(--dx) * 7px) calc(var(--dy) * 7px); }
}

.float-tile {
  position: absolute;
  z-index: 3;
  animation: floaty 7s ease-in-out infinite;
}

.float-tile--1 { top: 2%; right: 1%; --size: 78px; rotate: 14deg; }
.float-tile--2 { bottom: 4%; left: -2%; --size: 66px; rotate: -12deg; animation-delay: -2.4s; filter: blur(1.5px); opacity: 0.9; }
.float-tile--3 { top: 12%; left: 2%; --size: 48px; rotate: -18deg; animation-delay: -4.6s; z-index: 1; opacity: 0.75; filter: blur(2.5px); }

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -20px, 0); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 26px;
  height: 42px;
  margin-left: -13px;
  border: 2px solid rgba(157, 151, 240, 0.45);
  border-radius: 14px;
  animation: enterUp 1s var(--ease-out) 1.6s both;
}

.hero__scroll i {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--lav);
  animation: scrollDot 1.8s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@media (max-width: 1023px) {
  .hero {
    padding: 120px 0 88px;
    text-align: center;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    min-height: 0;
    padding: 40px 0 24px;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 0;
    padding: 104px 0 64px;
  }

  .eyebrow {
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 32px;
  }

  .hero__title {
    font-size: clamp(38px, 12.4vw, 60px);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero__cta {
    margin-top: 32px;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__visual {
    padding: 28px 12px 8px;
  }

  .board {
    width: min(360px, 100%);
  }

  .board__face {
    padding: 28px 20px 22px;
    border-radius: 28px;
  }

  .board__tiles {
    gap: 10px;
    margin-top: 20px;
  }

  .board__rule {
    margin-top: 16px;
  }

  .board__corner {
    width: 40px;
    height: 40px;
    border-width: 2.5px;
  }

  .board__corner--tl, .board__corner--tr { top: -12px; }
  .board__corner--bl, .board__corner--br { bottom: -12px; }
  .board__corner--tl, .board__corner--bl { left: -12px; }
  .board__corner--tr, .board__corner--br { right: -12px; }

  .float-tile--1 { --size: 56px; top: 0; right: 0; }
  .float-tile--2 { --size: 48px; bottom: -4px; left: 0; }
  .float-tile--3 { display: none; }
}

/* ---------- Секции ---------- */

.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow-x: clip;
}

.section__title {
  margin: 0 0 clamp(36px, 5vw, 64px);
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-align: center;
  text-wrap: balance;
}

.section__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 4.5vw, 56px);
}

.js [data-reveal] {
  opacity: 0;
}

.js [data-reveal].is-in {
  animation: reveal 1.1s var(--ease-out) var(--d, 0s) both;
}

@keyframes reveal {
  from { opacity: 0; translate: 0 48px; filter: blur(10px); }
  to { opacity: 1; translate: 0 0; filter: none; }
}

@media (max-width: 767px) {
  .section__cta .btn {
    width: 100%;
  }
}

/* ---------- Цены ---------- */

.pricing::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(1100px, 140vw);
  aspect-ratio: 1.6;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(81, 64, 214, 0.28), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.offer {
  --mx: 50%;
  --my: -30%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 12px;
  padding: clamp(26px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(520px circle at var(--mx) var(--my), rgba(157, 151, 240, 0.17), transparent 42%),
    linear-gradient(165deg, rgba(27, 39, 108, 0.8), rgba(12, 19, 58, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 40px 80px -44px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.offer:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 56px 100px -44px rgba(123, 108, 246, 0.55);
}

.offer__mark {
  position: absolute;
  right: -46px;
  bottom: -64px;
  z-index: -1;
  width: 260px;
  height: 229px;
  color: var(--lav);
  opacity: 0.08;
  transition: transform 0.9s var(--ease), opacity 0.6s var(--ease);
}

.offer:hover .offer__mark {
  opacity: 0.16;
  transform: rotate(-8deg) scale(1.06);
}

.offer__icons {
  order: 0;
  display: flex;
  align-items: center;
}

.offer__icons .tile {
  --size: 58px;
  transition: rotate 0.5s var(--ease), translate 0.5s var(--ease);
}

.offer__icons .tile + .tile {
  margin-left: -24px;
}

.offer--best .offer__icons .tile:first-child {
  rotate: -10deg;
  translate: 0 3px;
}

.offer--best .offer__icons .tile:last-child {
  rotate: 6deg;
}

.offer:hover .offer__icons .tile:first-child {
  rotate: -16deg;
  translate: -6px 2px;
}

.offer:hover .offer__icons .tile:last-child {
  rotate: 12deg;
  translate: 8px -4px;
}

.offer__line {
  order: 2;
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr);
  align-items: center;
  column-gap: 16px;
  row-gap: 10px;
  margin: 22px 0 0;
}

.offer__qty {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lav);
}

.offer__dash {
  /* тире из текста показываем как линию-разделитель */
  height: 2px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(157, 151, 240, 0.7), transparent);
  transform-origin: left center;
  transition: transform 0.6s var(--ease);
}

.offer:hover .offer__dash {
  transform: scaleX(1.08);
}

.offer__price {
  grid-column: 1 / -1;
  display: block;
  font-size: clamp(50px, 6.4vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.offer__num {
  background-image: linear-gradient(180deg, #FFFFFF 35%, #CBC7FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.offer__cur {
  font-size: 0.6em;
  letter-spacing: 0;
  color: var(--lav);
}

.offer--best {
  border-color: transparent;
  background:
    radial-gradient(520px circle at var(--mx) var(--my), rgba(203, 199, 255, 0.2), transparent 42%),
    radial-gradient(90% 70% at 100% 100%, rgba(242, 181, 68, 0.14), transparent 60%),
    linear-gradient(165deg, rgba(62, 50, 170, 0.9), rgba(17, 22, 74, 0.96));
}

.offer--best::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle),
      rgba(123, 108, 246, 0.25) 0deg,
      #CBC7FF 60deg,
      #FFD27A 110deg,
      rgba(123, 108, 246, 0.25) 170deg,
      rgba(123, 108, 246, 0.25) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none;
  animation: angleSpin 5s linear infinite;
}

@keyframes angleSpin {
  to { --angle: 360deg; }
}

.offer__badge {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0 auto;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  color: #07301C;
  background: linear-gradient(135deg, #8BF5C0, #3DD68C);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 28px -12px rgba(61, 214, 140, 0.85);
  animation: badgeBeat 2.8s ease-in-out infinite;
}

.offer__badge .icon {
  width: 18px;
  height: 18px;
}

@keyframes badgeBeat {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.07); }
  24% { transform: scale(1); }
}

@media (max-width: 767px) {
  .offers {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .offer {
    border-radius: 24px;
  }

  .offer__icons .tile {
    --size: 50px;
  }

  .offer__line {
    margin-top: 16px;
  }

  .offer__qty {
    font-size: 13px;
  }

  .offer__price {
    font-size: clamp(44px, 14vw, 60px);
  }

  .offer__badge {
    font-size: 14px;
    padding: 8px 14px 8px 10px;
  }
}

/* ---------- Подарок ---------- */

.gift__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 48px;
  padding: clamp(28px, 5.4vw, 76px);
  border-radius: 40px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(242, 181, 68, 0.16), transparent 50%),
    radial-gradient(90% 80% at 0% 100%, rgba(123, 108, 246, 0.32), transparent 55%),
    linear-gradient(160deg, #141E5C, #0B1240);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.9);
}

.gift__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(157, 151, 240, 0.55), rgba(157, 151, 240, 0.08) 40%, rgba(242, 181, 68, 0.08) 60%, rgba(242, 181, 68, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none;
}

.gift__confetti {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.gift__confetti i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--c);
  opacity: 0.75;
  animation: confetti var(--t) ease-in-out var(--d) infinite;
}

@keyframes confetti {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(12px, -26px, 0) rotate(200deg); }
}

.gift__content {
  position: relative;
  z-index: 1;
}

.gift__title {
  margin-bottom: 26px;
  text-align: left;
}

.gift__lead {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
  color: #DCDFF5;
}

.gift__lead strong,
.track strong {
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 28px 0 38px;
  padding: 22px 24px;
  border: 1px solid rgba(242, 181, 68, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(242, 181, 68, 0.1), rgba(8, 13, 42, 0.5) 45%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.track:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 181, 68, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 60px -30px rgba(242, 181, 68, 0.45);
}

.track p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.track__tile {
  --size: 54px;
  flex: none;
}

.track__tile .icon {
  width: 60%;
  height: 60%;
}

.track__sector {
  stroke: #E3A12F;
  stroke-dasharray: 0 100;
  animation: quarter 4s var(--ease) infinite;
}

.track__hand {
  stroke: #7A4A06;
  transform-origin: 12px 12px;
  animation: hand 4s var(--ease) infinite;
}

@keyframes quarter {
  0%, 8% { stroke-dasharray: 0 100; }
  60%, 88% { stroke-dasharray: 25 100; }
  100% { stroke-dasharray: 25 100; opacity: 0; }
}

@keyframes hand {
  0%, 8% { transform: rotate(0deg); }
  60%, 100% { transform: rotate(90deg); }
}

.hl {
  font-weight: 800;
  white-space: nowrap;
  background-image: linear-gradient(95deg, #FFF0CC, #FFD27A 45%, #F2A93B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gift__visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 0.94;
  justify-self: center;
}

.gift-art {
  position: absolute;
  inset: 6% 4% 0;
  width: 92%;
  height: auto;
  overflow: visible;
}

.gift-art__halo {
  transform-box: fill-box;
  transform-origin: center;
  animation: halo 5s ease-in-out infinite;
}

.gift-art__float {
  animation: giftFloat 6s ease-in-out infinite;
}

@keyframes giftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.gift-art__shadow {
  transform-box: fill-box;
  transform-origin: center;
  animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
  50% { transform: scale(0.86) translateY(10px); opacity: 0.4; }
}

.gift-art__box {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: giftBox 4.2s var(--ease) infinite;
}

.gift-art__lid {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: giftLid 4.2s var(--ease) infinite;
}

.gift-art__rays {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: giftRays 4.2s var(--ease) infinite;
}

@keyframes giftBox {
  0%, 52%, 100% { transform: none; }
  58% { transform: scale(1.04, 0.95); }
  68% { transform: scale(0.98, 1.03); }
  78% { transform: none; }
}

@keyframes giftLid {
  0%, 52%, 100% { transform: none; }
  64% { transform: translateY(-26px) rotate(-6deg); }
  74% { transform: translateY(-16px) rotate(4deg); }
  86% { transform: translateY(-2px) rotate(-1deg); }
}

@keyframes giftRays {
  0%, 54%, 100% { opacity: 0; transform: scaleY(0.4); }
  66% { opacity: 1; transform: scaleY(1.05); }
  88% { opacity: 0; transform: scaleY(0.9); }
}

.sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 2.6s ease-in-out var(--d, 0s) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.35) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(45deg); }
}

.gift__tile {
  position: absolute;
  z-index: 2;
  --size: 64px;
  animation: floaty 6.5s ease-in-out infinite;
  transition: scale 0.4s var(--ease);
}

.gift__tile:hover {
  scale: 1.1;
}

.gift__tile--1 { top: 6%; left: 0; rotate: -12deg; }
.gift__tile--2 { top: 0; right: 4%; rotate: 10deg; animation-delay: -1.6s; --size: 58px; }
.gift__tile--3 { bottom: 12%; left: -3%; rotate: 9deg; animation-delay: -3.2s; --size: 54px; }
.gift__tile--4 { bottom: 16%; right: -3%; rotate: -9deg; animation-delay: -4.8s; }

@media (max-width: 1023px) {
  .gift__panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .gift__visual {
    order: -1;
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .gift__panel {
    padding: 24px 20px 28px;
    border-radius: 28px;
  }

  .gift__visual {
    max-width: 320px;
  }

  .gift__tile { --size: 48px; }
  .gift__tile--2 { --size: 44px; }
  .gift__tile--3 { --size: 42px; }

  .gift__title {
    margin-bottom: 18px;
    font-size: clamp(30px, 8.6vw, 40px);
  }

  .gift__lead {
    font-size: 17px;
  }

  .track {
    flex-direction: column;
    gap: 14px;
    margin: 22px 0 28px;
    padding: 18px;
    border-radius: 20px;
  }

  .track p {
    font-size: 16px;
  }

  .track__tile {
    --size: 46px;
  }

  .gift__cta .btn {
    width: 100%;
  }
}

/* ---------- Подвал ---------- */

.footer {
  padding: 48px 0 calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(6, 11, 36, 0.7));
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  display: block;
  width: 156px;
  color: #fff;
  opacity: 0.92;
  border-radius: 6px;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.footer__logo svg {
  width: 100%;
  height: auto;
  aspect-ratio: 524 / 100;
  fill: url(#logo-gradient);
}

.footer__logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

.footer__logo:focus-visible {
  outline: 3px solid var(--lav-soft);
  outline-offset: 6px;
}

.footer__tiles {
  display: flex;
  gap: 8px;
}

.footer__tiles i {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--c) 72%, #fff), var(--c));
  box-shadow: 0 6px 14px -6px var(--c);
  animation: footWave 3.2s ease-in-out calc(var(--i) * 0.12s) infinite;
}

@keyframes footWave {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-7px); }
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer__logo {
    width: 136px;
  }
}

/* ---------- Нижняя панель с кнопкой (телефон) ---------- */

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 18px var(--gutter) calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(6, 11, 36, 0), rgba(6, 11, 36, 0.92) 42%);
  transform: translateY(115%);
  pointer-events: none;
  transition: transform 0.55s var(--ease);
}

.dock.is-visible {
  transform: none;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .dock {
    display: none;
  }
}

/* ============================================================
   Слой с формой GetCourse.
   Узкие экраны — полноэкранный слой, скроллится весь слой.
   Широкие экраны — карточка по высоте контента с max-height: 90dvh.
   Разметка и iframe общие, режимы отличаются только этой media-query
   (та же ширина задана в widget.js → desktopQuery).
   ============================================================ */

.gc-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.gc-layer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}

.gc-dialog {
  position: relative;
  /* место под закреплённый крестик */
  padding-top: 64px;
  padding-bottom: env(safe-area-inset-bottom);
  background: #fff;
  transform: translateY(28px);
  transition: transform 0.55s var(--ease-out);
}

.gc-layer.is-open .gc-dialog {
  transform: none;
}

.gc-frame {
  position: relative;
  overflow: hidden;
  /* заглушка, пока GetCourse не прислал высоту */
  min-height: calc(100vh - 64px);
  min-height: calc(100dvh - 64px);
}

.gc-layer[data-sized] .gc-frame {
  min-height: 0;
}

.gc-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  transform-origin: 0 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gc-layer[data-sized] .gc-frame iframe {
  opacity: 1;
}

.gc-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.gc-layer[data-sized] .gc-loader {
  opacity: 0;
  visibility: hidden;
}

.gc-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(123, 108, 246, 0.18);
  border-top-color: var(--violet);
  animation: spin 0.9s linear infinite;
}

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

.gc-close {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top));
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #0A1133;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 10px 30px -6px rgba(10, 17, 51, 0.65);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.4s var(--ease), background-color 0.3s ease;
}

.gc-close:hover {
  transform: rotate(90deg);
  background: var(--violet-deep);
}

.gc-close:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

.gc-close .icon {
  width: 22px;
  height: 22px;
  fill: none;
}

@media (min-width: 768px) {
  .gc-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 24px;
    padding: 5dvh 24px;
    overflow: hidden;
    background:
      radial-gradient(800px 600px at 50% 40%, rgba(81, 64, 214, 0.3), transparent 70%),
      rgba(5, 9, 30, 0.76);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .gc-dialog {
    width: min(600px, 100%);
    height: auto;
    max-height: 90vh;
    max-height: 90dvh;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 28px;
    box-shadow:
      0 0 0 1px rgba(157, 151, 240, 0.35),
      0 50px 140px -30px rgba(0, 0, 0, 0.8),
      0 0 90px -10px rgba(123, 108, 246, 0.45);
    transform: translateY(36px) scale(0.96);
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 17, 51, 0.3) transparent;
  }

  .gc-frame {
    min-height: 440px;
  }

  .gc-close {
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
  }
}
