:root {
  --brand-bg: #02050c;
  --brand-panel: #07121a;
  --brand-panel-2: #0b1923;
  --brand-ink: #f5fbff;
  --brand-muted: #95a7b3;
  --brand-soft: #d4e4ec;
  --brand-green: #00f084;
  --brand-green-deep: #00b965;
  --brand-cyan: #19d7ff;
  --brand-flame: #ff8a35;
  --brand-risk: #ffc24a;
  --line: rgba(245, 251, 255, 0.14);
  --line-strong: rgba(0, 240, 132, 0.42);
  --shadow-green: 0 0 34px rgba(0, 240, 132, 0.28);
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--brand-ink);
  font-family: "sans-serif", "Noto Sans JP", "Noto Sans KR", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 70% 8%, rgba(25, 215, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #02050c 0%, #050c13 45%, #02050c 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    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: 58px 58px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
  z-index: -2;
}

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

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

button,
input {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.page {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.page::after {
  content: "";
  position: absolute;
  top: 7rem;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  width: min(42rem, 90vw);
  height: min(42rem, 90vw);
  border: 1px solid rgba(25, 215, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.45);
  z-index: -1;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 5, 12, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.mark {
  position: relative;
  width: 42px;
  height: 36px;
  flex: 0 0 auto;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0 100%, 21% 100%, 50% 29%, 79% 100%, 100% 100%, 60% 0, 40% 0);
  clip-path: polygon(0 100%, 21% 100%, 50% 29%, 79% 100%, 100% 100%, 60% 0, 40% 0);
  background: var(--brand-ink);
}

.mark::after {
  transform: translateX(12px) scaleX(0.78);
  background: var(--brand-green);
  mix-blend-mode: screen;
}

.brand-name {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--brand-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--brand-soft);
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.84;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--brand-green);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.lang-switch button {
  min-width: 36px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--brand-soft);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button.active {
  color: #00130b;
  background: var(--brand-green);
}

.hero {
  position: relative;
  min-height: 680px;
  padding: clamp(3rem, 7vh, 5rem) 0 clamp(3rem, 6vh, 4.2rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(2.5rem, 5vw, 4.2rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-green);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--brand-green);
  box-shadow: var(--shadow-green);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-family: "Arial Black", Impact, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Apple SD Gothic Neo", "Noto Sans JP", "Noto Sans KR", "PingFang TC", "PingFang SC", sans-serif;
  font-size: clamp(3.5rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 .green {
  display: inline-block;
  color: var(--brand-green);
  text-shadow: 0 0 30px rgba(0, 240, 132, 0.28);
}

.lead {
  max-width: 620px;
  margin-top: 1.45rem;
  color: var(--brand-soft);
  font-size: 1.22rem;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.primary-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border-radius: 999px;
  padding: 0 1.55rem;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-btn {
  min-width: 224px;
  color: #00130b;
  background: linear-gradient(180deg, #28ffa1 0%, var(--brand-green) 54%, #00ce72 100%);
  box-shadow: var(--shadow-green), inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  font-size: 1.12rem;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.arrow {
  font-size: 1.55rem;
  line-height: 1;
}

.risk-mini {
  max-width: 540px;
  margin-top: 1rem;
  color: rgba(212, 228, 236, 0.72);
  font-size: 0.84rem;
  line-height: 1.7;
}

.reward-strip {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 18, 26, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.reward-item {
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.reward-item:last-child {
  border-right: 0;
}

.reward-kicker {
  color: var(--brand-muted);
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.reward-value {
  font-weight: 950;
  font-size: 1.2rem;
}

.reward-value strong {
  color: var(--brand-green);
}

.visual-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
}

.poster-shell {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(0, 240, 132, 0.34);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.54),
    0 0 60px rgba(0, 240, 132, 0.16);
  background:
    radial-gradient(circle at 68% 22%, rgba(25, 215, 255, 0.22), transparent 9rem),
    radial-gradient(circle at 40% 68%, rgba(0, 240, 132, 0.18), transparent 10rem),
    #000;
}

.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 240, 132, 0.08) 55%, rgba(2, 5, 12, 0.28) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 80%, rgba(25, 215, 255, 0.08));
  pointer-events: none;
}

.ai-poster {
  position: absolute;
  inset: 0;
  padding: 1.4rem;
  display: grid;
  align-content: start;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(2, 5, 12, 0.76)),
    linear-gradient(120deg, rgba(0, 240, 132, 0.06), transparent 45%);
}

.ai-poster-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 950;
  font-size: 1.02rem;
}

.ai-poster-brand::before {
  content: "AX";
  display: grid;
  place-items: center;
  width: 34px;
  height: 26px;
  color: #00130b;
  background: var(--brand-green);
  border-radius: 4px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.84rem;
}

.ai-poster-tag {
  width: fit-content;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(0, 240, 132, 0.38);
  border-radius: 999px;
  color: var(--brand-green);
  background: rgba(0, 240, 132, 0.07);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.ai-poster-title {
  font-family: "Arial Black", Impact, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Apple SD Gothic Neo", "Noto Sans JP", "Noto Sans KR", "PingFang TC", "PingFang SC", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.ai-poster-title span {
  display: block;
  color: var(--brand-green);
  text-shadow: 0 0 34px rgba(0, 240, 132, 0.28);
}

.ai-poster-copy {
  max-width: 260px;
  color: var(--brand-soft);
  line-height: 1.6;
  font-weight: 750;
}

.ai-core {
  position: absolute;
  right: 1.15rem;
  top: 8.3rem;
  width: 128px;
  aspect-ratio: 1;
  border: 1px solid rgba(25, 215, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 240, 132, 0.35) 48%, rgba(0, 240, 132, 0.35) 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(25, 215, 255, 0.28) 48%, rgba(25, 215, 255, 0.28) 52%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 6px, transparent 6px 15px),
    #06131c;
  box-shadow: 0 0 36px rgba(25, 215, 255, 0.12);
}

.ai-core::before,
.ai-core::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 132, 0.34);
}

.ai-core::before {
  width: 68%;
  height: 68%;
}

.ai-core::after {
  width: 34%;
  height: 34%;
  background: rgba(0, 240, 132, 0.18);
  box-shadow: 0 0 24px rgba(0, 240, 132, 0.34);
}

.ai-poster-chart {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 7.2rem;
  height: 88px;
  display: flex;
  align-items: end;
  gap: 6px;
  opacity: 0.98;
}

.ai-poster-chart i {
  position: relative;
  flex: 1;
  height: var(--h);
  max-width: 13px;
  background: var(--brand-green);
  box-shadow: 0 0 15px rgba(0, 240, 132, 0.34);
}

.ai-poster-chart i:nth-child(4n) {
  background: var(--brand-cyan);
  box-shadow: 0 0 15px rgba(25, 215, 255, 0.3);
}

.ai-poster-chart i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  bottom: -12px;
  width: 1px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.45;
}

.ai-topic-strip {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.ai-topic-strip span {
  min-height: 42px;
  display: grid;
  align-content: center;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--brand-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 850;
}

.float-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1rem;
  width: 210px;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(2, 11, 14, 0.86);
  box-shadow: var(--shadow-green);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.float-badge span {
  display: block;
  color: var(--brand-soft);
  font-weight: 800;
}

.float-badge strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--brand-green);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 3rem;
  line-height: 0.95;
}

.launch-ticker {
  position: absolute;
  right: -1rem;
  top: 2rem;
  width: 150px;
  padding: 0.8rem;
  border: 1px solid rgba(25, 215, 255, 0.38);
  border-radius: 8px;
  background: rgba(3, 10, 18, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.launch-ticker small {
  display: block;
  color: var(--brand-muted);
  margin-bottom: 0.55rem;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 54px;
}

.mini-chart i {
  width: 7px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, var(--brand-green), rgba(0, 240, 132, 0.2));
  height: var(--h);
}

.hero-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  pointer-events: none;
  opacity: 0.42;
  z-index: -1;
}

.chart-line {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 30px;
  height: 140px;
  border-bottom: 2px solid rgba(0, 240, 132, 0.24);
  transform: skewY(-10deg);
  box-shadow: 0 -34px 80px rgba(0, 240, 132, 0.18);
}

.candles {
  position: absolute;
  left: 5%;
  right: 8%;
  bottom: 44px;
  height: 135px;
  display: flex;
  align-items: end;
  gap: 1.2%;
}

.candles i {
  position: relative;
  flex: 1;
  max-width: 12px;
  height: var(--h);
  background: var(--brand-green);
  box-shadow: 0 0 14px rgba(0, 240, 132, 0.36);
}

.candles i:nth-child(4n) {
  background: var(--brand-flame);
  box-shadow: 0 0 14px rgba(255, 138, 53, 0.28);
}

.candles i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  width: 1px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.55;
}

section {
  padding: 5.3rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  max-width: 680px;
  font-family: "Arial Black", Impact, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Apple SD Gothic Neo", "Noto Sans JP", "Noto Sans KR", "PingFang TC", "PingFang SC", sans-serif;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p {
  max-width: 390px;
  color: var(--brand-muted);
  line-height: 1.75;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.signal-card {
  min-height: 260px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(7, 18, 26, 0.82);
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green), transparent);
  opacity: 0.9;
}

.signal-index {
  color: var(--brand-green);
  font-weight: 950;
  font-size: 0.86rem;
  margin-bottom: 2.5rem;
}

.signal-card h3 {
  font-size: 1.32rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.signal-card p {
  color: var(--brand-muted);
  line-height: 1.75;
}

.radar {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.radar-panel,
.steps-panel,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 18, 26, 0.78);
}

.radar-panel {
  padding: 1.4rem;
  min-height: 480px;
}

.tab-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}

.tab-button {
  min-height: 40px;
  padding: 0 1rem;
  color: var(--brand-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  cursor: pointer;
}

.tab-button.active {
  color: #00130b;
  border-color: var(--brand-green);
  background: var(--brand-green);
  font-weight: 900;
}

.market-list {
  display: grid;
  gap: 0.7rem;
}

.market-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 76px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.market-row strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.market-row span {
  color: var(--brand-muted);
  font-size: 0.88rem;
}

.market-value {
  color: var(--brand-green);
  font-weight: 950;
  font-size: 1.08rem;
  white-space: nowrap;
}

.radar-visual {
  position: relative;
  min-height: 480px;
  padding: 1.4rem;
  border: 1px solid rgba(0, 240, 132, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 240, 132, 0.08), transparent 42%),
    radial-gradient(circle at 80% 16%, rgba(25, 215, 255, 0.13), transparent 18rem),
    #031018;
  overflow: hidden;
}

.radar-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(25, 215, 255, 0.26);
  border-radius: 50%;
}

.heat-title {
  position: relative;
  z-index: 1;
  max-width: 360px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.35rem;
  line-height: 1.05;
}

.heat-title span {
  color: var(--brand-green);
}

.heat-score {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 1;
}

.score-number {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 6rem;
  line-height: 0.9;
  color: var(--brand-green);
  text-shadow: 0 0 36px rgba(0, 240, 132, 0.32);
}

.score-caption {
  margin-top: 0.65rem;
  color: var(--brand-soft);
  font-weight: 900;
}

.score-bars {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.score-bar {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.8rem;
  align-items: center;
  color: var(--brand-muted);
  font-size: 0.82rem;
}

.score-bar i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.score-bar i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan));
}

.steps {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: stretch;
}

.steps-panel {
  padding: 1.6rem;
}

.step-list {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step:last-child {
  border-bottom: 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brand-green);
  font-weight: 950;
  box-shadow: inset 0 0 22px rgba(0, 240, 132, 0.09);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--brand-muted);
  line-height: 1.75;
}

.offer-card {
  position: relative;
  min-height: 100%;
  padding: 1.6rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 240, 132, 0.13), rgba(0, 240, 132, 0.02)),
    #04120d;
  overflow: hidden;
}

.offer-card::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-green), transparent);
}

.offer-label {
  color: var(--brand-soft);
  font-weight: 900;
  margin-bottom: 1rem;
}

.offer-amount {
  color: var(--brand-green);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 6.2rem;
  line-height: 0.9;
}

.offer-copy {
  max-width: 330px;
  margin-top: 1rem;
  color: var(--brand-soft);
  line-height: 1.75;
}

.feature-line {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.feature-line span {
  min-height: 74px;
  display: grid;
  align-content: center;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--brand-soft);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.03);
}

.feature-line small {
  display: block;
  margin-top: 0.25rem;
  color: var(--brand-muted);
  font-weight: 600;
}

.final {
  padding-bottom: 3rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 240, 132, 0.13), transparent 42%),
    rgba(7, 18, 26, 0.82);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan), var(--brand-flame));
}

.final-cta h2 {
  max-width: 640px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 3.1rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.final-cta p {
  max-width: 620px;
  color: var(--brand-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.qr-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 47%, rgba(0, 240, 132, 0.52) 47%, rgba(0, 240, 132, 0.52) 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(0, 240, 132, 0.52) 47%, rgba(0, 240, 132, 0.52) 53%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 9px, transparent 9px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 9px, transparent 9px 18px);
  background-blend-mode: normal, normal, overlay, normal;
  overflow: hidden;
}

.qr-box::after {
  content: "AlphaX";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: #00130b;
  background: var(--brand-green);
  border-radius: 8px;
  font-weight: 950;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 3.6rem;
  }

  .hero-grid,
  .radar,
  .steps,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .visual-wrap {
    justify-self: center;
    width: min(100%, 380px);
  }

  .poster-shell {
    aspect-ratio: 9 / 16;
  }

  .ai-core {
    top: 9.2rem;
    width: 150px;
  }

  .ai-poster-chart {
    bottom: 8.8rem;
    height: 100px;
  }

  .float-badge {
    left: 1rem;
    bottom: 5.2rem;
  }

  .launch-ticker {
    right: 1rem;
  }

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

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 1rem;
  }

  .final-cta {
    min-height: auto;
  }

  .qr-box {
    width: min(100%, 280px);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-inner {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .lang-switch button {
    min-width: 32px;
    min-height: 28px;
    font-size: 0.72rem;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .mark {
    width: 36px;
    height: 31px;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 3.8rem;
  }

  h1 {
    font-size: 3.05rem;
  }

  .lead {
    font-size: 1.04rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-btn {
    width: 100%;
  }

  .reward-strip {
    grid-template-columns: 1fr;
  }

  .reward-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .reward-item:last-child {
    border-bottom: 0;
  }

  .visual-wrap {
    width: min(100%, 320px);
  }

  .float-badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.8rem;
  }

  .launch-ticker {
    display: none;
  }

  .hero-chart {
    opacity: 0.4;
  }

  section {
    padding: 3.8rem 0;
  }

  .section-head h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .radar-panel,
  .radar-visual,
  .steps-panel,
  .offer-card,
  .final-cta {
    padding: 1.1rem;
  }

  .score-number,
  .offer-amount {
    font-size: 4.4rem;
  }

  .feature-line {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: no-preference) {
  .poster-shell,
  .float-badge,
  .launch-ticker {
    animation: lift 5s ease-in-out infinite;
  }

  .float-badge {
    animation-delay: 0.6s;
  }

  .launch-ticker {
    animation-delay: 1s;
  }

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

}