:root {
  --navy: #030817;
  --navy-2: #071328;
  --navy-3: #0b1c38;
  --gold: #ffc82e;
  --gold-light: #fff1a5;
  --gold-dark: #c77b00;
  --white: #f8fbff;
  --muted: #a9b4c8;
  --border: rgba(255, 193, 39, 0.27);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 10%, rgba(30, 67, 126, 0.18), transparent 28rem),
    var(--navy);
  font-family: var(--sans);
  line-height: 1.8;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 212, 93, 0.28) 0.7px, transparent 0.7px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(960px, calc(100% - 48px));
}

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(3, 8, 23, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  height: 74px;
  margin-inline: auto;
}

.logo {
  display: block;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(56, 151, 255, 0.18));
}

.desktop-nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 0.25s;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 32px;
  border: 1px solid #fff0a1;
  border-radius: 100px;
  color: #130d00;
  background: linear-gradient(135deg, #fff29d 0%, #ffca2f 38%, #f39a0a 100%);
  box-shadow:
    0 10px 30px rgba(236, 159, 9, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.25s, box-shadow 0.25s;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 40px rgba(236, 159, 9, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button-small {
  min-height: 42px;
  padding: 0 24px;
  font-size: 13px;
}

.button-main {
  min-width: 330px;
  font-size: 17px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 74px 0 0;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 20, 0.7), rgba(2, 7, 20, 0.36) 48%, rgba(2, 7, 20, 0.52)),
    url("assets/hero-coins.webp") center / cover no-repeat,
    #020714;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: -12%;
  width: 58%;
  height: 55%;
  content: "";
  background: radial-gradient(circle, rgba(255, 178, 19, 0.15), transparent 66%);
  opacity: 1;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -250px;
  left: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(40, 79, 173, 0.13);
  filter: blur(80px);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  width: min(1160px, calc(100% - 80px));
  min-height: 640px;
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 275px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-kicker {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.world-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.38;
}

.headline-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero h1 span,
.section-heading h2 span,
.world-copy h2 span {
  color: var(--gold);
  text-shadow: 0 0 25px rgba(255, 195, 38, 0.25);
}

.hero-lead {
  max-width: 500px;
  margin: 18px 0 15px;
  color: #d2d9e4;
  font-size: 13px;
  font-weight: 500;
}

.hero-points {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-points span {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: #f4d77b;
  font-size: 11px;
}

.microcopy {
  margin: 8px 0 0 22px;
  color: #8290a8;
  font-size: 10px;
}

.hero-medals {
  position: absolute;
  z-index: -1;
  top: 46%;
  left: -18px;
  width: 240px;
  height: 490px;
  transform: translateY(-50%);
}

.hero-medal {
  position: absolute;
  width: 170px;
  height: auto;
  filter:
    drop-shadow(0 16px 22px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 14px rgba(255, 180, 22, 0.3));
}

.hero-medal-daemon {
  z-index: 1;
  top: 0;
  left: 5px;
  transform: rotate(-3deg);
}

.hero-medal-drapon {
  z-index: 2;
  top: 145px;
  left: 32px;
  transform: rotate(4deg);
}

.hero-medal-pixie {
  z-index: 3;
  top: 290px;
  left: 0;
  width: 180px;
  transform: rotate(-4deg);
}

.hero-phone-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.hero-phone {
  position: relative;
  width: 330px;
  height: 615px;
  padding: 13px;
  border: 3px solid #917d62;
  border-radius: 48px;
  background: #03050b;
  box-shadow:
    0 32px 65px rgba(0, 0, 0, 0.68),
    inset 0 0 0 2px #1d2431,
    0 0 34px rgba(255, 181, 25, 0.12);
  transform: rotate(7deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 88px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: #02040a;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 36px;
  background: #050b19;
  overflow: hidden;
}

.phone-key-visual,
.phone-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phone-key-visual {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.78);
}

.phone-visual-shade {
  background:
    linear-gradient(180deg, rgba(2, 7, 20, 0.72) 0%, transparent 25%, transparent 57%, rgba(2, 7, 20, 0.92) 86%),
    radial-gradient(circle at 50% 42%, transparent 25%, rgba(2, 7, 20, 0.34) 100%);
}

.phone-brand-copy {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: 18px;
  left: 18px;
  display: grid;
  text-align: center;
  place-items: center;
}

.phone-brand-copy img {
  width: 86px;
  height: 86px;
  margin-bottom: 8px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.75));
}

.phone-brand-copy p {
  margin: 0;
  color: #e9edf5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.phone-brand-copy p span {
  margin-left: 5px;
  color: var(--gold);
  font-size: 23px;
}

.phone-brand-copy strong {
  color: #fff0a8;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.3;
  text-shadow:
    0 3px 12px #000,
    0 0 22px rgba(255, 191, 30, 0.44);
}

.phone-brand-copy small {
  margin-top: 6px;
  color: #d2d9e5;
  font-size: 10px;
  text-shadow: 0 2px 8px #000;
}

.phone-image-note {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 17px;
  left: 13px;
  margin: 0;
  color: rgba(224, 230, 239, 0.72);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 1px 5px #000;
}

.scroll-hint {
  position: absolute;
  bottom: 23px;
  left: 50%;
  color: #66738a;
  font-size: 9px;
  letter-spacing: 0.35em;
  writing-mode: vertical-rl;
}

.scroll-hint::after {
  display: block;
  width: 1px;
  height: 45px;
  margin: 10px auto 0;
  content: "";
  background: linear-gradient(var(--gold), transparent);
}

.pain {
  border-top: 1px solid rgba(255, 199, 55, 0.13);
  background: linear-gradient(180deg, #061125, #030817);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 41px);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pain-card,
.feature-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(20, 42, 76, 0.65), rgba(4, 10, 24, 0.85)),
    var(--navy-2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.pain-card {
  min-height: 210px;
  padding: 20px 16px 24px;
  border-radius: 12px;
  text-align: center;
}

.pain-card p {
  margin: 13px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.line-icon {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border: 3px double rgba(236, 186, 54, 0.82);
  border-radius: 50%;
  background: #07142b;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(255, 194, 39, 0.12);
  overflow: hidden;
}

.line-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pain-card:hover .line-icon img {
  transform: scale(1.07);
}

.bridge-copy {
  margin: 48px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
}

.bridge-copy strong {
  color: var(--gold);
}

.mobile-only {
  display: none;
}

.features {
  background:
    radial-gradient(circle at center, rgba(27, 59, 116, 0.25), transparent 40%),
    #030817;
}

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

.feature-card {
  position: relative;
  min-height: 520px;
  padding: 0 30px 30px;
  border-radius: 18px;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  right: -20%;
  bottom: -25%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 190, 25, 0.12), transparent 68%);
}

.number {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 22px;
  color: rgba(255, 205, 74, 0.8);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 900;
}

.feature-visual {
  position: relative;
  height: 285px;
  margin: 0 -30px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(28, 90, 145, 0.5), transparent 58%),
    #07152c;
}

.feature-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, #0b1930 100%);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-visual img {
  transform: scale(1.04);
}

.feature-card h3 {
  margin: 0 0 15px;
  color: #ffda69;
  font-family: var(--serif);
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.flow {
  background:
    radial-gradient(circle at 50% 45%, rgba(39, 82, 154, 0.3), transparent 40%),
    linear-gradient(180deg, #07142b, #040a18);
  overflow: hidden;
}

.flow-stage {
  position: relative;
  margin: 0 -70px 38px;
  padding: 42px 70px;
}

.flow-stage::before {
  position: absolute;
  inset: 15% 3% 8%;
  border: 1px solid rgba(255, 200, 49, 0.28);
  border-radius: 22px;
  content: "";
  background: linear-gradient(180deg, rgba(15, 36, 70, 0.88), rgba(2, 8, 20, 0.96));
  box-shadow:
    inset 0 0 40px rgba(25, 81, 154, 0.28),
    0 24px 70px rgba(0, 0, 0, 0.35);
}

.flow-guardian {
  position: absolute;
  z-index: 2;
  width: 230px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.flow-guardian-left {
  bottom: -10px;
  left: -90px;
  transform: rotate(-7deg);
}

.flow-guardian-right {
  right: -80px;
  bottom: -8px;
  transform: rotate(7deg);
}

.flow-panel {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 34px 34px;
  border: 1px solid rgba(255, 211, 84, 0.48);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 27, 55, 0.9), rgba(2, 8, 20, 0.94));
  box-shadow:
    inset 0 0 0 4px rgba(255, 190, 36, 0.035),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.flow-panel::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 190px;
  padding: 2px 0;
  border: 1px solid rgba(255, 210, 79, 0.45);
  border-radius: 20px;
  color: #e9c454;
  content: "4 SIMPLE STEPS";
  background: #07142b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: center;
  transform: translateX(-50%);
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  text-align: center;
  place-items: center;
}

.step-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 7px;
  border: 3px double rgba(229, 179, 46, 0.78);
  border-radius: 50%;
  background: #07142b;
  box-shadow:
    0 9px 18px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(255, 197, 45, 0.13);
  place-items: center;
  overflow: hidden;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.flow-step:hover .step-icon img {
  transform: scale(1.08);
}

.flow-step small {
  color: #718096;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.flow-step strong {
  font-size: 13px;
}

.flow-arrow {
  color: #d8a62b;
  font-size: 10px;
}

.center {
  text-align: center;
}

.simulation {
  position: relative;
  background:
    radial-gradient(circle at 50% 40%, rgba(30, 72, 139, 0.28), transparent 38%),
    #030817;
  overflow: hidden;
}

.simulation::before,
.simulation::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 183, 27, 0.1), transparent 67%);
}

.simulation::before {
  top: 15%;
  left: -100px;
}

.simulation::after {
  right: -100px;
  bottom: 8%;
}

.simulation-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 40px 34px 34px;
  border: 1px solid rgba(255, 206, 68, 0.4);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(18, 41, 76, 0.82), rgba(3, 9, 22, 0.96));
  box-shadow:
    inset 0 0 50px rgba(38, 89, 166, 0.2),
    0 24px 70px rgba(0, 0, 0, 0.32);
}

.simulation-stage::before {
  position: relative;
}

.deal-medal {
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
}

.deal-symbol {
  display: grid;
  width: 205px;
  height: 205px;
  margin: 0 auto -15px;
  border: 7px double #d6a52e;
  border-radius: 50%;
  background: #120921;
  box-shadow:
    0 0 0 5px #5a3508,
    0 18px 30px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(255, 180, 28, 0.18);
  place-items: center;
  overflow: hidden;
}

.deal-symbol-sell {
  background: #241207;
}

.deal-symbol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-medal:hover .deal-symbol img {
  transform: scale(1.05);
}

.deal-price {
  position: relative;
  z-index: 2;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 207, 64, 0.4);
  border-radius: 12px;
  background: rgba(2, 8, 20, 0.94);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.deal-price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.deal-price strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.35;
}

.deal-price strong em {
  margin-left: 4px;
  font-size: 13px;
  font-style: normal;
}

.deal-medal-sell .deal-price {
  border-color: rgba(255, 213, 83, 0.7);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(255, 183, 28, 0.13);
}

.deal-medal-sell .deal-price strong {
  color: var(--gold);
}

.deal-route {
  display: grid;
  gap: 6px;
  text-align: center;
  place-items: center;
}

.deal-days {
  padding: 5px 13px;
  border: 1px solid rgba(255, 207, 60, 0.4);
  border-radius: 20px;
  color: var(--gold);
  font-size: 11px;
}

.deal-arrow {
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 187, 28, 0.4);
}

.deal-route strong {
  color: #dce5f2;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
}

.deal-route b {
  color: var(--gold);
  font-size: 32px;
}

.profit-callout {
  display: grid;
  margin: 20px 0;
  padding: 23px;
  border: 1px solid rgba(255, 202, 47, 0.38);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(168, 93, 0, 0.18), rgba(255, 197, 41, 0.08));
  text-align: center;
}

.profit-callout > span {
  color: #ceb968;
  font-size: 11px;
}

.profit-callout strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
}

.profit-callout p,
.bank-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.bank-note {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(8, 20, 43, 0.7);
}

.bank-icon {
  display: grid;
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 25px;
  place-items: center;
}

.risk-note,
.roadmap-note {
  margin: 22px auto 0;
  color: #7f8ba0;
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

.proof {
  background: linear-gradient(180deg, #07142b, #030817);
}

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

.proof-visual {
  position: relative;
  margin: -8px 0 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #071328;
  overflow: hidden;
}

.proof-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.proof-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px 24px 17px;
  color: #e8edf5;
  background: linear-gradient(transparent, rgba(3, 8, 23, 0.94));
  font-size: 12px;
  text-align: center;
}

.proof-card {
  position: relative;
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 290px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(17, 39, 73, 0.83), rgba(3, 9, 22, 0.95));
  overflow: hidden;
}

.proof-portrait {
  min-height: 290px;
  background-image: url("assets/user-stories.webp");
  background-repeat: no-repeat;
  background-size: 300% auto;
}

.proof-portrait-woman {
  background-position: 1% center;
}

.proof-portrait-man {
  background-position: 50% center;
}

.proof-portrait-young {
  background-position: 99% center;
}

.proof-card-copy {
  display: grid;
  padding: 25px 20px;
  align-content: center;
  text-align: left;
}

.proof-card .person {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 14px;
  color: #cbd4e3;
  font-size: 11px;
  font-weight: 700;
}

.proof-card .person strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
}

.proof-card .person span {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 205, 70, 0.4);
}

.proof-stats {
  display: grid;
  gap: 7px;
  margin: 0 0 15px;
}

.proof-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-stats dt {
  color: #8190a8;
  font-size: 9px;
}

.proof-stats dd {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.proof-card blockquote {
  position: relative;
  margin: 0;
  padding: 12px 4px 0 20px;
  color: #b9c4d6;
  font-size: 10px;
  line-height: 1.75;
}

.proof-card blockquote::before {
  position: absolute;
  top: -7px;
  left: 0;
  color: rgba(255, 206, 74, 0.65);
  content: "“";
  font-family: var(--serif);
  font-size: 34px;
}

.world {
  position: relative;
  overflow: hidden;
  background: #030817;
  isolation: isolate;
}

.world-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/vision-gate.webp") center / cover no-repeat;
}

.world::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 7, 19, 0.98) 0%, rgba(2, 7, 19, 0.82) 42%, rgba(2, 7, 19, 0.1) 75%),
    linear-gradient(0deg, #030817 0%, transparent 25%, transparent 75%, #030817 100%);
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
}

.world-copy h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.world-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: #bdc7d8;
}

.world-copy ul {
  padding: 0;
  list-style: none;
}

.world-copy li {
  margin: 7px 0;
}

.world-copy li::before {
  margin-right: 11px;
  color: var(--gold);
  content: "✓";
}

.world-image-space {
  min-height: 500px;
}

.planet {
  position: relative;
  display: grid;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 223, 102, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.4), transparent 8%),
    radial-gradient(circle at 35% 35%, #28a9d4, #1954a1 35%, #07152e 72%);
  box-shadow:
    0 0 70px rgba(42, 130, 255, 0.4),
    inset -40px -25px 80px rgba(0, 0, 0, 0.55);
  place-items: center;
}

.planet-core {
  color: rgba(255, 255, 255, 0.82);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 212, 64, 0.34);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 150px;
  transform: rotate(-20deg);
}

.orbit-two {
  width: 390px;
  height: 390px;
  transform: rotate(35deg) scaleY(0.4);
}

.satellite {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  border: 3px double var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: #151025;
  box-shadow: 0 0 25px rgba(255, 186, 41, 0.35);
  place-items: center;
}

.sat-one {
  top: 25px;
  left: -50px;
}

.sat-two {
  top: 35%;
  right: -85px;
}

.sat-three {
  bottom: -45px;
  left: 60px;
}

.roadmap {
  background:
    radial-gradient(circle at 50% 100%, rgba(38, 80, 148, 0.22), transparent 42%),
    #040a18;
}

.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.roadmap-grid::before {
  position: absolute;
  z-index: 0;
  top: 112px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.roadmap-item {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 134px 22px 23px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: linear-gradient(160deg, rgba(18, 42, 78, 0.8), rgba(3, 9, 21, 0.95));
  text-align: center;
}

.roadmap-icon {
  position: absolute;
  z-index: 2;
  top: -22px;
  left: 50%;
  display: grid;
  width: 130px;
  height: 130px;
  border: 5px double #d9a72e;
  border-radius: 50%;
  background: #071329;
  box-shadow:
    0 14px 22px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(255, 186, 30, 0.17);
  place-items: center;
  transform: translateX(-50%);
  overflow: hidden;
}

.roadmap-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.roadmap-item:hover .roadmap-icon img {
  transform: scale(1.07);
}

.roadmap-item span {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 13px;
  display: block;
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 31px;
}

.roadmap-item strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
}

.roadmap-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.faq {
  position: relative;
  background: #030817;
  overflow: hidden;
}

.faq-character {
  position: absolute;
  right: -65px;
  bottom: -80px;
  width: 340px;
  opacity: 0.24;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #081329;
}

.accordion summary {
  padding: 21px 26px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary::after {
  float: right;
  color: var(--gold);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion summary span {
  margin-right: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
}

.accordion details p {
  margin: 0;
  padding: 0 26px 24px 57px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  min-height: 600px;
  padding: 110px 24px 90px;
  text-align: center;
  overflow: hidden;
}

.final-cta-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 23, 0.94), rgba(3, 8, 23, 0.36), rgba(3, 8, 23, 0.94)),
    linear-gradient(0deg, #030817, transparent 50%, #030817),
    url("assets/gmw-hero.webp") center 60% / cover;
  filter: saturate(0.75);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin-inline: auto;
}

.final-monster {
  position: absolute;
  z-index: 1;
  bottom: -70px;
  width: 320px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.final-monster-left {
  left: -50px;
  transform: rotate(7deg);
}

.final-monster-right {
  right: -50px;
  transform: rotate(-7deg);
}

.final-cta h2 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: clamp(34px, 5vw, 54px);
  text-shadow: 0 4px 25px #000;
}

.final-cta-inner > p:not(.eyebrow) {
  margin-bottom: 32px;
  text-shadow: 0 2px 12px #000;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
  color: #dce3ed;
  font-size: 11px;
}

.trust-row span::before {
  margin-right: 7px;
  color: var(--gold);
  content: "✓";
}

footer {
  display: grid;
  gap: 18px;
  padding: 45px 24px 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #66748a;
  background: #02050c;
  font-size: 11px;
  text-align: center;
  place-items: center;
}

.footer-logo {
  width: 112px;
  height: 112px;
}

.sticky-cta {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 218, 104, 0.38);
  background: rgba(3, 8, 23, 0.94);
  backdrop-filter: blur(14px);
}

.sticky-cta div {
  display: grid;
}

.sticky-cta small {
  color: var(--gold);
  font-size: 9px;
}

.sticky-cta strong {
  font-size: 12px;
}

.sticky-cta .button {
  min-height: 45px;
  padding: 0 20px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-inner > .button-small {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
    place-content: center;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 3px;
    background: var(--gold);
  }

  .mobile-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    padding: 15px 24px 22px;
    border-bottom: 1px solid var(--border);
    background: rgba(3, 8, 23, 0.98);
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    padding: 12px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(700px, calc(100% - 48px));
  }

  .hero-copy {
    padding: 0 0 25px;
    text-align: center;
  }

  .hero-points {
    justify-content: center;
  }

  .microcopy {
    margin-left: 0;
  }

  .hero-medals {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 480px;
    height: 290px;
    margin: 12px auto 0;
    transform: none;
  }

  .hero-medal {
    width: 225px;
  }

  .hero-medal-daemon {
    top: 0;
    left: 8%;
  }

  .hero-medal-drapon {
    top: 10px;
    left: 37%;
  }

  .hero-medal-pixie {
    top: 78px;
    left: 25%;
    width: 210px;
  }

  .hero-phone-wrap {
    display: none;
  }

  .pain-grid,
  .feature-grid,
  .proof-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid article:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    margin-inline: auto;
  }

  .proof-grid article:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    margin-inline: auto;
  }

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

  .world-copy {
    text-align: center;
  }

  .world-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .world-copy ul {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .container,
  .narrow {
    width: min(100% - 32px, 560px);
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    width: calc(100% - 32px);
    height: 64px;
  }

  .logo {
    width: 64px;
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
  }

  .hero {
    padding-top: 102px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-copy {
    padding: 0 20px;
  }

  .hero-kicker {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.4;
  }

  .headline-nowrap {
    display: inline;
    white-space: normal;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-lead br {
    display: none;
  }

  .hero-points {
    gap: 5px;
  }

  .hero-points span {
    padding: 4px 8px;
    font-size: 9px;
  }

  .button-main {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }

  .hero-medals {
    width: 300px;
    height: 195px;
    margin-top: 4px;
  }

  .hero-medal {
    width: 130px;
  }

  .hero-medal-daemon {
    top: 0;
    left: 9%;
  }

  .hero-medal-drapon {
    top: 5px;
    left: 51%;
  }

  .hero-medal-pixie {
    top: 66px;
    left: 31%;
    width: 125px;
  }

  .scroll-hint {
    display: none;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .pain-card {
    min-height: 176px;
    padding: 14px 8px 18px;
  }

  .pain-card p {
    font-size: 11px;
  }

  .line-icon {
    width: 92px;
    height: 92px;
  }

  .mobile-only {
    display: block;
  }

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

  .feature-grid article:last-child {
    grid-column: auto;
    width: 100%;
  }

  .feature-card {
    display: block;
    min-height: 0;
    padding: 0 20px 24px;
  }

  .number {
    top: 12px;
    left: 14px;
    font-size: 23px;
  }

  .feature-visual {
    height: 255px;
    margin: 0 -20px 19px;
  }

  .section-heading h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .feature-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
  }

  .feature-card p {
    font-size: 11px;
    line-height: 1.7;
  }

  .flow-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    padding: 25px 16px;
  }

  .flow-arrow {
    display: none;
  }

  .flow-stage {
    margin: 0 -35px 30px;
    padding: 45px 38px 38px;
  }

  .flow .section-heading h2 {
    font-size: 27px;
  }

  .simulation .section-heading h2 {
    font-size: 27px;
  }

  .flow-stage::before {
    inset: 10% 1% 4%;
  }

  .flow-guardian {
    width: 155px;
    opacity: 0.42;
  }

  .flow-guardian-left {
    bottom: -18px;
    left: -50px;
  }

  .flow-guardian-right {
    right: -46px;
    bottom: -15px;
  }

  .flow-panel {
    padding-top: 38px;
  }

  .simulation-stage {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 18px 26px;
  }

  .deal-symbol {
    width: 180px;
    height: 180px;
    margin-bottom: -22px;
  }

  .deal-price {
    min-width: min(250px, 100%);
    padding: 13px 15px;
  }

  .deal-route {
    min-height: 125px;
  }

  .deal-arrow {
    font-size: 38px;
    transform: rotate(90deg);
  }

  .bank-note {
    padding: 18px;
    align-items: flex-start;
  }

  .proof-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article:last-child {
    grid-column: auto;
    width: 100%;
  }

  .proof-card {
    grid-template-columns: 40% 60%;
    min-height: 270px;
  }

  .proof-portrait {
    min-height: 270px;
  }

  .proof-card-copy {
    padding: 19px 14px;
  }

  .proof-card .person {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin-bottom: 10px;
    white-space: nowrap;
  }

  .proof-card .person span {
    padding-left: 7px;
    border-left: 1px solid rgba(255, 205, 70, 0.4);
  }

  .proof-stats dd {
    font-size: 14px;
  }

  .proof-card blockquote {
    padding-right: 0;
    font-size: 9px;
  }

  .proof-visual {
    margin-bottom: 20px;
  }

  .proof-visual img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .proof-visual figcaption {
    padding-inline: 14px;
    font-size: 10px;
  }

  .roadmap-item {
    display: grid;
    grid-template-columns: 116px 1fr;
    min-height: 150px;
    padding: 30px 15px 20px 125px;
    text-align: left;
    align-items: center;
  }

  .roadmap-grid::before {
    top: 0;
    bottom: 0;
    left: 58px;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, var(--gold), transparent);
  }

  .roadmap-icon {
    top: 50%;
    left: 55px;
    width: 105px;
    height: 105px;
    transform: translate(-50%, -50%);
  }

  .roadmap-item span {
    top: 8px;
    left: 105px;
    grid-row: auto;
  }

  .roadmap-item p {
    margin: 4px 0 0;
  }

  .world {
    padding-bottom: 300px;
  }

  .world-background {
    background-position: 67% center;
  }

  .world::after {
    background:
      linear-gradient(180deg, rgba(2, 7, 19, 0.98) 0%, rgba(2, 7, 19, 0.82) 48%, rgba(2, 7, 19, 0.08) 75%),
      linear-gradient(0deg, #030817 0%, transparent 22%);
  }

  .world-image-space {
    display: none;
  }

  .faq-character {
    right: -100px;
    bottom: -25px;
    width: 250px;
    opacity: 0.13;
  }

  .final-cta {
    min-height: 560px;
    padding: 90px 20px;
  }

  .final-cta-art {
    background-position: 68% center;
  }

  .final-monster {
    bottom: -15px;
    width: 190px;
    opacity: 0.75;
  }

  .final-monster-left {
    left: -65px;
  }

  .final-monster-right {
    right: -70px;
  }

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

  .sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
