:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #0a0a0b;
  --border: #242427;
  --border-soft: #1a1a1c;
  --text: #ededf0;
  --text-soft: #c9c9d0;
  --text-muted: #8e8e96;
  --text-faint: #5e6068;
  --accent: #ff9e5c;
  --accent-hover: #ffb77c;
  --accent-text: #4a2400;
  --ok: #4db88a;
  --range: #3a3d46;
  --range-strong: #45454b;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

.page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}

.ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% -6%, rgba(255, 158, 92, 0.1), transparent 70%),
    radial-gradient(ellipse 46% 38% at 88% 108%, rgba(255, 158, 92, 0.06), transparent 70%);
}

.market-motif {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56%;
  opacity: 0.5;
  pointer-events: none;
}

.range-line {
  stroke: var(--range-strong);
  stroke-width: 1.5;
  stroke-dasharray: 3 6;
  opacity: 0.4;
}

.accumulation-line {
  fill: none;
  stroke: var(--range);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2 5;
  opacity: 0.65;
}

.markup-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawline 2.4s ease-out 0.3s forwards;
}

.breakout-dot {
  fill: var(--accent);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo-chip {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
}

.logo-chip img {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

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

.brand-subtitle {
  display: block;
  margin-top: 1px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.launch-badge {
  display: inline-flex;
  height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0 15px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 500;
}

.launch-badge span {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 158, 92, 0.15);
  animation: glowpulse 2.4s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 24px 60px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.lede strong {
  color: var(--text);
  font-weight: 600;
}

.note {
  margin: 34px 0 0;
  color: var(--text-muted);
  font-size: 12.5px;
}

.pillars {
  display: grid;
  width: 100%;
  max-width: 920px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.pillars article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  background: rgba(10, 10, 11, 0.7);
  text-align: left;
  backdrop-filter: blur(6px);
}

.icon-chip {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 158, 92, 0.12);
  color: var(--accent);
  font-size: 23px;
}

.icon-chip-ok {
  background: rgba(77, 184, 138, 0.12);
  color: var(--ok);
}

.pillars h2 {
  margin: 15px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.pillars p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border-soft);
  padding: 22px 48px;
}

.footer p {
  max-width: 760px;
  margin: 0;
  color: var(--text-faint);
  font-size: 11.5px;
  line-height: 1.5;
}

.footer strong {
  color: var(--text-muted);
  font-weight: 600;
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 12.5px;
  white-space: nowrap;
}

.footer nav span {
  color: var(--range-strong);
}

@keyframes drawline {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes glowpulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.85;
  }
}

@media (max-width: 900px) {
  .topbar,
  .footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  h1 {
    font-size: clamp(46px, 11vw, 68px);
  }

  .pillars {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

@media (max-width: 560px) {
  .topbar {
    padding: 20px 18px;
  }

  .launch-badge {
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 48px 18px 44px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .lede {
    font-size: 16px;
  }

  .footer {
    padding: 20px 18px;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}
