:root {
  --primary: #f9a84b;
  --primary-dark: #d97706;
  --primary-light: #fffbeb;
  --bg-light: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(249, 168, 75, 0.18);
  --radius: 12px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Base Wrapper */
.orbit {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
.horns {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.meadow {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.flock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.crest {
  display: flex;
  align-items: center;
  min-width: 0;
}

.crest img {
  height: 36px;
  width: auto;
  display: block;
}

.beacon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.peak {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.25s ease;
  position: relative;
  padding: 8px 0;
}

.peak:hover,
.peak.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.peak.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 3px;
}

.node {
  display: flex;
  align-items: center;
  min-width: 0;
}

.charge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(249, 168, 75, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-break: keep-all;
}

.charge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 168, 75, 0.45);
  color: #ffffff;
}

.strike {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(249, 168, 75, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.strike:hover {
  background: #fef3c7;
  transform: translateY(-2px);
}

/* Main Layout */
main {
  flex: 1;
}

/* Section 1: Hero Quotes (Quotes Intro) */
.surge {
  padding: 70px 0 80px;
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 40%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.surge-arena {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.surge-node {
  flex: 1;
  min-width: 320px;
}

.stamp-lore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 168, 75, 0.12);
  border: 1px solid rgba(249, 168, 75, 0.3);
  border-radius: 20px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bond-meadow {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  word-break: keep-all;
  white-space: normal;
}

.spark-flock {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.vault-flock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.vault-node {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.lore-crest {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-dark);
}

.spark-node {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.surge-plaque {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
}

.plaque-trace {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.plaque-crest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bond-crest {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.stamp-crest {
  padding: 2px 8px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.spark-crest {
  font-size: 26px;
  font-weight: 800;
  color: var(--success);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.spark-sub {
  font-size: 14px;
  font-weight: 600;
}

.surge-chart {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
}

.plaque-flock {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plaque-stamp {
  flex: 1;
  min-width: 120px;
  background: var(--bg-light);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.stamp-bond {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.stamp-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* Section 2: Order Book Panel (Comparison / Aside) */
.pasture {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.pasture-bond {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.bond-zenith {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  white-space: normal;
}

.spark-zenith {
  font-size: 16px;
  color: var(--muted);
}

.pasture-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.vault-pasture {
  flex: 1;
  min-width: 320px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.vault-trace {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.bond-trace {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.orderbook-flock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orderbook-row {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: monospace;
  position: relative;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
}

.orderbook-fill-ask {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(239, 68, 68, 0.12);
  border-radius: 4px;
  z-index: 1;
}

.orderbook-fill-bid {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 4px;
  z-index: 1;
}

.orderbook-col {
  flex: 1;
  min-width: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.txt-ask {
  color: var(--danger);
  font-weight: 600;
}

.txt-bid {
  color: var(--success);
  font-weight: 600;
}

.tick-node {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
}

.tick-time {
  color: var(--muted);
  font-family: monospace;
}

.tick-yield {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.yield-buy {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.yield-sell {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

/* Section 3: Capital Flow UI (Section / Zenith) */
.zenith {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fffbeb 100%);
  border-bottom: 1px solid var(--border);
}

.zenith-arena {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.vault-zenith {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.lore-vault {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.bond-vault {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.spark-vault {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pie-node {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
}

.flow-flock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.flow-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: 6px;
}

.flow-yield {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-xl { background: #d97706; }
.dot-l { background: #f9a84b; }
.dot-m { background: #3b82f6; }
.dot-s { background: #94a3b8; }

.flow-val {
  font-weight: 700;
}

/* Section 4: Technical Screener Matrix (Article / Arena) */
.arena {
  padding: 80px 0;
  background: #ffffff;
}

.arena-bond {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.screener-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.vault-screener {
  flex: 1;
  min-width: 320px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.vault-screener:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 168, 75, 0.4);
}

.screener-trace {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.screener-lore {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.chip-visual {
  margin-top: 20px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.chip-flock {
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  margin-bottom: 12px;
}

.chip-profit {
  width: 78.4%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.pattern-flock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pattern-stamp {
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Call to Action Bar */
.pasture-charge {
  margin-top: 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius);
  padding: 48px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.charge-spark {
  max-width: 600px;
}

.charge-spark h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.charge-spark p {
  color: #94a3b8;
  font-size: 15px;
}

/* Footer */
footer.anchor {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px;
  border-top: 1px solid #1e293b;
}

.trough {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.crown-brand {
  flex: 1;
  min-width: 240px;
}

.crown-brand h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.crown-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.crown-flock {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.crown-node {
  min-width: 140px;
}

.crown-node h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.crown-node a {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.crown-node a:hover {
  color: var(--primary);
}

.bedrock {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .beacon {
    gap: 16px;
  }
  .bond-meadow {
    font-size: 28px;
  }
  .bond-zenith {
    font-size: 24px;
  }
  .pasture-charge {
    padding: 32px 24px;
  }
  .surge {
    padding: 40px 0 60px;
  }
  .pasture, .zenith, .arena {
    padding: 50px 0;
  }
}

.horns-horns {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--dark);
}
.horns-horns,
.horns-horns *,
.horns-horns *::before,
.horns-horns *::after {
    box-sizing: border-box;
}

.horns-horns [role="navigation"],
.horns-horns div,
.horns-horns section,
.horns-horns article,
.horns-horns aside,
.horns-horns p,
.horns-horns h1,
.horns-horns h2,
.horns-horns h3,
.horns-horns h4,
.horns-horns h5,
.horns-horns h6,
.horns-horns a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.horns-horns p,
.horns-horns h1,
.horns-horns h2,
.horns-horns h3,
.horns-horns h4,
.horns-horns h5,
.horns-horns h6 {
    text-decoration: none;
}

.horns-horns img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.horns-horns {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.horns-horns a.horns-peak-2.horns-horns-peak {
    --aisite-shell-nav-padding: 6px 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.horns-horns a.horns-peak-2.horns-horns-peak,
.horns-horns a.horns-peak-2.horns-horns-peak:hover,
.horns-horns a.horns-peak-2.horns-horns-peak:focus,
.horns-horns a.horns-peak-2.horns-horns-peak:active,
.horns-horns a.horns-peak-2.horns-horns-peak.active,
.horns-horns a.horns-peak-2.horns-horns-peak[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.horns-horns{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }

.horns-horns .horns-meadow{
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }

.horns-horns .horns-flock{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

.horns-horns .horns-crest, .horns-horns .horns-crest{
            display: flex;
            align-items: center;
        }

.horns-horns .horns-crest img, .horns-horns .horns-crest img{
            height: 40px;
            width: auto;
            display: block;
        }

.horns-horns .horns-beacon{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 28px;
        }

.horns-horns .horns-peak-2, .horns-horns .horns-horns-peak{
            font-size: 15px;
            font-weight: 500;
            color: #334155;
            transition: color 0.25s ease;
            position: relative;
            padding: 6px 0;
        }

.horns-horns .horns-peak-2:hover, .horns-horns .horns-peak-2.active, .horns-horns .horns-horns-peak:hover, .horns-horns .horns-horns-peak.active{
            color: #d97706;
        }

.horns-horns .horns-peak-2.active::after, .horns-horns .horns-horns-peak.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #f9a84b;
            border-radius: 2px;
        }

.horns-horns .horns-charge{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            background: linear-gradient(135deg, #f9a84b 0%, #d97706 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 14px rgba(249, 168, 75, 0.35);
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
        }

.horns-horns .horns-charge:hover{
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 168, 75, 0.45);
            color: #ffffff;
        }

@media (max-width: 768px){.horns-horns .horns-flock{
                height: auto;
                padding: 16px 0;
                flex-direction: column;
                gap: 16px;
            }

.horns-horns .horns-beacon{
                gap: 16px;
                justify-content: center;
            }}

.horns-horns {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-anchor {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--dark);
}
.anchor-anchor,
.anchor-anchor *,
.anchor-anchor *::before,
.anchor-anchor *::after {
    box-sizing: border-box;
}

.anchor-anchor [role="navigation"],
.anchor-anchor div,
.anchor-anchor section,
.anchor-anchor article,
.anchor-anchor aside,
.anchor-anchor p,
.anchor-anchor h1,
.anchor-anchor h2,
.anchor-anchor h3,
.anchor-anchor h4,
.anchor-anchor h5,
.anchor-anchor h6,
.anchor-anchor a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.anchor-anchor p,
.anchor-anchor h1,
.anchor-anchor h2,
.anchor-anchor h3,
.anchor-anchor h4,
.anchor-anchor h5,
.anchor-anchor h6 {
    text-decoration: none;
}

.anchor-anchor img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.anchor-anchor {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.anchor-anchor a,
.anchor-anchor a:hover,
.anchor-anchor a:focus,
.anchor-anchor a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.anchor-anchor .anchor-meadow{
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }

.anchor-anchor{
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px;
            border-top: 1px solid #1e293b;
        }

.anchor-anchor .anchor-bedrock{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

.anchor-anchor .anchor-node-brand{
            flex: 1 1 300px;
            min-width: 0;
        }

.anchor-anchor .anchor-bond-crown-brand{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }

.anchor-anchor .anchor-spark-crown-desc{
            font-size: 14px;
            line-height: 1.6;
            color: #94a3b8;
        }

.anchor-anchor .anchor-node-links{
            flex: 1 1 180px;
            min-width: 0;
        }

.anchor-anchor .anchor-bond-crown-col{
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

.anchor-anchor .anchor-vista-crown{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.anchor-anchor .anchor-peak-crown{
            font-size: 14px;
            color: #94a3b8;
            transition: color 0.25s ease;
        }

.anchor-anchor .anchor-peak-crown:hover{
            color: #f9a84b;
        }

.anchor-anchor .anchor-trough{
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }