:root {
  --background: #050606;
  --foreground: #fff8c8;
  --yellow: #ffe500;
  --yellow-deep: #ffb800;
  --acid: #dfff3f;
  --panel: rgba(11, 13, 12, 0.68);
  --muted: rgba(255, 248, 200, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 229, 0, 0.25), transparent 32rem),
    linear-gradient(135deg, #020303 0%, #080a08 48%, #1b1800 100%);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 229, 0, 0.07) 34.2% 34.5%, transparent 34.7%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 229, 0, 0.1) 62.2% 62.5%, transparent 62.7%);
  opacity: 0.86;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  isolation: isolate;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 229, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 229, 0, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 80%, transparent);
}

.site-shell::after {
  position: fixed;
  inset: auto -12% -30% -12%;
  z-index: -1;
  height: 50vh;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 229, 0, 0.36), transparent);
  filter: blur(46px);
}

.hero {
  width: min(1440px, calc(100% - 40px));
  min-height: 920px;
  margin: 0 auto;
  padding: 24px 0 54px;
}

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

.brand,
.nav-links,
.glass-panel,
.entry-button,
.ticker-card {
  border: 1px solid rgba(255, 229, 0, 0.23);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 16px 8px 8px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 950;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: 720px;
  padding: 6px;
  border-radius: 8px;
}

.nav-links a {
  min-height: 40px;
  padding: 11px 14px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a:hover,
.entry-button:hover {
  background: rgba(255, 229, 0, 0.16);
  color: #ffffff;
}

.chart-link {
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.chart-link:hover {
  border-color: rgba(255, 229, 0, 0.58);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.42), 0 0 32px rgba(255, 229, 0, 0.18);
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  min-height: 760px;
  padding: clamp(48px, 8vw, 104px) 0 40px;
}

.copy-zone {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow,
.panel-kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
.gain,
.ticker-card strong {
  letter-spacing: 0;
}

h1 {
  margin: 10px 0 18px;
  color: #ffffff;
  font-size: clamp(54px, 5.4vw, 78px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255, 229, 0, 0.28);
}

.lede {
  max-width: 590px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.42;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 600px;
  margin: 0 0 16px;
}

.stat-card {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 229, 0, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.stat-card span {
  display: block;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 229, 0, 0.24);
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 600px;
}

.entry-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 13px 16px;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
}

.entry-button span {
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.entry-button small {
  min-width: 0;
  overflow: hidden;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ca-button {
  grid-column: 1 / -1;
}

.ca-button small {
  max-width: none;
  overflow: visible;
  text-align: right;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}

.visual-zone {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 14px;
  min-height: 560px;
}

.hero-terminal {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 229, 0, 0.34);
  border-radius: 8px;
  min-height: 320px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 229, 0, 0.32), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.58), 0 0 80px rgba(255, 229, 0, 0.22);
  backdrop-filter: blur(22px);
}

.hero-terminal::before {
  position: absolute;
  inset: 26px 26px auto auto;
  width: min(46%, 360px);
  height: 54%;
  content: "";
  border-top: 5px solid var(--yellow);
  border-right: 5px solid var(--yellow);
  clip-path: polygon(0 74%, 18% 55%, 32% 62%, 48% 33%, 64% 47%, 82% 12%, 100% 0, 100% 9%, 82% 21%, 64% 55%, 48% 42%, 32% 72%, 18% 65%, 0 86%);
  filter: drop-shadow(0 0 18px rgba(255, 229, 0, 0.9));
  pointer-events: none;
}

.terminal-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.token-orb {
  display: grid;
  width: clamp(104px, 12vw, 156px);
  height: clamp(104px, 12vw, 156px);
  place-items: center;
  border: 1px solid rgba(255, 229, 0, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(145deg, #ffe500, #090a08 48%, #ffcc00);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48), 0 0 48px rgba(255, 229, 0, 0.42);
  transform: perspective(900px) rotateY(-12deg) rotateX(8deg);
}

.token-orb img {
  width: 82%;
  height: 82%;
  border-radius: 50%;
  object-fit: cover;
}

.terminal-top strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(24px, 3.5vw, 48px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.98;
}

.terminal-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 229, 0, 0.18);
}

.terminal-price span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 950;
}

.terminal-price strong {
  color: var(--acid);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 1000;
  text-shadow: 0 0 26px rgba(223, 255, 63, 0.42);
}

.mini-orderbook {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mini-orderbook div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 229, 0, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.mini-orderbook span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-orderbook strong {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 1000;
}

.chart-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  width: 100%;
  min-height: 210px;
  padding: 20px;
  border-radius: 8px;
  background: var(--panel);
}

.candle-panel {
  position: relative;
  width: 100%;
  height: 188px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 229, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 229, 0, 0.06) 1px, transparent 1px),
    rgba(5, 6, 6, 0.7);
  background-size: 48px 48px;
}

.trend-line {
  position: absolute;
  right: 18px;
  bottom: 28px;
  width: 78%;
  height: 72%;
  border-top: 5px solid var(--yellow);
  border-right: 5px solid var(--yellow);
  clip-path: polygon(0 76%, 18% 54%, 31% 62%, 48% 34%, 62% 46%, 78% 14%, 100% 0, 100% 9%, 78% 23%, 62% 54%, 48% 43%, 31% 72%, 18% 63%, 0 86%);
  filter: drop-shadow(0 0 14px rgba(255, 229, 0, 0.9));
}

.candle {
  position: absolute;
  left: calc(var(--x) * 1%);
  bottom: 22px;
  width: 10px;
  height: calc(var(--h) * 1px);
  border-radius: 4px;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 229, 0, 0.74);
}

.candle::before {
  position: absolute;
  left: 50%;
  top: calc(var(--w) * -0.45px);
  width: 2px;
  height: calc(var(--w) * 1px);
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.candle.down {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.36);
}

.candle.hot {
  background: #ffffff;
  box-shadow: 0 0 18px #ffffff, 0 0 34px rgba(255, 229, 0, 0.8);
}

.chart-panel strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.gain {
  color: var(--acid);
  font-size: 34px;
  font-weight: 1000;
  text-shadow: 0 0 26px rgba(223, 255, 63, 0.42);
}

.bars {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 150px;
}

.bars span {
  flex: 1;
  min-width: 8px;
  height: calc(var(--h) * 1px);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(255, 229, 0, 0.92), rgba(255, 184, 0, 0.26));
  box-shadow: 0 0 20px rgba(255, 229, 0, 0.28);
}

.bars span.hot {
  background: linear-gradient(180deg, #ffffff, var(--yellow));
}

.market-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1.3fr);
  gap: 22px;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 28px;
  border: 1px solid rgba(255, 229, 0, 0.2);
  border-radius: 8px;
  background: rgba(5, 6, 6, 0.66);
}

.strip-head h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 48px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.ticker-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  border-radius: 8px;
}

.ticker-card span,
.ticker-card small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-card strong {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 1000;
}

.robinhood-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 229, 0, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 6, 0.7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
}

.feature-card span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 1000;
}

.feature-card h3 {
  max-width: 280px;
  margin: 38px 0 14px;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 36px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.96;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.content-page {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(360px, 1.26fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: end;
  margin-bottom: 22px;
}

.section-copy.narrow {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.section-copy h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 76px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.52;
}

.terminal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: 16px;
  align-items: stretch;
}

.order-ticket,
.portfolio-card,
.watchlist-board {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    rgba(5, 6, 6, 0.72);
}

.order-ticket {
  min-height: 520px;
  padding: 22px;
}

.ticket-head,
.watchlist-head,
.portfolio-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ticket-head span,
.watchlist-head span,
.portfolio-top span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ticket-head strong,
.watchlist-head strong {
  color: #ffffff;
  font-size: 26px;
  font-style: italic;
  font-weight: 1000;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 24px 0;
  padding: 6px;
  border: 1px solid rgba(255, 229, 0, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.segmented-control button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.segmented-control .active {
  background: var(--yellow);
  color: #050606;
}

.order-ticket label,
.buying-power {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 229, 0, 0.16);
}

.order-ticket label span,
.buying-power span,
.portfolio-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-ticket label strong,
.buying-power strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 1000;
}

.primary-action {
  display: grid;
  min-height: 58px;
  margin-top: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: #050606;
  font-weight: 1000;
  text-transform: uppercase;
}

.portfolio-card {
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
}

.portfolio-top {
  display: grid;
  grid-template-columns: 1fr;
}

.portfolio-top strong {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 1000;
}

.portfolio-top small {
  color: var(--acid);
  font-size: 18px;
  font-weight: 950;
}

.portfolio-curve {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 180px;
  margin: 34px 0;
  padding: 0 6px;
  border-bottom: 1px solid rgba(255, 229, 0, 0.28);
}

.portfolio-curve span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #ffffff, var(--yellow));
  box-shadow: 0 0 22px rgba(255, 229, 0, 0.46);
}

.portfolio-curve span:nth-child(1) { height: 34%; }
.portfolio-curve span:nth-child(2) { height: 45%; }
.portfolio-curve span:nth-child(3) { height: 38%; }
.portfolio-curve span:nth-child(4) { height: 56%; }
.portfolio-curve span:nth-child(5) { height: 51%; }
.portfolio-curve span:nth-child(6) { height: 66%; }
.portfolio-curve span:nth-child(7) { height: 72%; }
.portfolio-curve span:nth-child(8) { height: 81%; }
.portfolio-curve span:nth-child(9) { height: 88%; }
.portfolio-curve span:nth-child(10) { height: 100%; }

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

.portfolio-grid div {
  padding: 14px;
  border: 1px solid rgba(255, 229, 0, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.portfolio-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 1000;
}

.watchlist-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: center;
  padding: clamp(28px, 5vw, 70px) 0;
}

.watchlist-board {
  min-height: 560px;
  padding: 24px;
}

.watch-row {
  display: grid;
  grid-template-columns: 1fr auto auto minmax(120px, 0.42fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 229, 0, 0.13);
}

.watch-row span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.watch-row strong {
  color: var(--acid);
  font-size: 18px;
  font-weight: 1000;
}

.watch-row small {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.watch-row i {
  display: block;
  height: 28px;
  background: linear-gradient(135deg, transparent 0 22%, var(--yellow) 23% 27%, transparent 28% 47%, var(--yellow) 48% 53%, transparent 54% 68%, #ffffff 69% 73%, transparent 74%);
  filter: drop-shadow(0 0 8px rgba(255, 229, 0, 0.8));
}

.token-page {
  padding: clamp(20px, 4vw, 48px) 0;
}

.feature-card.dense {
  min-height: 250px;
}

.feature-card.dense h3 {
  margin-top: 52px;
}

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

.roadmap-grid article {
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(255, 229, 0, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 229, 0, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 6, 0.74);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.32);
}

.roadmap-grid span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.roadmap-grid h3 {
  margin: 74px 0 14px;
  color: #ffffff;
  font-size: 28px;
  font-style: italic;
  font-weight: 1000;
  line-height: 0.96;
  text-transform: uppercase;
}

.roadmap-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .copy-zone {
    max-width: 860px;
  }

  .visual-zone {
    grid-template-columns: 1fr;
    min-height: 680px;
  }

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

  .robinhood-band,
  .terminal-layout,
  .watchlist-page,
  .token-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero,
  .market-strip,
  .robinhood-band,
  .content-page {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .hero {
    padding-top: 14px;
  }

  .nav {
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    justify-content: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    padding: 36px 0 18px;
  }

  h1 {
    font-size: 42px;
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .lede {
    max-width: min(340px, calc(100vw - 48px));
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .copy-zone,
  .visual-zone {
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .entry-grid,
  .stat-row,
  .ticker-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .entry-button {
    min-height: 60px;
    min-width: 0;
  }

  .entry-button small {
    max-width: 52%;
  }

  .ca-button {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ca-button small {
    display: block;
    max-width: 100%;
    text-align: left;
    font-size: 10px;
    line-height: 1.35;
  }

  .entry-button span {
    min-width: 0;
  }

  .visual-zone {
    gap: 14px;
    min-height: auto;
  }

  .hero-terminal {
    min-height: 360px;
    overflow: hidden;
  }

  .terminal-top,
  .terminal-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .terminal-top strong {
    max-width: 100%;
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .terminal-price span {
    font-size: 22px;
  }

  .mini-orderbook {
    grid-template-columns: 1fr;
  }

  .mini-orderbook strong {
    margin-top: 8px;
  }

  .chart-panel {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gain {
    justify-self: start;
    font-size: 30px;
  }

  .bars {
    gap: 6px;
    max-width: 100%;
    overflow: hidden;
  }

  .bars span {
    min-width: 0;
  }

  .candle-panel {
    width: 100%;
  }

  .market-strip {
    padding: 18px;
  }

  .section-copy h2 {
    font-size: 36px;
  }

  .section-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .order-ticket,
  .portfolio-card,
  .watchlist-board {
    min-height: auto;
    padding: 18px;
  }

  .ticket-head,
  .terminal-price {
    flex-direction: column;
  }

  .order-ticket label,
  .buying-power {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .watch-row {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 14px 0;
  }

  .watch-row i {
    grid-column: 1 / -1;
  }

  .roadmap-grid h3 {
    margin-top: 54px;
  }
}
