:root {
  --bg: #030504;
  --bg-soft: #070a08;
  --panel: rgba(8, 13, 10, .88);
  --panel-2: rgba(12, 17, 13, .76);
  --gold: #e8aa35;
  --gold-bright: #ffd575;
  --gold-deep: #8d5b14;
  --green: #31d586;
  --red: #ff615e;
  --text: #f5f2e9;
  --muted: #a7aaa5;
  --border: rgba(232, 170, 53, .34);
  --border-soft: rgba(232, 170, 53, .17);
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
  --radius: 18px;
  --mx: 50vw;
  --my: 28vh;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-deep) var(--bg);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(600px circle at var(--mx) var(--my), rgba(232, 170, 53, .085), transparent 42%),
    radial-gradient(1000px circle at 15% 5%, rgba(49, 213, 134, .035), transparent 40%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(232, 170, 53, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 170, 53, .035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(232, 170, 53, .16);
  border-radius: 50%;
  left: calc(var(--mx) - 14rem);
  top: calc(var(--my) - 14rem);
  z-index: -2;
  pointer-events: none;
  opacity: .4;
  box-shadow: 0 0 80px rgba(232, 170, 53, .04), inset 0 0 80px rgba(232, 170, 53, .03);
  transition: left .18s ease-out, top .18s ease-out;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
svg { display: block; }

.shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--gold);
  color: #090704;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(3, 5, 4, .82);
  border-color: var(--border-soft);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: -.045em;
  font-size: 1.65rem;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: linear-gradient(145deg, rgba(232,170,53,.16), rgba(255,255,255,.01));
  box-shadow: inset 0 0 18px rgba(232, 170, 53, .1);
}

.brand-mark svg { width: 24px; }
.brand-trade { color: #f3f0e8; }
.brand-number {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(232, 170, 53, .32);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.nav-links a {
  position: relative;
  color: #c6c8c4;
  font-size: .9rem;
  padding: 29px 0 25px;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 18px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .22s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-only-link { display: none; }

.nav-signin {
  color: var(--gold-bright);
  font-weight: 750;
  font-size: .88rem;
  padding: 12px 14px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  padding: 0 20px;
  border: 1px solid var(--border);
  background: rgba(11, 14, 12, .76);
  cursor: pointer;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: -.01em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 117, .75);
  box-shadow: 0 12px 36px rgba(232, 170, 53, .12);
}

.btn-primary {
  color: #171006;
  background: linear-gradient(135deg, #ffe197, var(--gold) 56%, #a86b17);
  border-color: #f2bd55;
  box-shadow: 0 8px 32px rgba(232, 170, 53, .2), inset 0 1px rgba(255,255,255,.6);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff0bc, #efb749 56%, #b9781d);
  box-shadow: 0 16px 40px rgba(232, 170, 53, .25);
}

.btn svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-bright);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 38%;
  background:
    linear-gradient(90deg, var(--bg) 1%, transparent 34%),
    linear-gradient(0deg, var(--bg) 2%, transparent 26%),
    url("./hero-android.webp") 66% center / cover no-repeat;
  filter: saturate(.95);
  opacity: .92;
  z-index: -1;
  animation: heroBreath 7s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(232,170,53,.12);
  border-radius: 50%;
  right: -230px;
  bottom: -330px;
  box-shadow: 0 0 0 45px rgba(232,170,53,.018), 0 0 0 110px rgba(232,170,53,.012);
  animation: slowSpin 18s linear infinite;
}

@keyframes heroBreath {
  from { transform: scale(1.01); opacity: .84; }
  to { transform: scale(1.045); opacity: .98; }
}

@keyframes slowSpin { to { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 58%);
  padding: 88px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 21px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero h1 {
  font-size: clamp(2.85rem, 5.4vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 0;
  max-width: 750px;
}

.gold-text {
  color: var(--gold-bright);
  background: linear-gradient(115deg, #ffdf8d 0%, #d99a2f 48%, #fff0b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  color: #b7bab5;
  max-width: 535px;
  font-size: 1.08rem;
  margin: 24px 0 29px;
}

.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }

.hero-proof {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  color: #c9cac7;
  font-size: .82rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg { width: 18px; color: var(--gold); }

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

.section-tight { padding: 62px 0; }

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-heading .eyebrow { margin-bottom: 12px; }

.section-heading h2,
.auth-copy h1,
.thank-card h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p {
  color: var(--muted);
  margin: 16px auto 0;
  max-width: 640px;
}

.panel {
  border: 1px solid var(--border);
  background:
    linear-gradient(140deg, rgba(255,255,255,.028), transparent 42%),
    var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.025);
}

.market-panel { padding: 22px; }

.panel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-size: 1.08rem;
}

.panel-title-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--gold-bright);
  background: rgba(232,170,53,.06);
}

.microcopy { color: #727771; font-size: .75rem; }

.ticker-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
}

.ticker-tabs::-webkit-scrollbar { display: none; }

.ticker-tab {
  flex: 0 0 auto;
  border: 1px solid transparent;
  color: #959a94;
  background: transparent;
  border-radius: 7px;
  padding: 7px 11px;
  font-size: .71rem;
  font-weight: 800;
  cursor: pointer;
}

.ticker-tab.active {
  color: #181005;
  background: var(--gold);
  border-color: var(--gold-bright);
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(290px, .95fr);
  gap: 12px;
}

.big-chart,
.mini-market {
  border: 1px solid rgba(128, 145, 133, .25);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(6,15,10,.86), rgba(3,8,6,.84));
}

.big-chart { padding: 20px; min-height: 374px; }

.asset-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.asset-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7931a;
  color: white;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(247,147,26,.18);
}

.asset-name strong { display: block; font-size: .92rem; }
.asset-name small { color: #81857f; }
.asset-price { font-size: 1.48rem; font-weight: 800; letter-spacing: -.03em; }
.asset-change { color: var(--green); font-size: .78rem; font-weight: 750; }

.chart-range {
  display: flex;
  gap: 16px;
  margin: 20px 0 3px;
  color: #767b75;
  font-size: .72rem;
  font-weight: 800;
}

.chart-range .active { color: var(--gold-bright); }
.chart-svg { width: 100%; height: 210px; overflow: visible; }
.chart-grid-line { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.chart-line { fill: none; stroke: var(--green); stroke-width: 3; filter: drop-shadow(0 0 8px rgba(49,213,134,.28)); }
.chart-area { fill: url(#chartArea); }
.chart-volume { fill: rgba(232,170,53,.16); }

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.mini-market { padding: 14px; min-height: 135px; }
.mini-symbol { display: flex; align-items: center; gap: 7px; font-size: .68rem; color: #a6aaa5; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px currentColor; }
.mini-value { font-size: 1.02rem; font-weight: 800; margin-top: 9px; }
.mini-change { color: var(--green); font-size: .68rem; font-weight: 750; }
.sparkline { width: 100%; height: 38px; margin-top: 5px; }
.sparkline path { fill: none; stroke: var(--green); stroke-width: 2; }

.feature-grid,
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,5,4,.98) 0%, rgba(3,5,4,.77) 35%, transparent 72%);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .85;
  transition: transform .7s ease, filter .4s ease;
}

.feature-card:hover img { transform: scale(1.045); filter: saturate(1.15); }
.feature-copy { position: relative; z-index: 2; max-width: 50%; }
.feature-copy h3 { color: var(--gold-bright); font-size: 1.25rem; margin: 0 0 10px; }
.feature-copy p { color: #b8bbb6; font-size: .9rem; margin: 0; }

.vision-card {
  min-height: 245px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -45px;
  top: 10px;
  border: 1px solid rgba(232,170,53,.25);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(232,170,53,.055), 0 0 0 22px rgba(232,170,53,.018), 0 0 0 50px rgba(232,170,53,.012);
}

.vision-card::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 64px;
  top: 30px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px var(--gold), -60px 105px 0 1px var(--gold-deep), 46px 145px 0 rgba(255,213,117,.7);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse { 50% { opacity: .45; transform: scale(.75); } }

.vision-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  margin-bottom: 48px;
}

.vision-icon svg { width: 25px; }
.vision-card h3 { color: var(--gold-bright); margin: 0 0 8px; font-size: 1.12rem; }
.vision-card p { color: var(--muted); max-width: 56%; margin: 0; font-size: .9rem; }

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

.strategy-card { padding: 24px; overflow: hidden; }
.strategy-top { display: flex; align-items: center; gap: 10px; color: var(--gold-bright); }
.strategy-top svg { width: 22px; }
.strategy-card h3 { margin: 0; font-size: 1.05rem; }
.strategy-card p { color: var(--muted); font-size: .87rem; margin: 12px 0 18px; min-height: 55px; }
.strategy-chart { width: 100%; height: 82px; }
.strategy-chart path { fill: none; stroke: var(--green); stroke-width: 3; }
.strategy-chart .gold-line { stroke: var(--gold); }

.risk-note {
  margin: 14px 0 0;
  text-align: center;
  color: #a98547;
  font-size: .76rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  align-items: stretch;
  gap: 18px;
}

.terminal {
  min-height: 430px;
  padding: 18px;
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #8c918b;
  font-size: .72rem;
}

.terminal-dots { display: flex; gap: 6px; }
.terminal-dots i { width: 7px; height: 7px; border-radius: 50%; background: #5e4430; }
.terminal-dots i:nth-child(2) { background: #8a742d; }
.terminal-dots i:nth-child(3) { background: #276b4c; }
.candle-chart { position: relative; height: 330px; margin-top: 18px; }
.candle-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.candles {
  position: absolute;
  inset: 14px 14px 38px;
  display: flex;
  align-items: center;
  gap: clamp(5px, 1.2vw, 12px);
}

.candle {
  position: relative;
  flex: 1;
  max-width: 14px;
  height: var(--h);
  margin-top: var(--y);
  background: var(--c);
  border-radius: 1px;
  box-shadow: 0 0 9px color-mix(in srgb, var(--c) 45%, transparent);
}

.candle::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(var(--h) + 25px);
  background: var(--c);
  top: -12px;
  left: 50%;
  z-index: -1;
}

.approach-steps { display: grid; gap: 8px; }

.approach-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.approach-step:last-child { border: 0; }
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-weight: 850;
}

.approach-step h3 { margin: 2px 0 4px; color: var(--gold-bright); font-size: 1rem; }
.approach-step p { margin: 0; color: var(--muted); font-size: .84rem; }

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

.join-card {
  position: relative;
  padding: 24px 20px;
  text-align: center;
  min-height: 245px;
}

.join-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -24px;
  top: 47%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 900;
  z-index: 3;
}

.join-index {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold-bright);
  font-size: .75rem;
  margin: 0 auto 14px;
}

.join-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.join-icon svg { width: 52px; height: 52px; }
.join-card h3 { color: var(--gold-bright); margin: 0 0 8px; font-size: 1rem; }
.join-card p { color: var(--muted); margin: 0; font-size: .84rem; }

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

.info-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px;
}

.info-card > svg {
  width: 36px;
  color: var(--gold);
}

.info-card h3 { margin: 1px 0 5px; color: var(--gold-bright); font-size: .95rem; }
.info-card p { margin: 0; color: var(--muted); font-size: .8rem; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.faq-question > svg:first-child { color: var(--gold); width: 27px; }
.faq-question strong { color: var(--gold-bright); font-size: .92rem; }
.faq-chevron { color: #a8a49c; transition: transform .25s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { color: var(--muted); margin: 0; padding: 0 22px 19px 70px; font-size: .86rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--gold); }

.cta {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(ellipse at 80% 140%, rgba(232,170,53,.28), transparent 38%),
    linear-gradient(95deg, rgba(232,170,53,.04), transparent 62%);
}

.cta::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 210px;
  border: 2px solid rgba(255,193,68,.4);
  border-radius: 50%;
  right: -90px;
  bottom: -150px;
  transform: rotate(-5deg);
  box-shadow: 0 0 35px rgba(232,170,53,.3), 0 0 0 35px rgba(232,170,53,.04), 0 0 0 72px rgba(232,170,53,.025);
}

.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 { margin: 0 0 8px; font-size: clamp(1.75rem, 4vw, 2.8rem); letter-spacing: -.04em; }
.cta p { margin: 0; color: var(--muted); }

.site-footer { padding: 42px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
}
.footer-blurb { margin: 16px 0 0; max-width: 290px; color: var(--muted); font-size: .84rem; }
.footer-column h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-bright); margin: 5px 0 15px; }
.footer-column a { display: block; width: max-content; color: #aeb1ad; font-size: .84rem; margin: 9px 0; }
.footer-column a:hover { color: var(--gold-bright); }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.socials svg { width: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #70756f;
  font-size: .74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.cursor-aura {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,213,117,.45);
  border-radius: 50%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s, opacity .2s;
  mix-blend-mode: screen;
}

.cursor-aura.active { opacity: .72; }
.cursor-aura.hovering { width: 54px; height: 54px; border-color: rgba(255,213,117,.8); }

.touch-particle {
  position: fixed;
  z-index: 79;
  pointer-events: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 15px var(--gold);
  animation: particleOut .7s ease-out forwards;
}
@keyframes particleOut { to { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; } }

/* Auth and confirmation pages */
.inner-page { min-height: 100vh; display: flex; flex-direction: column; }
.inner-page main { flex: 1; }
.auth-section {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 74px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.auth-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -400px;
  top: -250px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  box-shadow: 0 0 0 80px rgba(232,170,53,.018), 0 0 0 170px rgba(232,170,53,.012);
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(4,8,6,.88);
  box-shadow: 0 40px 110px rgba(0,0,0,.55);
}

.auth-copy {
  position: relative;
  min-height: 630px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(3,5,4,.98) 1%, rgba(3,5,4,.18) 70%),
    linear-gradient(90deg, rgba(3,5,4,.5), transparent),
    url("./hero-android.webp") 68% center / cover;
}

.auth-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(232,170,53,.08), transparent 30%);
}
.auth-copy > * { position: relative; z-index: 1; }
.auth-copy p { color: #b7bab5; max-width: 460px; margin: 18px 0 0; }
.auth-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--border-soft);
  background: rgba(3,5,4,.65);
  border-radius: 999px;
  color: #d6d4cd;
  font-size: .75rem;
}
.auth-badge svg { width: 15px; color: var(--gold); }

.auth-form-wrap { padding: 48px clamp(26px, 5vw, 66px); display: flex; flex-direction: column; justify-content: center; }
.auth-form-head h2 { margin: 0; font-size: 2rem; letter-spacing: -.04em; }
.auth-form-head p { color: var(--muted); margin: 8px 0 30px; font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d5d6d2; font-size: .78rem; font-weight: 760; }
.input-wrap { position: relative; }
.input-wrap > svg {
  position: absolute;
  width: 18px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #736e63;
}
.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(232,170,53,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  padding: 0 15px 0 45px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus,
.field select:focus {
  border-color: rgba(255,213,117,.72);
  box-shadow: 0 0 0 4px rgba(232,170,53,.08);
  background: rgba(232,170,53,.025);
}
.field input::placeholder { color: #636760; }
.password-toggle {
  position: absolute;
  width: 42px;
  height: 42px;
  right: 4px;
  top: 4px;
  border: 0;
  background: transparent;
  color: #837d71;
  cursor: pointer;
}
.password-toggle svg { width: 18px; margin: auto; }
.form-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin: 2px 0 22px; font-size: .78rem; }
.check { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.check input { accent-color: var(--gold); width: 16px; height: 16px; }
.gold-link { color: var(--gold-bright); font-weight: 760; }
.submit-btn { width: 100%; }
.auth-switch { text-align: center; color: var(--muted); margin: 22px 0 0; font-size: .84rem; }
.terms-copy { color: #777c76; font-size: .72rem; margin: -3px 0 20px; }
.form-error { min-height: 19px; color: #ff8b88; font-size: .72rem; margin-top: -2px; }

.thank-section {
  min-height: calc(100vh - 82px);
  padding: 86px 0;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.thank-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(36px, 8vw, 76px);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 0%, rgba(232,170,53,.12), transparent 38%), rgba(5,9,7,.9);
  box-shadow: 0 42px 120px rgba(0,0,0,.62);
}

.success-orbit {
  position: relative;
  width: 122px;
  height: 122px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
}

.success-orbit::before,
.success-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232,170,53,.35);
  border-radius: 50%;
  animation: orbitPulse 2.2s ease-out infinite;
}
.success-orbit::after { animation-delay: 1.1s; }
@keyframes orbitPulse { to { transform: scale(1.8); opacity: 0; } }
.success-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #161005;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 40px rgba(232,170,53,.3);
}
.success-icon svg { width: 42px; }
.thank-card p { color: var(--muted); max-width: 550px; margin: 17px auto 27px; }
.thank-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.thank-details {
  margin: 34px auto 0;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: #a5aaa3;
  font-size: .8rem;
}

@media (max-width: 1020px) {
  .nav-wrap { gap: 16px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .82rem; }
  .hero { min-height: 650px; }
  .hero-content { width: 62%; }
  .hero::before { left: 31%; background-position: 58% center; opacity: .76; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .join-grid { grid-template-columns: 1fr 1fr; }
  .join-card:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .auth-layout { grid-template-columns: .8fr 1.2fr; }
  .auth-copy { padding: 38px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 720px); }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 72px; }
  .nav-links {
    position: fixed;
    inset: 72px 14px auto;
    z-index: 49;
    padding: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(3,5,4,.97);
    backdrop-filter: blur(18px);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 10px; border-radius: 8px; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(232,170,53,.06); }
  .nav-links .mobile-only-link {
    display: block;
    color: var(--gold-bright);
    border: 1px solid var(--border-soft);
    margin-top: 4px;
  }
  .nav-links .mobile-only-link:last-child {
    color: #161005;
    background: linear-gradient(135deg, #ffe197, var(--gold));
    border-color: var(--gold);
  }
  .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:last-child { transform: translateY(-6px) rotate(-45deg); }

  .hero {
    min-height: auto;
    align-items: flex-end;
    padding-top: 360px;
  }
  .hero::before {
    inset: 0;
    background:
      linear-gradient(0deg, var(--bg) 5%, transparent 55%),
      linear-gradient(90deg, rgba(3,5,4,.25), transparent 50%),
      url("./hero-android.webp") 61% top / auto 440px no-repeat;
    opacity: .9;
  }
  .hero-content { width: 100%; padding: 45px 0 64px; text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero h1 { font-size: clamp(2.55rem, 11vw, 4.1rem); }
  .hero-copy { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .section { padding: 72px 0; }
  .section-tight { padding: 48px 0; }
  .market-grid, .approach-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid, .vision-grid, .strategy-grid, .faq-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 340px; }
  .feature-card::after { background: linear-gradient(0deg, rgba(3,5,4,.96) 5%, rgba(3,5,4,.2) 80%); }
  .feature-copy { max-width: 82%; align-self: flex-end; }
  .vision-card p { max-width: 70%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-section { padding: 44px 0; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-copy { min-height: 350px; padding: 34px; background-position: 66% center; }
  .auth-copy h1 { font-size: 2.3rem; }
  .auth-form-wrap { padding: 38px 28px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  body::after {
    width: 18rem;
    height: 18rem;
    left: calc(var(--mx) - 9rem);
    top: calc(var(--my) - 9rem);
  }
  .brand { font-size: 1.42rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding-top: 305px; }
  .hero::before { background-size: auto 380px; background-position: 61% top; }
  .hero-content { padding-bottom: 54px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-copy { font-size: .98rem; }
  .hero-actions .btn { flex: 1 1 150px; }
  .hero-proof { gap: 12px; flex-wrap: wrap; font-size: .74rem; }
  .market-panel { padding: 14px; }
  .panel-topbar { align-items: flex-start; }
  .microcopy { display: none; }
  .big-chart { padding: 14px; min-height: 330px; }
  .asset-price { font-size: 1.2rem; }
  .chart-svg { height: 180px; }
  .mini-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 315px; padding: 22px; }
  .feature-card img { object-position: 58% center; }
  .vision-card { padding: 23px; }
  .vision-card p { max-width: 100%; padding-right: 60px; }
  .strategy-card p { min-height: auto; }
  .terminal { min-height: 370px; padding: 12px; }
  .candle-chart { height: 285px; }
  .candles { gap: 5px; }
  .join-grid, .info-grid { grid-template-columns: 1fr; }
  .join-card { min-height: 220px; }
  .faq-question { grid-template-columns: 30px 1fr 18px; padding: 17px 15px; }
  .faq-answer p { padding-left: 57px; }
  .cta-inner { min-height: 260px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .cta::before { width: 450px; right: -280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .auth-copy { min-height: 300px; padding: 26px; }
  .auth-copy p { font-size: .9rem; }
  .auth-badges { display: none; }
  .auth-form-wrap { padding: 34px 20px; }
  .auth-form-head h2 { font-size: 1.7rem; }
  .form-row { align-items: flex-start; }
  .thank-card { border-radius: 20px; padding: 44px 21px; }
  .thank-actions .btn { flex: 1 1 180px; }
}

@media (hover: none) and (pointer: coarse) {
  .cursor-aura { display: none; }
  .btn:hover { transform: none; }
  .feature-card:hover img { transform: none; }
}

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