:root {
  color-scheme: dark;
  --bg-ink: #071014;
  --bg-deep: #0b1a1c;
  --glass: rgba(255, 255, 255, 0.11);
  --glass-strong: rgba(255, 255, 255, 0.18);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f3fbf8;
  --muted: #b6c6c0;
  --mint: #4cf4ba;
  --aqua: #4fc3ff;
  --gold: #f2c75c;
  --danger: #ff7f7f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-ink);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(76, 244, 186, 0.18), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(79, 195, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #061014 0%, #0d2221 45%, #111718 100%);
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  isolation: isolate;
}

.market-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.62;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 82%, transparent 100%);
}

.offer {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100svh - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(20px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06)),
    rgba(6, 16, 20, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.offer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 32%, rgba(76, 244, 186, 0.12));
  mix-blend-mode: screen;
}

.offer__content,
.terminal {
  position: relative;
  z-index: 1;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 5vh, 46px);
  color: #eafff8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  color: #08201a;
  background: linear-gradient(135deg, var(--mint), var(--gold));
  box-shadow: 0 0 28px rgba(76, 244, 186, 0.35);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  color: var(--mint);
  text-shadow: 0 0 34px rgba(76, 244, 186, 0.34);
}

.lead {
  max-width: 660px;
  margin: clamp(18px, 3vh, 28px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.56;
}

.bonus-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: clamp(20px, 3.6vh, 34px) 0;
}

.bonus-panel > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.bonus-panel__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-panel strong {
  display: block;
  color: var(--text);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.1;
  white-space: nowrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 390px);
  min-height: 58px;
  padding: 17px 22px;
  border: 0;
  border-radius: 8px;
  color: #061512;
  background: linear-gradient(135deg, var(--mint), #b4f870 55%, var(--gold));
  box-shadow: 0 18px 48px rgba(76, 244, 186, 0.26);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(76, 244, 186, 0.34);
  filter: saturate(1.08);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.legal-note {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(230, 242, 238, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.terminal {
  display: grid;
  gap: 18px;
  align-self: stretch;
  min-height: 500px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(1, 10, 13, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(24px);
}

.terminal__topline,
.terminal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ticker-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.ticker-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(232, 244, 240, 0.68);
  font-size: 12px;
}

.ticker-grid strong {
  color: var(--danger);
  font-size: 20px;
}

.ticker-grid .positive {
  color: var(--mint);
}

.chart {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(0, 10, 13, 0.28);
  background-size: 100% 25%, 20% 100%, auto;
}

.chart__line,
.chart__glow {
  position: absolute;
  inset: 10% 3% 13%;
  clip-path: polygon(
    0 74%,
    9% 62%,
    18% 70%,
    28% 44%,
    37% 53%,
    47% 31%,
    57% 42%,
    68% 20%,
    78% 29%,
    88% 12%,
    100% 18%,
    100% 100%,
    0 100%
  );
}

.chart__line {
  background: linear-gradient(180deg, rgba(76, 244, 186, 0.5), rgba(76, 244, 186, 0.02));
}

.chart__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: scan 3.2s ease-in-out infinite;
}

.chart__glow {
  border-top: 4px solid var(--mint);
  filter: drop-shadow(0 0 18px rgba(76, 244, 186, 0.9));
  background: transparent;
}

.terminal__footer {
  align-self: end;
  padding-top: 4px;
}

.terminal__footer strong {
  color: var(--gold);
  font-size: 24px;
}

@keyframes scan {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@media (max-width: 880px) {
  body {
    overflow: auto;
  }

  .page-shell {
    min-height: 100svh;
    padding: 12px;
  }

  .offer {
    min-height: calc(100svh - 24px);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 16px;
    padding: clamp(18px, 5vw, 28px);
  }

  .brand-row {
    margin-bottom: clamp(20px, 4vh, 34px);
  }

  .terminal {
    min-height: auto;
    padding: 16px;
  }

  .chart {
    min-height: 170px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    display: block;
  }

  .offer {
    min-height: calc(100svh - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .brand-row {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  .lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.46;
  }

  .bonus-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 15px 0;
  }

  .bonus-panel > div {
    display: block;
    padding: 10px 8px;
  }

  .bonus-panel__label {
    margin: 0 0 5px;
    font-size: 10px;
  }

  .bonus-panel strong {
    font-size: 13px;
    white-space: normal;
  }

  .cta-button {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px;
    font-size: 15px;
  }

  .legal-note {
    margin-top: 12px;
    font-size: 11px;
  }

  .terminal {
    display: none;
  }
}

@media (max-width: 380px) {
  .offer {
    padding: 14px;
  }

  h1 {
    font-size: 31px;
  }

  .lead {
    font-size: 14px;
  }

  .bonus-panel > div {
    padding: 9px 6px;
  }
}

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