﻿:root {
  color-scheme: dark;
  --bg: #0a0e14;
  --bg-2: #050709;
  --bg-3: #11161d;
  --panel: #11161d;
  --panel-2: #161c25;
  --panel-3: #1c222d;
  --line: rgba(255, 145, 0, 0.18);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 145, 0, 0.4);
  --text: #e6edf3;
  --text-bright: #ffffff;
  --muted: #8b97a8;
  --dim: #5a6776;
  --accent: #ff9100;
  --accent-2: #ffb547;
  --accent-3: #ff6b00;
  --cyan: #00d4ff;
  --magenta: #ff2e93;
  --positive: #00ff88;
  --negative: #ff3355;
  --warning: #ffb800;
  --shadow-glow: 0 0 24px rgba(255, 145, 0, 0.25);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --radius: 2px;
  --radius-sm: 0;
  --max: 1240px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #0a0e14 0%, #050709 100%);
  background-attachment: fixed;
  color: var(--text);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

body, button, input, select, textarea {
  font: inherit;
}

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

button, input, select, textarea {
  border: 0;
  background: transparent;
  color: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--line-strong);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* === HEADER === */
.site-page {
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(255, 145, 0, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 50%, rgba(0, 212, 255, 0.05), transparent 60%),
    #0a0e14;
}

.site-header {
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 68px;
  padding: 0 28px;
}

.logo {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border: 1px solid var(--accent);
  border-radius: 0;
  color: #000;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  line-height: 1;
  width: 36px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.brand-mark img {
  display: block;
  height: 36px;
  width: 36px;
}

.logo-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.logo-title {
  color: var(--text-bright);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-subtitle {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.icon {
  display: inline-block;
  height: 16px;
  width: 16px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 0;
}

.site-nav a {
  border: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-transform: uppercase;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover {
  background: rgba(255, 145, 0, 0.08);
  color: var(--accent);
}

.nav-toggle {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  display: none;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-actions {
  align-items: center;
  display: flex;
  gap: 0;
}

.button,
.ghost-button,
.text-button,
.mini-button {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 0 18px;
  transition: all 0.15s;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.button {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.button:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-glow);
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.ghost-button:hover {
  background: rgba(255, 145, 0, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.text-button {
  background: transparent;
  color: var(--accent);
  min-height: 32px;
  padding: 0 8px;
  font-size: 11px;
}

.text-button:hover {
  color: var(--accent-2);
}

.button.is-disabled {
  background: var(--dim);
  color: var(--bg);
  cursor: not-allowed;
  border-color: var(--dim);
}

/* === HERO === */
.hero {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 80px 28px 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(255, 145, 0, 0.03) 31px, rgba(255, 145, 0, 0.03) 32px),
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(255, 145, 0, 0.03) 31px, rgba(255, 145, 0, 0.03) 32px);
  pointer-events: none;
}

.hero::after {
  content: "TRADE › EXECUTE › MONITOR";
  position: absolute;
  top: 30%;
  right: 0;
  font-size: 200px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 145, 0, 0.025);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-content {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "›";
  font-size: 14px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 18px;
  color: var(--text-bright);
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 32px rgba(255, 145, 0, 0.4);
}

.hero h2 {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
}

.hero-note {
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
  padding: 12px 16px;
  background: rgba(255, 145, 0, 0.04);
}

.hero-visual {
  align-self: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-ticker {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-ticker::before,
.hero-ticker::after {
  content: none !important;
  display: none !important;
}

.ticker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-soft);
}

.ticker-grid > div {
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 16px;
}

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

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

.ticker-symbol {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-symbol::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--positive);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--positive);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ticker-price {
  color: var(--text-bright);
  font-size: 20px;
  font-weight: 700;
  font-family: "JetBrains Mono", "Fira Code", "SF Mono", monospace;
  letter-spacing: -0.02em;
}

.ticker-change {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  padding: 2px 6px;
  font-family: "JetBrains Mono", monospace;
}

.ticker-change.positive {
  background: rgba(0, 255, 136, 0.12);
  color: var(--positive);
}

.ticker-change.negative {
  background: rgba(255, 51, 85, 0.12);
  color: var(--negative);
}

.status-note {
  display: none;
  margin-top: 10px;
}

.status-note.is-visible {
  display: block;
}

/* === SECTIONS === */
.section {
  border-bottom: 1px solid var(--line-soft);
  padding: 80px 28px;
  position: relative;
}

.section.alt {
  background: var(--bg-2);
}

.section.alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

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

.section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--text-bright);
}

.section-heading h2::before {
  content: "// ";
  color: var(--accent);
}

.section-heading p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* === APPS BLOCK === */
.app-download-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.app-download-card {
  align-items: center;
  background: var(--panel);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px;
  position: relative;
  transition: background 0.2s;
}

.app-download-card:last-child {
  border-right: 0;
}

.app-download-card:hover {
  background: var(--panel-2);
}

.app-download-card::before {
  content: "01";
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
}

.app-download-card:nth-child(2)::before {
  content: "02";
}

.app-download-card-soon {
  position: relative;
  overflow: hidden;
}

.app-download-card-soon > * {
  position: relative;
  z-index: 2;
}

.app-soon-stripe {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

.soon-line {
  display: block;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  text-transform: uppercase;
  line-height: 1.4;
  word-spacing: 0;
  word-break: keep-all;
  width: max-content;
  padding-right: 16px;
  animation: scroll-left 12s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.app-download-card-soon .play-store-button {
  opacity: 0.6;
  pointer-events: none;
}

.app-download-card-soon .play-store-button::before {
  content: "PENDING";
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--warning);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  letter-spacing: 0.1em;
  z-index: 3;
  transform: rotate(8deg);
}

.app-download-copy {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
}

.app-monogram {
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border: 1px solid var(--accent);
  color: #000;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  width: 56px;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.app-monogram-wallet {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-color: var(--cyan);
}

.app-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 4px;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.app-kicker::before {
  content: "> ";
  color: var(--accent-2);
}

.app-download-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.app-download-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.play-store-button {
  align-items: center;
  background: #000;
  border: 1px solid var(--accent);
  color: var(--text-bright);
  display: inline-flex;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.play-store-button:hover {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.play-symbol {
  align-items: center;
  background: var(--accent);
  color: #000;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.play-store-button span:last-child {
  display: grid;
  gap: 1px;
  text-align: left;
}

.play-store-button small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.play-store-button:hover small {
  color: rgba(0, 0, 0, 0.6);
}

.play-store-button strong {
  color: var(--text-bright);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.play-store-button:hover strong {
  color: #000;
}

/* === FEATURES === */
.feature-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.feature-card {
  background: var(--panel);
  border-right: 1px solid var(--line-soft);
  padding: 28px 22px;
  position: relative;
  transition: background 0.2s;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  background: var(--panel-2);
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  align-items: center;
  background: rgba(255, 145, 0, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 18px;
  width: 40px;
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-bright);
}

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

/* === APP PREVIEW === */
.preview-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.preview-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  display: grid;
  gap: 14px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  position: relative;
}

.preview-card:hover {
  background: var(--panel-2);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.screen-shot {
  background: #000;
  border: 1px solid var(--line-soft);
  display: grid;
  min-height: 168px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.screen-shot.app-shot {
  aspect-ratio: 390 / 844;
  display: block;
  min-height: 0;
}

.screen-shot.app-shot img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.preview-card h3 {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-bright);
}

.preview-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

/* === MARKET TABLE === */
.market-table-wrap {
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow-x: auto;
}

.market-live-badge {
  align-items: center;
  background: var(--accent);
  color: #000;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  min-height: 30px;
  padding: 0 12px;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.market-live-badge::before {
  content: "› ";
  animation: pulse 1.4s ease-in-out infinite;
}

.market-live-badge.is-offline {
  background: var(--dim);
  color: var(--bg);
}

.market-live-badge.is-offline::before {
  animation: none;
  content: "› ";
}

.market-status-block {
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  display: inline-flex;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.14em;
  min-height: 36px;
  padding: 0 16px;
  text-transform: uppercase;
  color: var(--accent);
}

.status-dot {
  background: var(--positive);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--positive);
  height: 8px;
  width: 8px;
  animation: pulse 1.4s ease-in-out infinite;
}

.status-text {
  color: var(--accent);
}

.market-table {
  border-collapse: collapse;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  min-width: 680px;
  width: 100%;
}

.market-table th,
.market-table td {
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 18px;
  text-align: left;
}

.market-table th {
  background: var(--bg-2);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.market-table td {
  color: var(--text);
  font-size: 13px;
}

.market-table tbody tr {
  cursor: pointer;
  transition: background 0.15s;
}

.market-table tbody tr:hover {
  background: rgba(255, 145, 0, 0.06);
}

.market-table tbody tr td:first-child {
  color: var(--text-bright);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.market-table tbody tr td:last-child {
  text-align: right;
}

.market-actions {
  white-space: nowrap;
  text-align: right;
}

.market-link {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s;
  font-family: "JetBrains Mono", monospace;
}

.market-link:hover {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.market-link-app {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.market-link-app:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1.4fr 1fr;
  border: 1px solid var(--line);
}

.info-panel {
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 32px;
}

.info-panel h2,
.legal-card h3,
.policy-block h2,
.contact-panel h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--text-bright);
}

.info-panel h2::before,
.legal-card h3::before,
.policy-block h2::before,
.contact-panel h2::before {
  content: "// ";
  color: var(--accent);
}

.info-panel p,
.legal-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.statement-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
}

.statement {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  text-transform: uppercase;
  position: relative;
  padding-left: 38px;
}

.statement:last-child {
  border-bottom: 0;
}

.statement::before {
  content: "\25B8";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 16px;
}

.legal-card {
  background: var(--bg-2);
  padding: 32px;
}

/* === SUPPORT / FORM === */
.contact-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1.3fr 1fr;
  border: 1px solid var(--line);
}

.contact-panel {
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 32px;
}

.legal-list,
.contact-list {
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.contact-list address {
  font-style: normal;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.contact-list a:hover {
  border-bottom-color: var(--accent);
}

.contact-company {
  margin: 0 0 16px;
  color: var(--text-bright);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.field {
  display: grid;
  gap: 8px;
  position: relative;
}

.field span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.field span::before {
  content: "> ";
  opacity: 0.6;
}

.field input,
.field textarea,
.search-field input,
.pair-select select {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text-bright);
  -webkit-text-fill-color: var(--text-bright);
  font-size: 14px;
  font-family: inherit;
  min-height: 44px;
  padding: 0 14px;
  transition: all 0.2s;
}

.field input::placeholder,
.field textarea::placeholder,
.search-field input::placeholder,
.pair-select select::placeholder {
  color: var(--dim);
}

.field input:focus,
.field textarea:focus,
.search-field input:focus,
.pair-select select:focus {
  background: var(--bg-3);
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.15);
}

.field textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
  color: var(--text-bright);
  -webkit-text-fill-color: var(--text-bright);
}

.form-status {
  color: var(--positive);
  display: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-status.is-visible {
  display: block;
}

/* === FOOTER === */
.site-footer {
  background: #050709;
  border-top: 1px solid var(--line);
  padding: 40px 28px;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-copy,
.footer-notice {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-copy strong {
  color: var(--text-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  text-transform: uppercase;
  transition: all 0.15s;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.footer-links a::before {
  content: "›";
  color: var(--accent);
  margin-right: 6px;
  font-size: 10px;
}

.footer-links a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.footer-links a:hover::before {
  color: #000;
}

/* === MODAL === */
.site-pair-modal-backdrop {
  align-items: center;
  background: rgba(5, 7, 9, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  inset: 0;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
  position: fixed;
  z-index: 90;
}

.site-pair-modal-backdrop.is-open {
  display: flex;
}

.site-pair-modal {
  background: var(--bg-3);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  max-height: calc(100vh - 48px);
  max-width: 1060px;
  overflow-y: auto;
  width: 100%;
}

.site-pair-modal-header {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px;
}

.site-pair-modal-header h2 {
  font-size: 28px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.site-pair-modal-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.site-pair-summary {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.site-pair-price {
  display: grid;
  gap: 8px;
}

.site-pair-price strong {
  font-size: 32px;
  line-height: 1;
  font-family: "JetBrains Mono", monospace;
}

.site-timeframes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.site-pair-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.site-market-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
}

.site-market-panel h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-candle-chart {
  background: #000;
  border: 1px solid var(--line-soft);
  height: 320px;
  overflow: hidden;
  width: 100%;
}

.site-candle-chart svg {
  display: block;
  height: 100%;
  width: 100%;
}

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

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

.site-side-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.site-side-title span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-preview-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-preview-note {
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--warning);
  display: none;
  font-size: 12px;
  line-height: 1.5;
  padding: 11px 12px;
}

.site-preview-note.is-visible {
  display: block;
}

.positive {
  color: var(--positive);
}

.negative {
  color: var(--negative);
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
  transition: all 0.15s;
}

.icon-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.empty-state {
  align-items: center;
  background: var(--bg-3);
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 12px;
  min-height: 180px;
  padding: 24px;
  text-align: center;
}

.legal-page-main {
  margin: 0 auto;
  max-width: 980px;
  padding: 58px 28px 84px;
}

.legal-page-main h1 {
  font-size: 42px;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.legal-page-main > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

.policy-stack {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}

.policy-block {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 24px 32px;
  scroll-margin-top: 96px;
}

.policy-block:last-child {
  border-bottom: 0;
}

.policy-block h2 {
  font-size: 18px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.policy-block ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.logo-lab-main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px 28px 84px;
}

.logo-lab-hero {
  max-width: 760px;
  padding: 20px 0 34px;
}

.logo-lab-hero h1 {
  font-size: 48px;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.logo-lab-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 0;
}

.logo-options-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.logo-option-card {
  background: var(--panel);
  border-right: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  min-height: 300px;
  padding: 18px;
}

.logo-option-card:last-child {
  border-right: 0;
}

.logo-display {
  align-items: center;
  background: #000;
  border: 1px solid var(--line-soft);
  display: grid;
  justify-items: center;
  min-height: 172px;
  padding: 18px;
}

.logo-option-mark {
  flex: 0 0 auto;
  height: 104px;
  width: 104px;
}

.logo-meta h2 {
  font-size: 16px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.logo-meta p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1050px) {
  .feature-grid,
  .preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero h1 {
    font-size: 56px;
  }

  .hero::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header-inner {
    min-height: 60px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 8px 18px 18px;
    position: absolute;
    right: 0;
    top: 60px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-actions .ghost-button {
    display: none;
  }

  .hero {
    padding: 50px 18px 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section {
    padding: 50px 18px;
  }

  .section-heading {
    align-items: start;
    display: grid;
  }

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

  .app-download-grid,
  .feature-grid,
  .preview-grid,
  .logo-options-grid,
  .site-pair-grid,
  .site-side-grid,
  .about-grid,
  .legal-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .app-download-card,
  .feature-card,
  .info-panel,
  .contact-panel,
  .policy-block,
  .logo-option-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .app-download-card:last-child,
  .feature-card:last-child,
  .info-panel:last-of-type,
  .logo-option-card:last-child,
  .policy-block:last-child {
    border-bottom: 0;
  }

  .site-pair-modal-backdrop {
    align-items: flex-start;
    padding: 12px;
  }

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

@media (max-width: 520px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-ctas {
    display: grid;
  }

  .hero-ctas .button,
  .hero-ctas .ghost-button {
    width: 100%;
  }

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

  .ticker-grid > div {
    border-right: 0;
  }
}





