:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #0a0a0a;
  --panel-2: #111;
  --line: #242424;
  --line-soft: #1a1a1a;
  --text: #f5f5f5;
  --muted: #a1a1aa;
  --subtle: #71717a;
  --blue: #0070f3;
  --cyan: #24d8ff;
  --green: #35f29a;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(0, 112, 243, 0.25), transparent 28%),
    #000;
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 650;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  animation: logoPulse 3.6s ease-in-out infinite;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.icon-link,
.cta,
.copy-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: #ededed;
  font-size: 14px;
  font-weight: 520;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-link {
  padding: 0 14px;
}

.icon-link.primary,
.cta.primary {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.icon-link:hover,
.cta:hover,
.copy-button:hover,
.link-tile:hover {
  border-color: #6b7280;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.icon-link.primary:hover,
.cta.primary:hover {
  background: #d7d7d7;
  border-color: #d7d7d7;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
  gap: 62px;
  padding: 24px 0 58px;
}

.hero-copy {
  min-width: 0;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(53, 242, 154, 0.75);
}

h1 {
  margin: 24px 0 0;
  max-width: 780px;
  font-size: clamp(66px, 9vw, 126px);
  line-height: 0.9;
  font-weight: 780;
  letter-spacing: 0;
}

.ticker {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1;
  font-weight: 720;
}

.hero-subtitle {
  width: min(100%, 720px);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contract-row {
  width: min(100%, 760px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ca-label {
  padding-left: 8px;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 650;
}

code {
  min-width: 0;
  color: #fafafa;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  gap: 8px;
  padding: 0 13px;
  cursor: pointer;
}

.copy-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta {
  padding: 0 18px;
}

.token-card {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at 50% 45%, rgba(36, 216, 255, 0.25), transparent 48%),
    #050505;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.token-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%);
}

.token-card::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(36, 216, 255, 0.08) 64deg,
    rgba(255, 255, 255, 0.28) 82deg,
    rgba(0, 112, 243, 0.12) 98deg,
    transparent 132deg,
    transparent 360deg
  );
  animation: sweep 8s linear infinite;
  opacity: 0.75;
}

.token-card img {
  position: relative;
  z-index: 4;
  width: min(78%, 330px);
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 28px 48px rgba(0, 112, 243, 0.45));
  animation: floatLogo 5.2s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  z-index: 3;
  inset: 40px;
  border: 1px solid rgba(36, 216, 255, 0.38);
  border-radius: 999px;
  animation: ringPulse 4s ease-in-out infinite;
}

.logo-aura {
  position: absolute;
  z-index: 1;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(36, 216, 255, 0.42), rgba(0, 112, 243, 0.18) 42%, transparent 68%);
  filter: blur(28px);
  animation: auraBreath 4.8s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(36, 216, 255, 0.34);
  border-left-color: rgba(255, 255, 255, 0.82);
  border-bottom-color: transparent;
  pointer-events: none;
}

.orbit-one {
  width: 78%;
  aspect-ratio: 1;
  animation: orbitSpin 10s linear infinite;
}

.orbit-two {
  width: 61%;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(36, 216, 255, 0.85);
  transform: rotate(18deg);
  animation: orbitSpinReverse 7.5s linear infinite;
}

.scan-line {
  position: absolute;
  z-index: 5;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), rgba(36, 216, 255, 0.52), transparent);
  box-shadow: 0 0 22px rgba(36, 216, 255, 0.65);
  opacity: 0;
  animation: scanPass 5.8s ease-in-out infinite;
}

.metrics,
.link-grid,
.feature-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.76);
  overflow: hidden;
}

.metrics {
  margin-bottom: 16px;
}

.metrics div,
.link-tile,
.feature-grid article,
.timeline article {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child,
.link-tile:last-child,
.feature-grid article:last-child,
.timeline article:last-child {
  border-right: 0;
}

.metrics span,
.tile-kicker,
.feature-index,
.timeline span {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
}

.metrics strong,
.link-tile strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 700;
}

.link-grid {
  margin-bottom: 72px;
}

.link-tile {
  min-height: 122px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.feature-band,
.chart-section,
.roadmap,
.overview-section,
.access-section,
.utility-section,
.transparency-section,
.faq-section {
  margin: 0 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading span {
  font-size: 30px;
  line-height: 1;
  font-weight: 720;
}

.section-heading.stacked {
  display: block;
}

.section-heading.stacked small {
  display: block;
  width: min(100%, 680px);
  margin-top: 12px;
  line-height: 1.6;
}

.section-heading small,
.section-heading a {
  color: var(--muted);
  font-size: 14px;
}

.section-heading a:hover {
  color: #fff;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid h2,
.timeline h2 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.feature-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.overview-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: stretch;
}

.overview-copy,
.terminal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
}

.overview-copy {
  padding: 32px;
}

.overview-copy p {
  width: min(100%, 760px);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.terminal-panel {
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3f3f46;
}

.terminal-bar span:first-child {
  background: #ef4444;
}

.terminal-bar span:nth-child(2) {
  background: #f59e0b;
}

.terminal-bar span:nth-child(3) {
  background: var(--green);
}

.terminal-lines {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.terminal-lines code {
  color: #d4d4d8;
  overflow: visible;
  white-space: normal;
}

.access-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
  overflow: hidden;
}

.access-grid article,
.faq-grid article {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.access-grid article:last-child,
.faq-grid article:last-child {
  border-right: 0;
}

.access-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.access-grid h2,
.faq-grid h2 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.access-grid p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.module-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
  overflow: hidden;
}

.module-list article {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
}

.module-list article:last-child {
  border-bottom: 0;
}

.module-list span {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.module-list h2 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.module-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.chart-frame {
  position: relative;
  height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #050505;
  overflow: hidden;
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(0, 112, 243, 0.3), transparent 38%),
    #050505;
  background-size: 52px 52px, 52px 52px, auto, auto;
  color: var(--text);
  pointer-events: none;
}

.chart-placeholder strong {
  font-size: 34px;
}

.chart-placeholder span {
  color: var(--muted);
  font-size: 15px;
}

.chart-placeholder.is-hidden {
  display: none;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
  overflow: hidden;
}

.checklist div {
  position: relative;
  min-width: 0;
  padding: 24px 24px 24px 54px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checklist div:nth-child(2n) {
  border-right: 0;
}

.checklist div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.checklist div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 29px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(53, 242, 154, 0.64);
}

.checklist strong,
.checklist span {
  display: block;
}

.checklist strong {
  font-size: 18px;
}

.checklist span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid article {
  border-bottom: 1px solid var(--line);
}

.faq-grid article:nth-child(2n) {
  border-right: 0;
}

.faq-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line-soft);
  color: var(--subtle);
  font-size: 14px;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(36, 216, 255, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(36, 216, 255, 0.72));
  }
}

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

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes auraBreath {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

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

@keyframes orbitSpinReverse {
  to {
    transform: rotate(-342deg);
  }
}

@keyframes scanPass {
  0%,
  20%,
  100% {
    opacity: 0;
    transform: translateY(-150px);
  }
  34% {
    opacity: 1;
  }
  55% {
    opacity: 0.85;
    transform: translateY(150px);
  }
  70% {
    opacity: 0;
  }
}

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

@media (max-width: 940px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-actions {
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 0 42px;
  }

  .token-card {
    max-width: 460px;
  }

  .metrics,
  .link-grid,
  .feature-grid,
  .timeline,
  .access-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .metrics div,
  .link-tile,
  .feature-grid article,
  .timeline article,
  .access-grid article,
  .faq-grid article {
    border-bottom: 1px solid var(--line);
  }

  .metrics div:nth-child(2n),
  .link-tile:nth-child(2n),
  .feature-grid article:nth-child(2n),
  .timeline article:nth-child(2n),
  .access-grid article:nth-child(2n),
  .faq-grid article:nth-child(2n) {
    border-right: 0;
  }

  .metrics div:nth-last-child(-n + 2),
  .link-tile:nth-last-child(-n + 2),
  .feature-grid article:nth-last-child(-n + 2),
  .timeline article:nth-last-child(-n + 2),
  .access-grid article:nth-last-child(-n + 2),
  .faq-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .module-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .chart-frame {
    height: 520px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: 100%;
    max-width: 100vw;
    padding: 0 12px;
    overflow: hidden;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .icon-link {
    width: 100%;
    flex: none;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta {
    width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 62px);
    line-height: 0.95;
    overflow-wrap: normal;
  }

  .hero-copy,
  .hero-subtitle,
  .overview-copy,
  .terminal-panel,
  .module-list,
  .chart-frame {
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .ticker {
    font-size: 30px;
  }

  .token-card {
    width: 100%;
    max-width: 100%;
  }

  .token-card img {
    width: 68%;
  }

  .contract-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

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

  .metrics,
  .link-grid,
  .feature-grid,
  .timeline,
  .access-grid,
  .faq-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .link-tile,
  .feature-grid article,
  .timeline article,
  .access-grid article,
  .faq-grid article,
  .checklist div {
    border-right: 0;
  }

  .metrics div:nth-last-child(-n + 2),
  .link-tile:nth-last-child(-n + 2),
  .feature-grid article:nth-last-child(-n + 2),
  .timeline article:nth-last-child(-n + 2),
  .access-grid article:nth-last-child(-n + 2),
  .faq-grid article:nth-last-child(-n + 2),
  .checklist div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child,
  .link-tile:last-child,
  .feature-grid article:last-child,
  .timeline article:last-child,
  .access-grid article:last-child,
  .faq-grid article:last-child,
  .checklist div:last-child {
    border-bottom: 0;
  }

  .overview-copy,
  .terminal-lines,
  .module-list article {
    padding: 22px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-frame {
    height: 460px;
  }
}

/* Blue-white preview theme */
:root {
  color-scheme: light;
  --bg: #f7fbff;
  --panel: #ffffff;
  --panel-2: #eef6ff;
  --line: #cfe0f5;
  --line-soft: #dce9f8;
  --text: #061a3a;
  --muted: #4f6582;
  --subtle: #7b8da6;
  --blue: #0068ff;
  --cyan: #18c8ff;
  --green: #12b981;
}

html {
  background: #f7fbff;
}

body {
  background:
    linear-gradient(rgba(0, 104, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 255, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(0, 104, 255, 0.28), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(24, 200, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 44%, #ffffff 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  color: var(--text);
}

.topbar {
  border-bottom-color: rgba(178, 205, 240, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(0, 74, 173, 0.08);
}

.brand,
.section-heading span,
h1,
.metrics strong,
.link-tile strong,
.feature-grid h2,
.timeline h2,
.access-grid h2,
.faq-grid h2,
.module-list h2,
.checklist strong {
  color: #061a3a;
}

.icon-link,
.cta,
.copy-button {
  border-color: #c7dcf5;
  background: rgba(255, 255, 255, 0.78);
  color: #0c2f68;
}

.icon-link.primary,
.cta.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 104, 255, 0.24);
}

.icon-link:hover,
.cta:hover,
.copy-button:hover,
.link-tile:hover {
  border-color: #76aaf0;
  background: rgba(228, 241, 255, 0.92);
}

.icon-link.primary:hover,
.cta.primary:hover {
  border-color: #0057d8;
  background: #0057d8;
}

.status-line,
.contract-row,
.overview-copy,
.terminal-panel,
.metrics,
.link-grid,
.feature-grid,
.timeline,
.access-grid,
.faq-grid,
.module-list,
.checklist {
  border-color: rgba(188, 213, 244, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 52px rgba(16, 91, 184, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.metrics div,
.link-tile,
.feature-grid article,
.timeline article,
.access-grid article,
.faq-grid article,
.module-list article,
.checklist div {
  border-color: rgba(188, 213, 244, 0.88);
}

.link-tile {
  background: rgba(255, 255, 255, 0.56);
}

.contract-row {
  background: rgba(255, 255, 255, 0.9);
}

code {
  color: #08204a;
}

.copy-button svg {
  stroke: currentColor;
}

.ticker {
  color: #416b9f;
}

.hero-subtitle,
.overview-copy p,
.feature-grid p,
.timeline p,
.access-grid p,
.faq-grid p,
.module-list p,
.checklist span,
.section-heading small,
.section-heading a {
  color: #526985;
}

.token-card {
  border-color: rgba(133, 183, 243, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(235, 247, 255, 0.64)),
    radial-gradient(circle at 50% 45%, rgba(24, 200, 255, 0.3), transparent 48%),
    #ffffff;
  box-shadow:
    0 34px 80px rgba(0, 104, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.token-card::before {
  background:
    linear-gradient(rgba(0, 104, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 255, 0.08) 1px, transparent 1px);
}

.token-card::after {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(24, 200, 255, 0.12) 64deg,
    rgba(0, 104, 255, 0.26) 82deg,
    rgba(255, 255, 255, 0.62) 98deg,
    transparent 132deg,
    transparent 360deg
  );
}

.token-card img {
  filter: drop-shadow(0 28px 48px rgba(0, 104, 255, 0.26));
}

.logo-aura {
  background:
    radial-gradient(circle, rgba(24, 200, 255, 0.48), rgba(0, 104, 255, 0.2) 42%, transparent 68%);
}

.orb-ring,
.orbit {
  border-color: rgba(0, 104, 255, 0.34);
}

.orbit {
  border-left-color: rgba(24, 200, 255, 0.86);
  border-bottom-color: transparent;
}

.terminal-bar {
  border-bottom-color: rgba(188, 213, 244, 0.88);
  background: rgba(237, 246, 255, 0.86);
}

.terminal-lines code {
  color: #123462;
}

.access-grid span {
  border-color: #bfd7f3;
  color: #5b7391;
}

.chart-frame {
  border-color: rgba(188, 213, 244, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), transparent),
    #ffffff;
  box-shadow: 0 20px 60px rgba(0, 104, 255, 0.08);
}

.chart-placeholder {
  background:
    linear-gradient(rgba(0, 104, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(24, 200, 255, 0.24), transparent 38%),
    #ffffff;
  color: #061a3a;
}

.footer {
  border-top-color: rgba(188, 213, 244, 0.9);
  color: #6a7f98;
}
