:root {
  --navy-950: #061a2b;
  --navy-900: #082c3e;
  --navy-800: #0b3b52;
  --teal: #19b8cb;
  --purple-800: #3e2370;
  --purple-700: #4b2e83;
  --purple-500: #7c5ce7;
  --gold: #f3c969;
  --gold-deep: #d8a93d;
  --paper: #f7f8fc;
  --white: #fff;
  --ink: #171322;
  --body: #566073;
  --line: #e2e6ef;
  --green: #23bf73;
  --container: min(1180px, calc(100% - 48px));
  --shadow-soft: 0 20px 60px rgba(13, 29, 53, .12);
  --shadow-purple: 0 24px 70px rgba(57, 31, 105, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(6, 26, 43, .76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: var(--container);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  color: #fff;
  font-size: 27px;
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.025em;
}

.brand-copy small {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .19em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 31px 0 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.language-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.language-toggle:hover {
  border-color: var(--gold);
  background: rgba(243, 201, 105, .12);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 1040px;
  padding: 156px 0 78px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 17%, rgba(25, 184, 203, .19), transparent 25%),
    radial-gradient(circle at 13% 36%, rgba(124, 92, 231, .21), transparent 31%),
    linear-gradient(138deg, var(--navy-950) 0%, var(--navy-900) 57%, #071f35 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  right: -190px;
  top: 140px;
  border: 1px solid rgba(25, 184, 203, .17);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(25, 184, 203, .03),
    0 0 0 160px rgba(124, 92, 231, .025);
}

.tech-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 73%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 73%);
}

.tech-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.tech-orbit::before,
.tech-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(25, 184, 203, .9);
}

.orbit-one {
  top: 216px;
  left: -170px;
  width: 520px;
  height: 520px;
}

.orbit-one::before {
  top: 96px;
  right: 50px;
}

.orbit-one::after {
  right: 12px;
  bottom: 142px;
}

.orbit-two {
  right: 12%;
  bottom: -330px;
  width: 710px;
  height: 710px;
}

.orbit-two::before {
  top: 62px;
  left: 120px;
  background: var(--purple-500);
  box-shadow: 0 0 18px rgba(124, 92, 231, .9);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px 52px;
  align-items: center;
}

.hero-intro {
  position: relative;
  z-index: 2;
  padding: 18px 0 4px;
}

.hero-badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(25, 184, 203, .3);
  border-radius: 999px;
  color: #bdebf2;
  background: rgba(25, 184, 203, .08);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .025em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(25, 184, 203, .13);
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.052em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  margin-top: 6px;
  color: transparent;
  background: linear-gradient(90deg, var(--gold) 0%, #ffe5a8 42%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-intro > p {
  max-width: 565px;
  margin: 25px 0 28px;
  color: rgba(233, 245, 250, .74);
  font-size: 16px;
  line-height: 1.72;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.hero-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
}

.hero-trust i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.hero-trust b {
  font-weight: 650;
}

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

.video-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 24px;
  background: #101723;
  box-shadow: 0 30px 85px rgba(0, 0, 0, .4);
}

.video-frame::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .035);
}

.video-frame iframe,
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  z-index: 1;
  object-fit: cover;
  transition: opacity .35s ease, visibility .35s ease;
}

.video-frame iframe {
  z-index: 2;
}

.video-frame.loaded .video-poster,
.video-frame.loaded .video-play {
  visibility: hidden;
  opacity: 0;
}

.video-play {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  color: #fff;
  background: rgba(75, 46, 131, .82);
  box-shadow: 0 15px 40px rgba(33, 17, 66, .42);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .35s ease;
}

.video-play:hover {
  background: rgba(124, 92, 231, .94);
  transform: translate(-50%, -50%) scale(1.07);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.video-status {
  position: absolute;
  z-index: 5;
  right: 15px;
  bottom: 15px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 26, 43, .74);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 10px;
}

.video-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.video-status b {
  font-weight: 650;
}

.video-glow {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: -18px;
  left: 4%;
  height: 60px;
  opacity: .75;
  background: linear-gradient(90deg, var(--purple-500), var(--teal));
  filter: blur(35px);
}

.reward-card {
  position: relative;
  isolation: isolate;
  grid-column: 1 / -1;
  min-height: 142px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(243, 201, 105, .55);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 87% 10%, rgba(243, 201, 105, .22), transparent 26%),
    linear-gradient(112deg, #321c5f 0%, var(--purple-700) 48%, #241644 100%);
  box-shadow: var(--shadow-purple);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.reward-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  right: -210px;
  top: -270px;
  border: 1px solid rgba(243, 201, 105, .25);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(243, 201, 105, .035),
    0 0 0 84px rgba(243, 201, 105, .025);
}

.reward-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}

.reward-card:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(57, 31, 105, .4);
  transform: translateY(-4px);
}

.reward-card:hover::after {
  left: 115%;
}

.reward-icon {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 201, 105, .45);
  border-radius: 21px;
  background: rgba(255, 255, 255, .08);
}

.gift-box {
  position: absolute;
  width: 38px;
  height: 32px;
  bottom: 16px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 43%, #fff0bd 43%, #fff0bd 57%, transparent 57%),
    linear-gradient(var(--gold), var(--gold-deep));
}

.gift-lid {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 11px;
  top: 26px;
  border-radius: 4px;
  background: #ffe4a2;
}

.gift-lid::before,
.gift-lid::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 12px;
  top: -11px;
  border: 4px solid #ffe4a2;
  border-bottom: 0;
}

.gift-lid::before {
  left: 6px;
  border-radius: 10px 2px 0;
  transform: rotate(12deg);
}

.gift-lid::after {
  right: 6px;
  border-radius: 2px 10px 0 0;
  transform: rotate(-12deg);
}

.reward-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reward-copy > span {
  color: #d9cced;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.reward-copy strong {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.reward-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px 13px 20px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffe6a9, var(--gold));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.reward-action b {
  font-size: 13px;
  font-weight: 850;
}

.reward-action i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--purple-700);
  font-style: normal;
}

.transactions-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .22);
}

.panel-heading {
  padding: 23px 26px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--purple-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #637083;
  font-size: 11px;
}

.live-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(35, 191, 115, .12);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.live-indicator b {
  font-weight: 700;
}

.transaction-shell {
  width: 100%;
  overflow: hidden;
}

.transaction-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .75fr 1.2fr;
  align-items: center;
}

.transaction-head {
  min-height: 42px;
  padding: 0 26px;
  color: #7d8797;
  background: #fafbfe;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .025em;
}

.transaction-viewport {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.transaction-rows {
  will-change: transform;
}

.transaction-row {
  min-height: 48px;
  padding: 0 26px;
  border-top: 1px solid #edf0f5;
  color: #334055;
  font-size: 13px;
}

.transaction-row span:nth-child(2) {
  color: var(--purple-700);
  font-weight: 850;
}

.transaction-row span:nth-child(3) {
  color: var(--navy-800);
  font-weight: 750;
}

.why-section {
  padding: 105px 0 112px;
  background:
    radial-gradient(circle at 7% 5%, rgba(124, 92, 231, .08), transparent 24%),
    var(--paper);
}

.section-title {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title h2,
.process-copy h2,
.closing-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-title p {
  margin: 18px 0 0;
  color: #758094;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit {
  position: relative;
  min-height: 360px;
  padding: 35px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(13, 29, 53, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit:hover {
  border-color: rgba(124, 92, 231, .35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.benefit.featured {
  color: #dfe9ef;
  border-color: rgba(25, 184, 203, .25);
  background:
    radial-gradient(circle at 100% 0, rgba(25, 184, 203, .18), transparent 32%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  box-shadow: 0 24px 60px rgba(6, 26, 43, .2);
}

.benefit-number {
  position: absolute;
  right: 24px;
  top: 15px;
  color: rgba(75, 46, 131, .07);
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}

.featured .benefit-number {
  color: rgba(255, 255, 255, .055);
}

.benefit-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 29px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #f2edff, #fff7e1);
}

.benefit-icon img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.featured .benefit-icon {
  background: rgba(255, 255, 255, .1);
}

.benefit h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.featured h3 {
  color: #fff;
}

.benefit p {
  margin: 0;
  color: #748093;
  font-size: 14px;
  line-height: 1.75;
}

.featured p {
  color: rgba(223, 233, 239, .7);
}

.process-section {
  padding: 40px 0 112px;
  background: var(--paper);
}

.process-shell {
  min-height: 590px;
  padding: clamp(36px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid #e7e5ef;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 92, 231, .1), transparent 28%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.process-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(35px, 4vw, 51px);
}

.process-copy > p {
  max-width: 570px;
  margin: 0;
  color: #707c8e;
}

.process-steps {
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-steps > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.process-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.process-steps b {
  color: #3f4a5b;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.process-steps > i {
  width: 23px;
  height: 1px;
  background: #d9ddea;
}

.primary-button,
.gold-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 14px 13px 23px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 14px 32px rgba(75, 46, 131, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover,
.gold-button:hover {
  box-shadow: 0 18px 40px rgba(75, 46, 131, .34);
  transform: translateY(-3px);
}

.primary-button span,
.gold-button span {
  font-size: 13px;
  font-weight: 850;
}

.primary-button i,
.gold-button i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-700);
  background: #fff;
  font-style: normal;
}

.process-visual {
  position: relative;
  min-height: 410px;
}

.visual-orbit {
  position: absolute;
  inset: 3% -25% -25% 0;
  border: 1px solid rgba(25, 184, 203, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(25, 184, 203, .025),
    0 0 0 90px rgba(124, 92, 231, .025);
}

.gift-stack {
  position: absolute;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(13, 29, 53, .18);
}

.gift-stack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-back {
  width: 68%;
  height: 49%;
  top: 8%;
  right: 0;
  transform: rotate(5deg);
}

.card-front {
  z-index: 2;
  width: 69%;
  height: 51%;
  left: 2%;
  bottom: 13%;
  transform: rotate(-4deg);
}

.security-chip {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 4%;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e9e8ef;
  border-radius: 17px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(13, 29, 53, .16);
}

.security-chip > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.security-chip div {
  display: flex;
  flex-direction: column;
}

.security-chip b {
  color: var(--ink);
  font-size: 12px;
}

.security-chip small {
  color: #7a8596;
  font-size: 10px;
}

.closing-cta {
  position: relative;
  isolation: isolate;
  padding: 85px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(25, 184, 203, .2), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.closing-inner > div {
  max-width: 760px;
}

.closing-inner .section-kicker {
  color: var(--gold);
}

.closing-inner h2 {
  color: #fff;
}

.closing-inner p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .67);
}

.gold-button {
  flex: 0 0 auto;
  color: var(--ink);
  background: linear-gradient(135deg, #ffe6a9, var(--gold));
  box-shadow: 0 15px 38px rgba(0, 0, 0, .2);
}

.gold-button i {
  color: #fff;
  background: var(--purple-700);
}

.footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, .54);
  background: #041421;
}

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

.footer .brand-logo {
  width: 38px;
  height: 38px;
}

.footer .brand-copy {
  font-size: 21px;
}

.footer p,
.footer > a {
  margin: 0;
  font-size: 11px;
}

.footer-inner > a:last-child {
  font-size: 11px;
  transition: color .2s ease;
}

.footer-inner > a:last-child:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 25px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #36ca69;
  box-shadow: 0 14px 35px rgba(17, 88, 51, .32);
  animation: whatsapp-breathe 1.9s ease-in-out infinite;
}

.whatsapp-float > span {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(54, 202, 105, .62);
  border-radius: 50%;
  animation: whatsapp-ring 1.9s ease-out infinite;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

@keyframes whatsapp-breathe {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.12); transform: scale(1.06); }
}

@keyframes whatsapp-ring {
  0% { opacity: .75; transform: scale(.8); }
  75%, 100% { opacity: 0; transform: scale(1.32); }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    max-width: 760px;
  }

  .hero-media {
    width: min(100%, 780px);
  }

  .reward-card,
  .transactions-panel {
    grid-column: 1;
  }

  .process-shell {
    grid-template-columns: 1fr;
  }

  .process-copy {
    max-width: 760px;
  }

  .process-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .site-header,
  .nav-wrap {
    min-height: 76px;
  }

  .site-header {
    position: absolute;
  }

  .nav-wrap {
    position: relative;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy {
    font-size: 23px;
  }

  .menu-toggle {
    order: 3;
    display: block;
  }

  .language-toggle {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    z-index: 60;
    top: 67px;
    right: 0;
    left: 0;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(6, 26, 43, .97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 11px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, .07);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-inner {
    gap: 34px;
  }

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

  .benefit {
    min-height: 0;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 660px) {
  :root {
    --container: calc(100% - 24px);
  }

  .brand-copy small {
    letter-spacing: .13em;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 44px;
  }

  .hero-badge {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-intro > p {
    font-size: 14px;
  }

  .hero-trust {
    gap: 9px 14px;
  }

  .video-frame {
    border-radius: 18px;
  }

  .video-play {
    width: 62px;
    height: 62px;
  }

  .reward-card {
    min-height: 0;
    padding: 21px;
    grid-template-columns: auto 1fr;
    gap: 17px;
    border-radius: 20px;
  }

  .reward-icon {
    width: 60px;
    height: 60px;
    border-radius: 17px;
  }

  .gift-box {
    width: 31px;
    height: 26px;
    bottom: 13px;
  }

  .gift-lid {
    width: 36px;
    height: 9px;
    top: 21px;
  }

  .gift-lid::before,
  .gift-lid::after {
    width: 12px;
    height: 10px;
    top: -9px;
    border-width: 3px;
    border-bottom: 0;
  }

  .reward-copy strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .reward-action {
    grid-column: 1 / -1;
    width: fit-content;
    padding-block: 10px;
  }

  .panel-heading {
    padding: 20px 18px 15px;
  }

  .panel-heading h2 {
    font-size: 19px;
  }

  .live-indicator b {
    display: none;
  }

  .transaction-shell {
    overflow-x: auto;
  }

  .transaction-head,
  .transaction-rows {
    min-width: 670px;
  }

  .transaction-head,
  .transaction-row {
    padding-inline: 18px;
  }

  .transaction-viewport {
    width: 670px;
  }

  .why-section {
    padding: 76px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2,
  .closing-inner h2 {
    font-size: 36px;
  }

  .benefit {
    padding: 29px 24px;
    border-radius: 21px;
  }

  .process-section {
    padding: 0 0 78px;
  }

  .process-shell {
    min-height: 0;
    padding: 32px 22px;
    gap: 38px;
    border-radius: 25px;
  }

  .process-copy h2 {
    font-size: 35px;
  }

  .process-steps {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .process-steps > i {
    width: 1px;
    height: 12px;
    margin-left: 15px;
  }

  .process-visual {
    min-height: 300px;
  }

  .closing-cta {
    padding: 70px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 17px;
    bottom: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
