:root {
  --bg: #07080d;
  --bg-soft: #0d0e15;
  --panel: rgba(18, 19, 29, 0.86);
  --panel-solid: #12131d;
  --panel-raised: #171925;
  --text: #f4f5fb;
  --muted: #a5a8b8;
  --muted-soft: #747788;
  --line: rgba(255, 255, 255, 0.09);
  --line-bright: rgba(255, 255, 255, 0.16);
  --lime: #c6ff79;
  --lime-strong: #aefd4f;
  --violet: #9c82ff;
  --violet-soft: #c7b9ff;
  --cyan: #62ddff;
  --success: #9cff8d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
select,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

::selection {
  background: rgba(198, 255, 121, 0.28);
  color: #fff;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
}

.page-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.7;
}

.page-glow-one {
  width: 620px;
  height: 620px;
  top: -280px;
  right: -180px;
  background: radial-gradient(circle, rgba(138, 105, 255, 0.25), transparent 68%);
}

.page-glow-two {
  width: 580px;
  height: 580px;
  top: 920px;
  left: -360px;
  background: radial-gradient(circle, rgba(76, 214, 255, 0.13), transparent 68%);
}

.section-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 8, 13, 0.74);
  backdrop-filter: blur(22px) saturate(145%);
}

.nav-wrap {
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(140deg, #8f72ff, #4f35ad 56%, #1a1732);
  box-shadow: 0 10px 28px rgba(122, 86, 255, 0.32);
  color: #fff;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -17px;
  right: -12px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(4px);
  opacity: 0.84;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--violet), var(--lime));
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.language-picker {
  min-width: 82px;
  min-height: 42px;
  padding: 0 10px 0 13px;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease;
}

.language-picker:hover {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.07);
}

.language-picker svg {
  width: 17px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.language-picker select {
  width: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

.language-picker option {
  background: #151620;
}

.hero {
  min-height: 720px;
  padding-block: 94px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 62px;
}

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

.eyebrow,
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(198, 255, 121, 0.18);
  border-radius: 999px;
  background: rgba(198, 255, 121, 0.07);
  color: var(--lime);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.13em;
}

.eyebrow {
  min-height: 32px;
  padding-inline: 13px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(198, 255, 121, 0.09), 0 0 16px var(--lime);
  animation: breathe 2.4s ease-in-out infinite;
}

.hero h1 {
  max-width: 650px;
  margin: 27px 0 24px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero h1 > span {
  display: block;
}

.gradient-text {
  padding-bottom: 0.08em;
  background: linear-gradient(105deg, #fff 4%, var(--violet-soft) 40%, var(--lime) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding-inline: 22px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: var(--lime);
  color: #11150b;
  box-shadow: 0 16px 36px rgba(174, 253, 79, 0.18);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  background: #d5ff9e;
  box-shadow: 0 20px 44px rgba(174, 253, 79, 0.26);
}

.primary-button svg,
.secondary-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.no-signup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.no-signup svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(156, 255, 141, 0.1);
  fill: none;
  stroke: var(--success);
  stroke-width: 2.4;
}

.trust-row {
  margin-top: 46px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-row strong {
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.trust-row span {
  color: var(--muted-soft);
  font-size: 11px;
  font-weight: 650;
}

.trust-row i {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, rgba(151, 118, 255, 0.34), rgba(61, 44, 118, 0.11) 48%, transparent 70%);
  filter: blur(3px);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(172, 151, 255, 0.13);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-12deg);
}

.orbit-one {
  width: 480px;
  height: 480px;
  animation: orbit 20s linear infinite;
}

.orbit-two {
  width: 360px;
  height: 360px;
  animation: orbit-reverse 16s linear infinite;
}

.credit-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.credit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.14), transparent 35%, transparent 68%, rgba(198, 255, 121, 0.07));
  pointer-events: none;
}

.credit-card-back {
  width: 360px;
  height: 220px;
  padding: 30px;
  transform: translate(46px, -58px) rotate(9deg);
  background: linear-gradient(145deg, #202230, #11121b);
  color: rgba(255, 255, 255, 0.5);
  animation: float-back 6.2s ease-in-out infinite;
}

.credit-card-back > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ghost-code {
  position: absolute;
  right: 28px;
  bottom: 26px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.credit-card-front {
  z-index: 2;
  width: 378px;
  height: 244px;
  padding: 29px;
  transform: translate(-30px, 35px) rotate(-5deg);
  background:
    radial-gradient(circle at 85% 5%, rgba(198, 255, 121, 0.19), transparent 27%),
    linear-gradient(145deg, #6048c8 0%, #342666 52%, #171326 100%);
  animation: float-front 5.6s ease-in-out infinite;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mini-brand {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
}

.bonus-number {
  margin-top: 24px;
  font-size: 66px;
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.credit-card-front > p {
  margin: 9px 0 0;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.card-code-row {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mini-copy {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-copy svg {
  width: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
}

.bonus-chip {
  position: absolute;
  z-index: 4;
  right: -10px;
  bottom: 56px;
  min-height: 46px;
  padding-inline: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(198, 255, 121, 0.28);
  border-radius: 15px;
  background: rgba(18, 21, 26, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  color: var(--lime);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.13em;
  backdrop-filter: blur(14px);
  animation: float-chip 4.8s ease-in-out infinite;
}

.bonus-chip svg,
.floating-spark svg,
.offer-badge svg,
.info-icon svg {
  fill: currentColor;
}

.bonus-chip svg {
  width: 16px;
}

.floating-spark {
  position: absolute;
  z-index: 4;
  color: var(--lime);
  filter: drop-shadow(0 0 14px rgba(198, 255, 121, 0.45));
}

.floating-spark svg {
  width: 28px;
}

.spark-one {
  top: 64px;
  left: 45px;
  animation: sparkle 4s ease-in-out infinite;
}

.spark-two {
  right: 40px;
  top: 130px;
  color: var(--cyan);
  animation: sparkle 4s 1.2s ease-in-out infinite;
}

.codes-section {
  padding-block: 112px 80px;
}

.section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  align-items: end;
  gap: 60px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.18em;
}

.section-heading h2,
.how-card h2,
.info-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.codes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 326px;
  align-items: start;
  gap: 22px;
}

.promo-list {
  display: grid;
  gap: 14px;
}

.promo-card {
  position: relative;
  min-height: 224px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.028), transparent 55%),
    var(--panel);
  box-shadow: 0 0 0 transparent;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.promo-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -95px;
  left: -95px;
  border-radius: 50%;
  background: rgba(148, 115, 255, 0.12);
  filter: blur(28px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.promo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 145, 255, 0.28);
  background:
    linear-gradient(110deg, rgba(153, 123, 255, 0.06), transparent 55%),
    rgba(20, 21, 32, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card-main {
  position: relative;
  z-index: 1;
}

.offer-badge {
  min-height: 27px;
  padding-inline: 10px;
  font-size: 9px;
}

.offer-badge svg {
  width: 13px;
}

.promo-card h3 {
  margin: 17px 0 9px;
  max-width: 500px;
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.026em;
  line-height: 1.22;
}

.promo-card-main > p {
  max-width: 535px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.offer-meta {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.offer-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-soft);
  font-size: 10px;
  font-weight: 680;
}

.offer-meta svg {
  width: 14px;
  fill: none;
  stroke: var(--success);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promo-action-wrap {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.click-hint {
  display: block;
  margin: 0 0 9px 2px;
  color: var(--muted-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.code-control {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 6px 7px 6px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  border: 1px dashed rgba(198, 255, 121, 0.28);
  border-radius: 14px;
  background: rgba(198, 255, 121, 0.055);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.code-control::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transition: transform 450ms ease;
}

.code-control:hover {
  border-color: rgba(198, 255, 121, 0.52);
  background: rgba(198, 255, 121, 0.09);
}

.code-control:hover::before {
  transform: translateX(110%);
}

.code-control:active {
  transform: scale(0.985);
}

.code-control.is-copied {
  border-style: solid;
  border-color: rgba(156, 255, 141, 0.5);
  background: rgba(156, 255, 141, 0.1);
}

.code-value {
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-state {
  position: relative;
  z-index: 1;
  min-width: 76px;
  min-height: 43px;
  padding-inline: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  background: var(--lime);
  color: #11150b;
  font-size: 11px;
  font-weight: 800;
}

.copy-state svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.is-copied .copy-state {
  background: var(--success);
}

.eligibility {
  display: block;
  margin-top: 9px;
  color: var(--muted-soft);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.how-card {
  position: sticky;
  top: 106px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(158, 129, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(151, 116, 255, 0.13), transparent 34%),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.how-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -72px;
  bottom: -74px;
  border: 1px solid rgba(198, 255, 121, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(198, 255, 121, 0.018), 0 0 0 56px rgba(198, 255, 121, 0.012);
}

.how-card h2 {
  max-width: 240px;
  font-size: 28px;
}

.steps-list {
  margin: 30px 0 28px;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
}

.steps-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  bottom: -19px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--line-bright), transparent);
}

.steps-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(198, 255, 121, 0.18);
  border-radius: 12px;
  background: rgba(198, 255, 121, 0.065);
  color: var(--lime);
  font-size: 9px;
  font-weight: 840;
}

.steps-list strong {
  display: block;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 730;
}

.steps-list p {
  margin: 4px 0 0;
  color: var(--muted-soft);
  font-size: 11px;
  line-height: 1.55;
}

.secondary-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 50px;
  background: #f4f5f8;
  color: #12131a;
}

.secondary-button:hover {
  background: #fff;
}

.how-note {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  color: var(--muted-soft);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.info-section {
  padding-block: 70px 86px;
}

.info-panel {
  position: relative;
  padding: 54px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1.1fr) minmax(310px, 0.9fr);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  border: 1px solid rgba(164, 139, 255, 0.17);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 7% 25%, rgba(145, 112, 255, 0.17), transparent 25%),
    linear-gradient(115deg, rgba(151, 119, 255, 0.07), transparent 55%),
    var(--panel-solid);
}

.info-panel::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -130px;
  top: -130px;
  border: 1px solid rgba(198, 255, 121, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(198, 255, 121, 0.018), 0 0 0 84px rgba(198, 255, 121, 0.012);
}

.info-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(198, 255, 121, 0.18);
  border-radius: 20px;
  background: rgba(198, 255, 121, 0.07);
  color: var(--lime);
}

.info-icon svg {
  width: 26px;
}

.info-panel h2 {
  max-width: 580px;
  font-size: 34px;
}

.info-panel > div:nth-child(2) > p:last-child {
  max-width: 620px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.benefit-grid span {
  min-height: 50px;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.benefit-grid b {
  color: var(--violet-soft);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.benefit-grid i {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.faq-section {
  padding-block: 88px 122px;
}

.faq-heading {
  margin-bottom: 38px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 25px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 680;
  transition: color 180ms ease;
}

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

.faq-list summary:hover {
  color: var(--lime);
}

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 850px;
  margin: -7px 0 25px;
  padding-right: 55px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 4, 7, 0.38);
}

.footer-inner {
  min-height: 150px;
  padding-block: 30px;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.25fr) 1fr;
  align-items: center;
  gap: 40px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.footer-inner > span {
  justify-self: end;
  color: var(--muted-soft);
  font-size: 10px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.copy-toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  min-height: 54px;
  padding: 10px 17px 10px 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(156, 255, 141, 0.24);
  border-radius: 16px;
  background: rgba(18, 21, 26, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  color: #eefdea;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(156, 255, 141, 0.12);
  color: var(--success);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.86); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes float-front {
  0%, 100% { transform: translate(-30px, 35px) rotate(-5deg); }
  50% { transform: translate(-30px, 23px) rotate(-3.5deg); }
}

@keyframes float-back {
  0%, 100% { transform: translate(46px, -58px) rotate(9deg); }
  50% { transform: translate(46px, -70px) rotate(7.5deg); }
}

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

@keyframes sparkle {
  0%, 100% { transform: scale(0.8) rotate(-8deg); opacity: 0.45; }
  50% { transform: scale(1.12) rotate(8deg); opacity: 1; }
}

@keyframes orbit {
  to { transform: rotateX(66deg) rotateZ(348deg); }
}

@keyframes orbit-reverse {
  to { transform: rotateX(66deg) rotateZ(-372deg); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .credit-card-front {
    transform: translate(-7px, 35px) rotate(-5deg) scale(0.9);
  }

  .credit-card-back {
    transform: translate(35px, -50px) rotate(9deg) scale(0.9);
  }

  .promo-card {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 20px;
  }

  .promo-action-wrap {
    padding-left: 20px;
  }

  .code-value {
    font-size: 11px;
  }

  .info-panel {
    grid-template-columns: 64px minmax(0, 1fr);
  }

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

  .benefit-grid span {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 78px 56px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1,
  .hero-lead {
    max-width: 720px;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 6px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .codes-layout {
    grid-template-columns: 1fr;
  }

  .how-card {
    position: relative;
    top: auto;
    margin-top: 8px;
  }

  .how-card h2 {
    max-width: none;
  }

  .steps-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-list li:not(:last-child)::after {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .footer-inner > span {
    justify-self: center;
  }
}

@media (max-width: 660px) {
  .section-wrap,
  .nav-wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .language-picker {
    min-width: 74px;
    min-height: 39px;
  }

  .hero {
    padding-block: 62px 34px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(43px, 14vw, 61px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .primary-button {
    width: 100%;
  }

  .trust-row {
    width: 100%;
    margin-top: 34px;
    gap: 14px;
    justify-content: space-between;
  }

  .trust-row i {
    height: 29px;
  }

  .trust-row strong {
    font-size: 16px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 345px;
  }

  .hero-visual::before {
    width: 310px;
    height: 310px;
  }

  .visual-orbit,
  .floating-spark {
    display: none;
  }

  .credit-card-front {
    width: 312px;
    height: 205px;
    padding: 23px;
    animation: none;
    transform: translate(-9px, 24px) rotate(-4deg);
  }

  .credit-card-back {
    width: 294px;
    height: 184px;
    animation: none;
    transform: translate(26px, -37px) rotate(8deg);
  }

  .bonus-number {
    margin-top: 18px;
    font-size: 53px;
  }

  .card-code-row {
    right: 23px;
    bottom: 21px;
    left: 23px;
    font-size: 11px;
  }

  .bonus-chip {
    right: 2px;
    bottom: 28px;
  }

  .codes-section,
  .faq-section {
    padding-block: 78px;
  }

  .section-heading h2,
  .how-card h2,
  .info-panel h2 {
    font-size: 34px;
  }

  .promo-card {
    min-height: auto;
    padding: 23px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promo-card h3 {
    font-size: 20px;
  }

  .promo-action-wrap {
    padding: 21px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .code-value {
    font-size: 12px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li:not(:last-child)::after {
    display: block;
  }

  .info-section {
    padding-block: 32px 72px;
  }

  .info-panel {
    padding: 29px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .info-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .benefit-grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .benefit-grid span {
    grid-template-columns: 30px 1fr;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .faq-list details > p {
    padding-right: 10px;
  }

  .copy-toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
