:root {
  --accent: #3c74db;
  --accent-glow: rgba(60, 116, 219, 0.35);
  --accent-light: #5b8ff9;
  --accent-dark: #1e4bb5;
  --bg-dark: #090c15;
  --bg-surface: #111728;
  --bg-elevated: #1a233a;
  --text-primary: #f0f4fd;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --radius-main: 22px;
  --border-glow: rgba(255, 255, 255, 0.08);
  --up-color: #00b578;
  --down-color: #ff4d4f;
}

* {
  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-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Base Paddock Root Wrapper */
.paddock-root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

/* Header Ribbon & Vault */
.ribbon {
  width: 100%;
  background: rgba(9, 12, 21, 0.85);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-glow);
}

.vault {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

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

.hoof {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s ease;
  word-break: break-word;
}

.hoof:hover,
.hoof.active {
  color: var(--text-primary);
}

.hoof.active {
  position: relative;
  font-weight: 600;
}

.hoof.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.thrust-steer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--accent-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.thrust-steer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* Main Container */
main {
  width: 100%;
  flex: 1;
}

/* Hero Crest Section */
.crest {
  padding: 90px 0 70px 0;
  background: radial-gradient(circle at 50% 15%, rgba(60, 116, 219, 0.22) 0%, rgba(9, 12, 21, 0) 65%);
  border-bottom: 1px solid var(--border-glow);
}

.strand-crest {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.corral-crest-info {
  flex: 1 1 500px;
  min-width: 0;
}

.sheath-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(60, 116, 219, 0.12);
  border: 1px solid rgba(60, 116, 219, 0.3);
  border-radius: 50px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.spark-crest {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glyph-crest {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.flock-crest {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.tether-crest {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(26, 35, 58, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 20px;
  border-radius: 16px;
}

.ticker-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(60, 116, 219, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.glyph-tether {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.flock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.charge-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-main);
  text-decoration: none;
  box-shadow: 0 16px 32px var(--accent-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.charge-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.nudge-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-main);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nudge-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Visualizer Depth Chart Mockup */
.corral-visual {
  flex: 1 1 500px;
  min-width: 0;
}

.plaque-depth {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-main);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.plaque-depth-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spark-depth {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sheath-live {
  font-size: 0.75rem;
  background: rgba(0, 181, 120, 0.15);
  color: var(--up-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  border: 1px solid rgba(0, 181, 120, 0.3);
}

.flock-depth-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.slate-depth-side {
  flex: 1 1 200px;
  min-width: 0;
  background: var(--bg-dark);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.spark-side-head {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
}

.tether-depth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-family: monospace;
  padding: 4px 0;
  position: relative;
}

.sheath-depth-fill-buy {
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 2px;
  background: rgba(0, 181, 120, 0.12);
  border-radius: 3px;
  pointer-events: none;
}

.sheath-depth-fill-sell {
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  background: rgba(255, 77, 79, 0.12);
  border-radius: 3px;
  pointer-events: none;
}

.glyph-buy { color: var(--up-color); font-weight: 700; }
.glyph-sell { color: var(--down-color); font-weight: 700; }
.glyph-vol { color: var(--text-secondary); }

/* Execution Speed & Dark Pool Section */
.surge {
  padding: 90px 0;
  background: var(--bg-dark);
  position: relative;
}

.strand-standard {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.corral-corral-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.spark-corral {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.glyph-corral {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.flock-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.slab-feature {
  flex: 1 1 340px;
  min-width: 0;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-main);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.slab-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 116, 219, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
}

.ticker-pulse {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(60, 116, 219, 0.2) 0%, rgba(30, 75, 181, 0.1) 100%);
  border: 1px solid rgba(60, 116, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.spark-slab {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.glyph-slab {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sheath-metric {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.spark-metric-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.glyph-metric-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Options & Derivatives Article Section */
.apex {
  padding: 90px 0;
  background: radial-gradient(ellipse at bottom, rgba(26, 35, 58, 0.6) 0%, var(--bg-dark) 70%);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.strand-options {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.corral-options-strand {
  flex: 1 1 500px;
  min-width: 0;
}

.slate-options-visual {
  flex: 1 1 500px;
  min-width: 0;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-main);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flock-greeks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tether-greek {
  flex: 1 1 100px;
  background: rgba(9, 12, 21, 0.6);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.glyph-greek-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.spark-greek-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Smart Orders Div Block */
.corral-smart {
  padding: 90px 0;
  background: var(--bg-dark);
}

.flock-orders-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.plaque-order {
  flex: 1 1 360px;
  min-width: 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(17, 23, 40, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-main);
  padding: 32px;
}

.sheath-order-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ticker-order {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(60, 116, 219, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

/* Footer Crown & Soil */
.crown {
  background: #05070d;
  border-top: 1px solid var(--border-glow);
  padding: 70px 0 40px 0;
  margin-top: auto;
}

.soil {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.flock-crown {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

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

.spark-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.glyph-brand {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.corral-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spark-col {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hoof-crown {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.hoof-crown:hover {
  color: var(--text-primary);
}

.bedrock {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.glyph-glyph {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .spark-crest {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .steer {
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  .beacon {
    gap: 16px;
    width: 100%;
    justify-content: center;
  }
  .thrust-steer {
    width: 100%;
  }
  .crest {
    padding: 50px 0 40px 0;
  }
  .spark-crest {
    font-size: 2.2rem;
  }
  .surge,
  .apex,
  .corral-smart {
    padding: 50px 0;
  }
  .flock-cards,
  .flock-orders-grid {
    flex-direction: column;
  }
}

.steer-ribbon {
    word-break: keep-all;
}
.steer-ribbon,
.steer-ribbon *,
.steer-ribbon *::before,
.steer-ribbon *::after {
    box-sizing: border-box;
}

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

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

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

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

.steer-ribbon a.steer-hoof {
    --aisite-shell-nav-padding: 8px 18px;
    --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;
}

.steer-ribbon a.steer-hoof,
.steer-ribbon a.steer-hoof:hover,
.steer-ribbon a.steer-hoof:focus,
.steer-ribbon a.steer-hoof:active,
.steer-ribbon a.steer-hoof.active,
.steer-ribbon a.steer-hoof[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);
}

.steer-ribbon .steer-vault{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.steer-ribbon{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 12, 21, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.steer-ribbon .steer-steer{
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.steer-ribbon .steer-horn{
            display: flex;
            align-items: center;
        }

.steer-ribbon .steer-horn img{
            height: 36px;
            width: auto;
            display: block;
        }

.steer-ribbon .steer-beacon{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.steer-ribbon .steer-hoof{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 99px;
            transition: all 0.15s ease;
            word-break: break-word;
        }

.steer-ribbon .steer-hoof:hover{
            color: #f0f4fd;
            background: rgba(255, 255, 255, 0.05);
        }

.steer-ribbon .steer-hoof.active{
            color: #ffffff;
            background: #3c74db;
            box-shadow: 0 0 15px rgba(60, 116, 219, 0.35);
        }

.steer-ribbon .steer-thrust-steer{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3c74db 0%, #2557b8 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 99px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 14px rgba(60, 116, 219, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

.steer-ribbon .steer-thrust-steer:hover{
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(60, 116, 219, 0.4);
        }

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

.steer-ribbon .steer-beacon{
                justify-content: center;
            }}

.steer-ribbon {
    background: rgb(9, 12, 21);
    background-image: none;
}

.trough-strand {
    word-break: keep-all;
}
.trough-strand,
.trough-strand *,
.trough-strand *::before,
.trough-strand *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.trough-strand{
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

.trough-strand .trough-vault{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.trough-strand .trough-ribbon{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 12, 21, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-steer{
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.trough-strand .trough-horn{
            display: flex;
            align-items: center;
        }

.trough-strand .trough-horn img{
            height: 36px;
            width: auto;
            display: block;
        }

.trough-strand .trough-beacon{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.trough-strand .trough-hoof{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 99px;
            transition: all 0.15s ease;
            word-break: break-word;
        }

.trough-strand .trough-hoof:hover{
            color: #f0f4fd;
            background: rgba(255, 255, 255, 0.05);
        }

.trough-strand .trough-hoof.active{
            color: #ffffff;
            background: #3c74db;
            box-shadow: 0 0 15px rgba(60, 116, 219, 0.35);
        }

.trough-strand .trough-thrust-steer{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3c74db 0%, #2557b8 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 99px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 14px rgba(60, 116, 219, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

.trough-strand .trough-thrust-steer:hover{
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(60, 116, 219, 0.4);
        }

.trough-strand .trough-paddock{
            flex: 1;
        }

.trough-strand .trough-crest{
            position: relative;
            padding: 110px 0 80px 0;
            text-align: center;
            background: radial-gradient(circle at 50% 20%, rgba(60, 116, 219, 0.18) 0%, rgba(9, 12, 21, 0) 70%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

.trough-strand .trough-crest::before{
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(60, 116, 219, 0.25) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
            filter: blur(50px);
        }

.trough-strand .trough-surge-corral{
            max-width: 1050px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

.trough-strand .trough-sheath-pulse{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(60, 116, 219, 0.12);
            border: 1px solid rgba(60, 116, 219, 0.4);
            padding: 6px 18px;
            border-radius: 99px;
            margin-bottom: 28px;
        }

.trough-strand .trough-glyph-pulse{
            font-size: 13px;
            font-weight: 600;
            color: #5b8ff9;
            letter-spacing: 0.5px;
        }

.trough-strand .trough-spark-crest{
            font-size: clamp(2.8rem, 6vw, 4.8rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #c4d7fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

.trough-strand .trough-glyph-crest{
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 820px;
            margin: 0 auto 40px auto;
            line-height: 1.7;
            word-break: break-word;
        }

.trough-strand .trough-flock-actions{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

.trough-strand .trough-charge-crest{
            background: linear-gradient(135deg, #3c74db 0%, #1e4bb5 100%);
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            padding: 16px 42px;
            border-radius: 22px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

.trough-strand .trough-charge-crest:hover{
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 35px rgba(60, 116, 219, 0.6);
        }

.trough-strand .trough-nudge-secondary{
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #f0f4fd;
            font-size: 16px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 22px;
            text-decoration: none;
            transition: all 0.15s ease;
        }

.trough-strand .trough-nudge-secondary:hover{
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

.trough-strand .trough-flock-bullets{
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

.trough-strand .trough-tether-bullet{
            display: flex;
            align-items: center;
            gap: 10px;
            color: #94a3b8;
            font-size: 15px;
            font-weight: 500;
            background: rgba(17, 23, 40, 0.6);
            padding: 10px 20px;
            border-radius: 99px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            min-width: 0;
        }

.trough-strand .trough-ticker-check{
            width: 20px;
            height: 20px;
            color: #5b8ff9;
            flex-shrink: 0;
        }

.trough-strand .trough-slate-proof{
            padding: 90px 0;
            background: #111728;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }

.trough-strand .trough-apex-intro{
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

.trough-strand .trough-spark-corral{
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
            letter-spacing: -0.5px;
            word-break: break-word;
        }

.trough-strand .trough-glyph-corral{
            font-size: 1.1rem;
            color: #94a3b8;
            line-height: 1.7;
            word-break: break-word;
        }

.trough-strand .trough-flock-metrics{
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

.trough-strand .trough-plaque-stat{
            flex: 1;
            min-width: 280px;
            background: #1a233a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.15s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

.trough-strand .trough-plaque-stat::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3c74db, transparent);
            opacity: 0;
            transition: all 0.15s ease;
        }

.trough-strand .trough-plaque-stat:hover{
            transform: translateY(-5px);
            border-color: rgba(60, 116, 219, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
        }

.trough-strand .trough-plaque-stat:hover::before{
            opacity: 1;
        }

.trough-strand .trough-spark-metric{
            font-size: 3.2rem;
            font-weight: 800;
            color: #5b8ff9;
            line-height: 1.1;
            margin-bottom: 12px;
            font-family: Consolas, Monaco, monospace;
        }

.trough-strand .trough-spark-stat-spark{
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

.trough-strand .trough-glyph-stat-desc{
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
        }

.trough-strand .trough-slab-architecture-detail{
            background: rgba(9, 12, 21, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

.trough-strand .trough-strand-arch-glyph{
            flex: 1;
            min-width: 300px;
        }

.trough-strand .trough-spark-subhead{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

.trough-strand .trough-glyph-paragraph{
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

.trough-strand .trough-strand-arch-visual{
            flex: 1;
            min-width: 300px;
            background: #090c15;
            border: 1px solid rgba(60, 116, 219, 0.4);
            border-radius: 12px;
            padding: 24px;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
        }

.trough-strand .trough-sheath-code-ribbon{
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 13px;
            color: #64748b;
            font-family: monospace;
        }

.trough-strand .trough-glyph-code{
            font-family: Consolas, Monaco, "Courier New", monospace;
            font-size: 13.5px;
            color: #a5d6ff;
            line-height: 1.7;
        }

.trough-strand .trough-glyph-code span.green{ color: #00c087; }

.trough-strand .trough-glyph-code span.yellow{ color: #f2c94c; }

.trough-strand .trough-matrix-detail{
            padding: 100px 0;
            background: #090c15;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-flock-cards{
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 70px;
        }

.trough-strand .trough-slab-market{
            flex: 1;
            min-width: 320px;
            background: #111728;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 36px;
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
        }

.trough-strand .trough-slab-market:hover{
            transform: translateY(-6px);
            border-color: rgba(60, 116, 219, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
        }

.trough-strand .trough-ticker-pulse{
            width: 52px;
            height: 52px;
            background: rgba(60, 116, 219, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #5b8ff9;
            border: 1px solid rgba(60, 116, 219, 0.3);
        }

.trough-strand .trough-spark-slab-spark{
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

.trough-strand .trough-glyph-slab-desc{
            color: #94a3b8;
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 24px;
            flex-grow: 1;
        }

.trough-strand .trough-flock-gild{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

.trough-strand .trough-tether-tether{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #f0f4fd;
        }

.trough-strand .trough-hoof-slab-hoof{
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #5b8ff9;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.15s ease;
            margin-top: auto;
        }

.trough-strand .trough-hoof-slab-hoof:hover{
            gap: 10px;
            color: #ffffff;
        }

.trough-strand .trough-paddock-topics{
            background: linear-gradient(180deg, #1a233a 0%, #111728 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 48px;
        }

.trough-strand .trough-spark-topic-corral{
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 36px;
            text-align: center;
        }

.trough-strand .trough-flock-topic-grid{
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

.trough-strand .trough-plaque-topic{
            flex: 1;
            min-width: 260px;
            background: rgba(9, 12, 21, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.15s ease;
        }

.trough-strand .trough-plaque-topic:hover{
            border-color: #3c74db;
            background: rgba(9, 12, 21, 0.9);
        }

.trough-strand .trough-spark-topic-spark{
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.trough-strand .trough-glyph-topic-summary{
            font-size: 0.92rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 18px;
        }

.trough-strand .trough-flock-capability{
            padding: 100px 0;
            background: radial-gradient(ellipse at bottom, rgba(60, 116, 219, 0.15) 0%, rgba(9, 12, 21, 1) 70%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-corral-community{
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

.trough-strand .trough-strand-community-strand{
            flex: 1;
            min-width: 320px;
        }

.trough-strand .trough-strand-community-cards{
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.trough-strand .trough-slate-social-feed{
            background: #111728;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.15s ease;
        }

.trough-strand .trough-slate-social-feed:hover{
            border-color: rgba(60, 116, 219, 0.4);
            transform: translateX(6px);
        }

.trough-strand .trough-sheath-user-head{
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

.trough-strand .trough-ticker-avatar{
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3c74db, #9b51e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #ffffff;
            font-size: 14px;
        }

.trough-strand .trough-glyph-user-name{
            font-weight: 600;
            color: #ffffff;
            font-size: 15px;
        }

.trough-strand .trough-glyph-user-tag{
            font-size: 12px;
            color: #5b8ff9;
            background: rgba(60, 116, 219, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
        }

.trough-strand .trough-glyph-post{
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.6;
        }

.trough-strand .trough-crown{
            background: #090c15;
            padding: 70px 0 40px 0;
            color: #64748b;
            font-size: 14px;
        }

.trough-strand .trough-bedrock-top{
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-strand-brand-info{
            max-width: 360px;
        }

.trough-strand .trough-spark-brand-name{
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

.trough-strand .trough-glyph-crown-desc{
            color: #64748b;
            line-height: 1.7;
            font-size: 0.92rem;
        }

.trough-strand .trough-flock-crown-links{
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

.trough-strand .trough-strand-crown-col{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.trough-strand .trough-spark-crown-head{
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

.trough-strand .trough-hoof-crown{
            color: #64748b;
            text-decoration: none;
            transition: all 0.15s ease;
        }

.trough-strand .trough-hoof-crown:hover{
            color: #5b8ff9;
        }

.trough-strand .trough-soil-bottom{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }

@media (max-width: 992px){.trough-strand .trough-flock-metrics, .trough-strand .trough-flock-cards, .trough-strand .trough-flock-topic-grid{
                flex-direction: column;
            }

.trough-strand .trough-slab-architecture-detail, .trough-strand .trough-corral-community{
                flex-direction: column;
            }}

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

.trough-strand .trough-beacon{
                justify-content: center;
            }

.trough-strand .trough-spark-crest{
                font-size: 2.5rem;
            }

.trough-strand .trough-crest{
                padding: 60px 0 40px 0;
            }

.trough-strand .trough-flock-actions{
                flex-direction: column;
                width: 100%;
            }

.trough-strand .trough-charge-crest, .trough-strand .trough-nudge-secondary{
                width: 100%;
                text-align: center;
                justify-content: center;
            }}