:root {
  /* Pure white + cool neutrals */
  --white:        #FFFFFF;
  --bg-subtle:    #F7F8FA;
  --bg-soft:      #FAFBFC;

  /* Orange — primary accent */
  --orange:       #F76F2C;
  --orange-hot:   #FF8340;
  --orange-deep:  #D94F0F;
  --orange-soft:  #FFEADD;
  --orange-mist:  #FFF5EE;

  /* Navy / ink */
  --navy:         #0A2540;
  --navy-mid:     #1B3A61;
  --navy-soft:    #3A5579;
  --ink:          #14181F;
  --slate:        #4E5866;
  --mute:         #8892A0;

  /* Cool lines — paired with white, not cream */
  --line:         #E5E8EC;
  --line-soft:    #EEF0F3;
  --line-strong:  #D4D9DF;

  --green:        #12A670;
  --green-soft:   #DCF4EA;
  --red:          #D93838;
  --red-soft:     #FCE4E4;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --max: 1340px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.04);
  --shadow-md: 0 6px 24px rgba(10,37,64,0.06);
  --shadow-lg: 0 16px 48px rgba(10,37,64,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.gold{
    color: #C6A15B !important;
}
img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

::selection { background: var(--orange); color: #fff; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}

/* ============================================================
   INLAY BORDER — navy outer, orange inner fillet
   Classical picture-frame treatment.
   ============================================================ */
.inlay {
  position: relative;
  border: 2px solid var(--navy);
  background: var(--white);
}
.inlay::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--orange);
  pointer-events: none;
  z-index: 0;
}
.inlay > * { position: relative; z-index: 1; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #C6A15B;
  color: #fff;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ticker-track {
  display: flex; gap: 42px;
  white-space: nowrap;
  animation: ticker-scroll 90s linear infinite;
  padding-left: 42px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item { color: rgba(255,255,255,0.78); }
.ticker-item .sym { color: #fff; font-weight: 500; margin-right: 8px; }
.ticker-item .up   { color: #4ADE97; }
.ticker-item .down { color: #FF8585; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.cell-hero-text{
  font-size: 14px !important;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-mark {
  display: flex; align-items: center; gap: 14px;
  color: white;
}
.logo-hex { width: 34px; height: 38px; display: block; }
.logo-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 20;
  color: white;
}
.logo-wordmark em {
  color: var(--orange);
  font-style: italic;
  font-variation-settings: "SOFT" 60;
}
.nav-links {
  display: flex; gap: 36px;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--navy);
  font-weight: 500;
}
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 220ms ease;
}
.nav-links a:hover { color: #C6A15B; }
.nav-links a:hover::after { width: 100%; }



.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}




/* =========================
   LOGIN MODAL (QUINTIC STYLE)
========================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.45);
  backdrop-filter: blur(6px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal-box {
  width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  position: relative;
}

.modal-box::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--orange);
  pointer-events: none;
}

.modal-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  font-size: 18px;
  color: var(--mute);
}

.modal-close:hover {
  color: var(--orange);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  padding: 14px 14px;
  font-family: var(--sans);
  font-size: 14px;
}

.modal-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.modal-form button {
  margin-top: 10px;
}
.form-status {
  display: none;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 10px;
  border: 1px solid;
}

.form-status.success {
  display: block;
  background: rgba(18,166,112,0.08);
  border-color: rgba(18,166,112,0.2);
  color: #0a7a32;
}

.form-status.error {
  display: block;
  background: rgba(217,56,56,0.08);
  border-color: rgba(217,56,56,0.2);
  color: #b00020;
}
.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  padding-right: 40px;
}

.eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  opacity: 0.6;
}

.eye-toggle:hover {
  opacity: 1;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: all 220ms ease;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(247,111,44,0.22);
}
.nav-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(247,111,44,0.32);
}
.nav-cta .arr { transition: transform 200ms ease; }
.nav-cta:hover .arr { transform: translateX(3px); }
/* NAV ACTIONS WRAPPER */
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* BASE BUTTON */
.nav-btn {
  height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 200ms ease;
}

/* LOGIN (GHOST) */
/*  */

/* SIGNUP (PRIMARY) */
.nav-btn.primary {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  box-shadow: 0 4px 12px rgba(247,111,44,0.22);
}

.nav-btn.primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

@media (max-width: 600px) {

  .nav-inner {
    padding: 14px 20px;
  }

  .nav-actions {
    width: 100%;
    margin-top: 10px;
  }

  /* Stack buttons */
  .nav-actions {
    flex-direction: column;
    gap: 8px;
  }

  .nav-btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

}
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: white !important;
}

/* MOBILE NAV */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0e0d0d;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    display: none;
    border-bottom: 1px solid #eee;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-btn {
    width: 100%;
    height: 44px;
  }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 70px 0 0;
  background: var(--white);
  overflow: hidden;
}
.hero-top {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 900ms ease 0.1s forwards;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(247,111,44,0.6);
  animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(247,111,44,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(247,111,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,111,44,0); }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-size: clamp(48px, 7.4vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 32px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1100ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .line-2 > span { animation-delay: 180ms; }
.hero h1 .line-3 > span { animation-delay: 320ms; }
.hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  max-width: 46ch;
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 900ms ease 0.7s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 900ms ease 0.9s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: -0.005em;
  font-weight: 500;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 220ms ease;
  border-radius: 2px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(247,111,44,0.22);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247,111,44,0.32);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-ghost:hover { background: white; color: #fff; transform: translateY(-2px); }
.btn .arr { transition: transform 220ms ease; }
.btn:hover .arr { transform: translateX(4px); }

.hero-illo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1200ms ease 0.4s forwards;
}

/* ============================================================
   WALL STREET SCENE — subtle off-white backdrop
   ============================================================ */
.scene {
  position: relative;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-subtle) 100%);
}
.scene-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
}
.walker { will-change: transform; }
.walker-right { animation: walk-right linear infinite; }
.walker-left  { animation: walk-left  linear infinite; }
@keyframes walk-right {
  from { transform: translateX(-200px); }
  to   { transform: translateX(1700px); }
}
@keyframes walk-left {
  from { transform: translateX(1700px) scaleX(-1); }
  to   { transform: translateX(-200px) scaleX(-1); }
}
.walker .body { animation: bob 0.6s ease-in-out infinite; transform-origin: bottom center; }
.walker .leg-front { animation: legA 0.6s ease-in-out infinite; transform-origin: top center; }
.walker .leg-back  { animation: legB 0.6s ease-in-out infinite; transform-origin: top center; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-1.5px); }
}
@keyframes legA {
  0%,100% { transform: rotate(-18deg); }
  50%     { transform: rotate(18deg); }
}
@keyframes legB {
  0%,100% { transform: rotate(18deg); }
  50%     { transform: rotate(-18deg); }
}
.flag {
  transform-origin: left center;
  animation: flag 3s ease-in-out infinite;
}
@keyframes flag {
  0%,100% { transform: skewX(0deg); }
  50%     { transform: skewX(-4deg); }
}

/* ============================================================
   HERO STATS — with inlay treatment
   ============================================================ */
.hero-stats-wrap {
  position: relative;
  z-index: 5;
  max-width: var(--max);
  margin: -30px auto 0;
  padding: 0 40px 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px;                         /* inlay gap */
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.hero-stats .cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.hero-stats .cell:last-child { border-right: none; }
.hero-stat .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.hero-stat .value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-stat .value em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 70;
}
@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .cell:nth-child(2) { border-right: none; }
  .hero-stats .cell:nth-child(1),
  .hero-stats .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .hero-stat .value { font-size: 34px; }
}

/* ============================================================
   SECTION
   ============================================================ */
section {
  padding: 70px 0;
  position: relative;
}
section.white  { background: var(--white); }
section.subtle { background: var(--bg-subtle); }
section.navy   { background: var(--navy); color: #fff; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange-deep);
  text-transform: uppercase;
  font-weight: 500;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 18ch;
}
.section-head h2 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.section.navy .section-head h2 { color: #fff; }
.section-head .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 54ch;
}
.section.navy .section-head .lead { color: rgba(255,255,255,0.8); }

@media (max-width: 800px) {
  section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ============================================================
   THESIS — pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 36px 40px;
  position: relative;
  transition: all 280ms ease;
  border-radius: 2px;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.pillar:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 56px; height: 56px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  display: grid; place-items: center;
  margin-bottom: 28px;
  border-radius: 2px;
}
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange-deep);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 16px;
}
.pillar h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.pillar p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   PULL QUOTE — with inlay border
   ============================================================ */
.pullquote {
  margin-top: 120px;
  padding: 98px 60px;
  text-align: center;
}
.pullquote .mark {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--orange);
  position: absolute;
  top: 40px;
  left: 50px;
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  opacity: 0.28;
  z-index: 2;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 28ch;
  margin: 0 auto;
}
.pullquote blockquote em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.pullquote cite {
  display: block;
  margin-top: 36px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================
   DRAVIK
   ============================================================ */
.DRAVIK-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .DRAVIK-wrap { grid-template-columns: 1fr; gap: 56px; } }

.DRAVIK-intro h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 24px;
}
.DRAVIK-intro h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.DRAVIK-intro p {
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.DRAVIK-targets {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--orange-mist);
  border-left: 3px solid var(--orange);
  border-radius: 2px;
}
.DRAVIK-target .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.DRAVIK-target .value {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.DRAVIK-target .value em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 70;
}
.DRAVIK-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.DRAVIK-layer {
  display: grid;
  grid-template-columns: 64px 140px 1fr;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  gap: 20px;
  align-items: center;
  border-radius: 2px;
  transition: all 260ms ease;
  position: relative;
  overflow: hidden;
}
.DRAVIK-layer::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms ease;
}
.DRAVIK-layer:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.DRAVIK-layer:hover::before { transform: scaleY(1); }

.DRAVIK-layer .icon {
  width: 44px; height: 44px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  display: grid; place-items: center;
  border-radius: 2px;
}
.DRAVIK-layer .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}
.DRAVIK-layer h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 20px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 4px;
}
.DRAVIK-layer p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .DRAVIK-layer { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .DRAVIK-layer .tag { display: block; margin-bottom: 4px; }
  .DRAVIK-layer .icon { grid-row: span 2; }
}

/* ============================================================
   LIVE FEED
   ============================================================ */
.feed-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feed-head .left { display: flex; align-items: center; gap: 10px; }
.feed-head .left strong { color: var(--orange-hot); font-weight: 500; }
.feed-head .right { color: rgba(255,255,255,0.7); font-weight: 400; }

.feed-cols {
  display: grid;
  grid-template-columns: 130px 90px 100px 1fr 90px 80px;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-subtle);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.feed-rows { list-style: none; }
.feed-row {
  display: grid;
  grid-template-columns: 130px 90px 100px 1fr 90px 80px;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 13px;
  align-items: center;
  transition: background 200ms ease;
}
.feed-row:hover { background: var(--orange-mist); }
.feed-row.new { animation: rowIn 600ms ease; }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-6px); background: var(--orange-soft); }
  to   { opacity: 1; transform: translateY(0);    background: transparent; }
}
.feed-row .ts   { color: var(--mute); font-size: 12px; }
.feed-row .sym  { font-weight: 500; color: var(--navy); }
.feed-row .sig  {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  width: fit-content;
}
.feed-row .sig.long  { background: var(--green-soft); color: var(--green); }
.feed-row .sig.short { background: var(--red-soft);   color: var(--red); }
.feed-row .sig.watch { background: var(--orange-soft); color: var(--orange-deep); }
.feed-row .desc  { color: var(--slate); font-family: var(--sans); font-size: 14px; }
.feed-row .conf  { color: var(--navy); font-weight: 500; }
.feed-row .horiz { color: var(--mute); font-size: 11px; }
.feed-footer {
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  border-top: 1px solid var(--line);
  background: var(--bg-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 800px) {
  .feed-cols, .feed-row {
    grid-template-columns: 80px 60px 1fr 60px;
    font-size: 12px;
    padding: 12px 16px;
  }
  .feed-cols .desc-col, .feed-row .desc,
  .feed-cols .horiz-col, .feed-row .horiz { display: none; }
}

/* ============================================================
   TRACK RECORD — gated access
   ============================================================ */
.track-gate {
  padding: 80px 60px 72px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.gate-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  display: grid; place-items: center;
  border-radius: 2px;
}
.gate-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
  margin-bottom: 24px;
}
.gate-title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 auto 24px;
  max-width: 22ch;
}
.gate-title em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.gate-body {
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto 44px;
}
.gate-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 auto 44px;
  max-width: 740px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gate-metric {
  border-right: 1px solid var(--line);
  padding: 0 12px;
}
.gate-metric:last-child { border-right: none; }
.metric-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
  font-weight: 500;
}
.metric-value {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 70;
}
.gate-cta {
  padding: 18px 36px;
  font-size: 14px;
}
.gate-foot {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--mute);
  font-weight: 500;
  text-transform: uppercase;
}
.gate-foot .seal {
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .track-gate { padding: 56px 28px 52px; }
  .gate-metrics { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
  .gate-metric {
    padding: 16px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gate-metric:nth-child(2n) { border-right: none; }
  .gate-metric:nth-child(5) { grid-column: span 2; border-right: none; border-bottom: none; }
  .gate-metric:nth-child(4) { border-bottom: none; }
  .metric-value { font-size: 22px; }
}

/* ============================================================
   INSIGHTS — editorial only, no photos
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.insight {
  padding: 48px 40px 48px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 250ms ease;
  cursor: pointer;
  position: relative;
}
.insight:last-child { border-right: none; }
.insight:hover { background: var(--bg-soft); }
.insight::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 400ms cubic-bezier(.2,.7,.2,1);
}
.insight:hover::before { width: 100%; }

.insight-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}
.insight-tag .bar { width: 20px; height: 2px; background: var(--orange); }

.insight-issue {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.insight h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.insight h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.insight p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}
.insight-rule {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.insight-meta .more {
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.insight-meta .more .arr { transition: transform 220ms ease; }
.insight:hover .more .arr { transform: translateX(5px); }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight { border-right: none; border-bottom: 1px solid var(--line); }
  .insight:last-child { border-bottom: none; }
}

/* ============================================================
   INVESTOR RELATIONS
   ============================================================ */
.ir-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .ir-wrap { grid-template-columns: 1fr; gap: 48px; } }

.ir-left .eyebrow { margin-bottom: 24px; color: var(--orange-hot); }
.ir-left h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.ir-left h2 em {
  font-style: italic;
  color: var(--orange-hot);
  font-variation-settings: "SOFT" 80;
}
.ir-left p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 20px;
}

/* IR card with inlay */
.ir-card {
  padding: 54px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.ir-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
  display: block;
  font-weight: 500;
}
.ir-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
}
.ir-card h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.ir-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ir-term .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
  font-weight: 500;
}
.ir-term .value {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ir-form { display: flex; flex-direction: column; gap: 12px; }
.ir-form .row { display: flex; gap: 12px; }
.ir-form input, .ir-form textarea {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color 180ms ease, background 180ms ease;
  border-radius: 2px;
}
.ir-form input::placeholder, .ir-form textarea::placeholder { color: var(--mute); }
.ir-form input:focus, .ir-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.ir-form textarea { min-height: 90px; resize: vertical; font-family: var(--sans); }
.ir-form .submit { margin-top: 8px; align-self: flex-start; }
.ir-form .note {
  font-size: 12px;
  color: var(--mute);
  margin-top: 12px;
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 80px 0 36px;
  background: #071014;
  color: #fff;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .logo-mark { margin-bottom: 20px; color: #fff; }
.foot-brand .logo-wordmark { color: #fff; }
.foot-brand .logo-wordmark em { color: var(--orange-hot); }
.foot-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 40ch;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.foot-col a:hover { color: var(--orange-hot); }
.foot-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.65;
}
.foot-bottom .legal { max-width: 80ch; }
.foot-bottom .copy { white-space: nowrap; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }


/* TABS */
.tabs {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.tab {
  padding: 10px 16px;
  border: 1px solid #222;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  border-radius: 6px;
}

.tab.active {
  background: #fff;
  color: #000;
}

/* TAB CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* NEWS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.news-card {
  background: #12141a;
  border: 1px solid #222;
  padding: 16px;
  border-radius: 10px;
}

.news-card h4 {
  margin-bottom: 10px;
}

.news-card span {
  font-size: 12px;
  color: #888;
}

/* NEWSLETTER */
.newsletter {
  text-align: center;
  padding: 40px 0;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  width: 250px;
  border-radius: 6px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
}

.newsletter-form button {
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

:root {
  /* Pure white + cool neutrals */
  --white:        #FFFFFF;
  --bg-subtle:    #F7F8FA;
  --bg-soft:      #FAFBFC;

  /* Orange — primary accent */
  --orange:       #F76F2C;
  --orange:       #C6A15B;
  --orange-hot:   #FF8340;
  --orange-deep:  #D94F0F;
  --orange-soft:  #FFEADD;
  --orange-mist:  #FFF5EE;

  /* Navy / ink */
  --navy:         #0A2540;
  --navy-mid:     #1B3A61;
  --navy-soft:    #3A5579;
  --ink:          #14181F;
  --slate:        #4E5866;
  --mute:         #8892A0;

  /* Cool lines — paired with white, not cream */
  --line:         #E5E8EC;
  --line-soft:    #EEF0F3;
  --line-strong:  #D4D9DF;

  --green:        #12A670;
  --green-soft:   #DCF4EA;
  --red:          #D93838;
  --red-soft:     #FCE4E4;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --max: 1340px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.04);
  --shadow-md: 0 6px 24px rgba(10,37,64,0.06);
  --shadow-lg: 0 16px 48px rgba(10,37,64,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

::selection { background: var(--orange); color: #fff; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}

/* ============================================================
   INLAY BORDER — navy outer, orange inner fillet
   Classical picture-frame treatment.
   ============================================================ */
.inlay {
  position: relative;
  border: 2px solid var(--navy);
  background: var(--white);
}
.inlay::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--orange);
  pointer-events: none;
  z-index: 0;
}
.inlay > * { position: relative; z-index: 1; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #C6A15B;
  color: #fff;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ticker-track {
  display: flex; gap: 42px;
  white-space: nowrap;
  animation: ticker-scroll 90s linear infinite;
  padding-left: 42px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item { color: rgba(255,255,255,0.78); }
.ticker-item .sym { color: #fff; font-weight: 500; margin-right: 8px; }
.ticker-item .up   { color: #4ADE97; }
.ticker-item .down { color: #FF8585; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(24, 24, 24, 0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav{

    position:sticky;

    top:0;

    z-index:90;

    background:
    linear-gradient(
    180deg,
    rgba(6, 8, 11, 0.78),
    rgba(7,16,20,.68)
    );

    backdrop-filter:
    blur(30px)
    saturate(180%);

    -webkit-backdrop-filter:
    blur(30px)
    saturate(180%);

    border-bottom:
    1px solid
    rgba(255,255,255,.08);

    box-shadow:
    0 10px 40px
    rgba(0,0,0,.25);

    position:sticky;

}

.nav::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
    );

}

.nav::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(198,161,91,.12),
    transparent
    );

}
.cell-hero-text{
  font-size: 14px !important;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-mark {
  display: flex; align-items: center; gap: 14px;
  color: var(--navy);
}
.logo-hex { width: 34px; height: 38px; display: block; }
.logo-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 20;
  color: white;
}
.logo-wordmark em {
  color: var(--orange);
  font-style: italic;
  font-variation-settings: "SOFT" 60;
}
.nav-links {
  display: flex; gap: 36px;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: white;
  font-weight: 500;
}
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: #C6A15B;
  transition: width 220ms ease;
}
.nav-links a:hover { color: #C6A15B; }
.nav-links a:hover::after { width: 100%; }



.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}




/* =========================
   LOGIN MODAL (QUINTIC STYLE)
========================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.45);
  backdrop-filter: blur(6px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal-box {
  width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  position: relative;
}

.modal-box::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--orange);
  pointer-events: none;
}

.modal-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  font-size: 18px;
  color: var(--mute);
}

.modal-close:hover {
  color: var(--orange);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  padding: 14px 14px;
  font-family: var(--sans);
  font-size: 14px;
}

.modal-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.modal-form button {
  margin-top: 10px;
}
.form-status {
  display: none;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 10px;
  border: 1px solid;
}

.form-status.success {
  display: block;
  background: rgba(18,166,112,0.08);
  border-color: rgba(18,166,112,0.2);
  color: #0a7a32;
}

.form-status.error {
  display: block;
  background: rgba(217,56,56,0.08);
  border-color: rgba(217,56,56,0.2);
  color: #b00020;
}
.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  padding-right: 40px;
}

.eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  opacity: 0.6;
}

.eye-toggle:hover {
  opacity: 1;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: all 220ms ease;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(247,111,44,0.22);
}
.nav-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(247,111,44,0.32);
}
.nav-cta .arr { transition: transform 200ms ease; }
.nav-cta:hover .arr { transform: translateX(3px); }
/* NAV ACTIONS WRAPPER */
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* BASE BUTTON */
.nav-btn {
  height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 200ms ease;
}

/* LOGIN (GHOST) */
.nav-btn.ghost {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.nav-btn.ghost:hover {
  background: #C6A15B;
  color: #fff;
}

/* SIGNUP (PRIMARY) */
.nav-btn.primary {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  box-shadow: 0 4px 12px rgba(247,111,44,0.22);
}

.nav-btn.primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .container {
  
  padding: 0 20px;
}
  .nav-inner {
    padding: 14px 20px;
  }

  .nav-actions {
    width: 100%;
    margin-top: 10px;
  }

  /* Stack buttons */
  .nav-actions {
    flex-direction: column;
    gap: 8px;
  }

  .nav-btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

}
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .container {
  padding: 0 20px;
}
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    display: none;
    border-bottom: 1px solid #eee;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-btn {
    width: 100%;
    height: 44px;
  }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 70px 0 0;
  background: var(--white);
  overflow: hidden;
}
.hero-top {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 900ms ease 0.1s forwards;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(247,111,44,0.6);
  animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(247,111,44,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(247,111,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,111,44,0); }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-size: clamp(48px, 7.4vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 32px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1100ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .line-2 > span { animation-delay: 180ms; }
.hero h1 .line-3 > span { animation-delay: 320ms; }
.hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  max-width: 46ch;
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 900ms ease 0.7s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 900ms ease 0.9s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: -0.005em;
  font-weight: 500;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 220ms ease;
  border-radius: 2px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(247,111,44,0.22);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247,111,44,0.32);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn .arr { transition: transform 220ms ease; }
.btn:hover .arr { transform: translateX(4px); }

.hero-illo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1200ms ease 0.4s forwards;
}

/* ============================================================
   WALL STREET SCENE — subtle off-white backdrop
   ============================================================ */
.scene {
  position: relative;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-subtle) 100%);
}
.scene-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
}
.walker { will-change: transform; }
.walker-right { animation: walk-right linear infinite; }
.walker-left  { animation: walk-left  linear infinite; }
@keyframes walk-right {
  from { transform: translateX(-200px); }
  to   { transform: translateX(1700px); }
}
@keyframes walk-left {
  from { transform: translateX(1700px) scaleX(-1); }
  to   { transform: translateX(-200px) scaleX(-1); }
}
.walker .body { animation: bob 0.6s ease-in-out infinite; transform-origin: bottom center; }
.walker .leg-front { animation: legA 0.6s ease-in-out infinite; transform-origin: top center; }
.walker .leg-back  { animation: legB 0.6s ease-in-out infinite; transform-origin: top center; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-1.5px); }
}
@keyframes legA {
  0%,100% { transform: rotate(-18deg); }
  50%     { transform: rotate(18deg); }
}
@keyframes legB {
  0%,100% { transform: rotate(18deg); }
  50%     { transform: rotate(-18deg); }
}
.flag {
  transform-origin: left center;
  animation: flag 3s ease-in-out infinite;
}
@keyframes flag {
  0%,100% { transform: skewX(0deg); }
  50%     { transform: skewX(-4deg); }
}

/* ============================================================
   HERO STATS — with inlay treatment
   ============================================================ */
.hero-stats-wrap {
  position: relative;
  z-index: 5;
  max-width: var(--max);
  margin: -30px auto 0;
  padding: 0 40px 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px;                         /* inlay gap */
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.hero-stats .cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.hero-stats .cell:last-child { border-right: none; }
.hero-stat .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.hero-stat .value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-stat .value em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 70;
}
@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .cell:nth-child(2) { border-right: none; }
  .hero-stats .cell:nth-child(1),
  .hero-stats .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .hero-stat .value { font-size: 34px; }
}

/* ============================================================
   SECTION
   ============================================================ */
section {
  padding: 70px 0;
  position: relative;
}
section.white  { background: var(--white); }
section.subtle { background: var(--bg-subtle); }
section.navy   { background: var(--navy); color: #fff; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange-deep);
  text-transform: uppercase;
  font-weight: 500;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 18ch;
}
.section-head h2 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.section.navy .section-head h2 { color: #fff; }
.section-head .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 54ch;
}
.section.navy .section-head .lead { color: rgba(255,255,255,0.8); }

@media (max-width: 800px) {
  section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ============================================================
   THESIS — pillars
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 36px 40px;
  position: relative;
  transition: all 280ms ease;
  border-radius: 2px;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.pillar:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 56px; height: 56px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  display: grid; place-items: center;
  margin-bottom: 28px;
  border-radius: 2px;
}
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange-deep);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 16px;
}
.pillar h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.pillar p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   PULL QUOTE — with inlay border
   ============================================================ */
.pullquote {
  margin-top: 120px;
  padding: 98px 60px;
  text-align: center;
}
.pullquote .mark {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--orange);
  position: absolute;
  top: 40px;
  left: 50px;
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  opacity: 0.28;
  z-index: 2;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 28ch;
  margin: 0 auto;
}
.pullquote blockquote em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.pullquote cite {
  display: block;
  margin-top: 36px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================
   DRAVIK
   ============================================================ */
.DRAVIK-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .DRAVIK-wrap { grid-template-columns: 1fr; gap: 56px; } }

.DRAVIK-intro h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 24px;
}
.DRAVIK-intro h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.DRAVIK-intro p {
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.DRAVIK-targets {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--orange-mist);
  border-left: 3px solid var(--orange);
  border-radius: 2px;
}
.DRAVIK-target .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.DRAVIK-target .value {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.DRAVIK-target .value em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 70;
}
.DRAVIK-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.DRAVIK-layer {
  display: grid;
  grid-template-columns: 64px 140px 1fr;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  gap: 20px;
  align-items: center;
  border-radius: 2px;
  transition: all 260ms ease;
  position: relative;
  overflow: hidden;
}
.DRAVIK-layer::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms ease;
}
.DRAVIK-layer:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.DRAVIK-layer:hover::before { transform: scaleY(1); }

.DRAVIK-layer .icon {
  width: 44px; height: 44px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  display: grid; place-items: center;
  border-radius: 2px;
}
.DRAVIK-layer .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}
.DRAVIK-layer h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 20px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 4px;
}
.DRAVIK-layer p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .DRAVIK-layer { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .DRAVIK-layer .tag { display: block; margin-bottom: 4px; }
  .DRAVIK-layer .icon { grid-row: span 2; }
}

/* ============================================================
   LIVE FEED
   ============================================================ */
.feed-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feed-head .left { display: flex; align-items: center; gap: 10px; }
.feed-head .left strong { color: var(--orange-hot); font-weight: 500; }
.feed-head .right { color: rgba(255,255,255,0.7); font-weight: 400; }

.feed-cols {
  display: grid;
  grid-template-columns: 130px 90px 100px 1fr 90px 80px;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-subtle);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.feed-rows { list-style: none; }
.feed-row {
  display: grid;
  grid-template-columns: 130px 90px 100px 1fr 90px 80px;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 13px;
  align-items: center;
  transition: background 200ms ease;
}
.feed-row:hover { background: var(--orange-mist); }
.feed-row.new { animation: rowIn 600ms ease; }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-6px); background: var(--orange-soft); }
  to   { opacity: 1; transform: translateY(0);    background: transparent; }
}
.feed-row .ts   { color: var(--mute); font-size: 12px; }
.feed-row .sym  { font-weight: 500; color: var(--navy); }
.feed-row .sig  {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  width: fit-content;
}
.feed-row .sig.long  { background: var(--green-soft); color: var(--green); }
.feed-row .sig.short { background: var(--red-soft);   color: var(--red); }
.feed-row .sig.watch { background: var(--orange-soft); color: var(--orange-deep); }
.feed-row .desc  { color: var(--slate); font-family: var(--sans); font-size: 14px; }
.feed-row .conf  { color: var(--navy); font-weight: 500; }
.feed-row .horiz { color: var(--mute); font-size: 11px; }
.feed-footer {
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  border-top: 1px solid var(--line);
  background: var(--bg-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 800px) {
  .feed-cols, .feed-row {
    grid-template-columns: 80px 60px 1fr 60px;
    font-size: 12px;
    padding: 12px 16px;
  }
  .feed-cols .desc-col, .feed-row .desc,
  .feed-cols .horiz-col, .feed-row .horiz { display: none; }
}

/* ============================================================
   TRACK RECORD — gated access
   ============================================================ */
.track-gate {
  padding: 80px 60px 72px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.gate-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  display: grid; place-items: center;
  border-radius: 2px;
}
.gate-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
  margin-bottom: 24px;
}
.gate-title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 auto 24px;
  max-width: 22ch;
}
.gate-title em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.gate-body {
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto 44px;
}
.gate-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 auto 44px;
  max-width: 740px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gate-metric {
  border-right: 1px solid var(--line);
  padding: 0 12px;
}
.gate-metric:last-child { border-right: none; }
.metric-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
  font-weight: 500;
}
.metric-value {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 70;
}
.gate-cta {
  padding: 18px 36px;
  font-size: 14px;
}
.gate-foot {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--mute);
  font-weight: 500;
  text-transform: uppercase;
}
.gate-foot .seal {
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .track-gate { padding: 56px 28px 52px; }
  .gate-metrics { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
  .gate-metric {
    padding: 16px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gate-metric:nth-child(2n) { border-right: none; }
  .gate-metric:nth-child(5) { grid-column: span 2; border-right: none; border-bottom: none; }
  .gate-metric:nth-child(4) { border-bottom: none; }
  .metric-value { font-size: 22px; }
}

/* ============================================================
   INSIGHTS — editorial only, no photos
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.insight {
  padding: 48px 40px 48px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 250ms ease;
  cursor: pointer;
  position: relative;
}
.insight:last-child { border-right: none; }
.insight:hover { background: var(--bg-soft); }
.insight::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 400ms cubic-bezier(.2,.7,.2,1);
}
.insight:hover::before { width: 100%; }

.insight-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}
.insight-tag .bar { width: 20px; height: 2px; background: var(--orange); }

.insight-issue {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.insight h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.insight h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.insight p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}
.insight-rule {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.insight-meta .more {
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.insight-meta .more .arr { transition: transform 220ms ease; }
.insight:hover .more .arr { transform: translateX(5px); }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight { border-right: none; border-bottom: 1px solid var(--line); }
  .insight:last-child { border-bottom: none; }
}

/* ============================================================
   INVESTOR RELATIONS
   ============================================================ */
.ir-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .ir-wrap { grid-template-columns: 1fr; gap: 48px; } }

.ir-left .eyebrow { margin-bottom: 24px; color: var(--orange-hot); }
.ir-left h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "SOFT" 30;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.ir-left h2 em {
  font-style: italic;
  color: var(--orange-hot);
  font-variation-settings: "SOFT" 80;
}
.ir-left p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 20px;
}

/* IR card with inlay */
.ir-card {
  padding: 54px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.ir-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
  display: block;
  font-weight: 500;
}
.ir-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
}
.ir-card h3 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 80;
}
.ir-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ir-term .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
  font-weight: 500;
}
.ir-term .value {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ir-form { display: flex; flex-direction: column; gap: 12px; }
.ir-form .row { display: flex; gap: 12px; }
.ir-form input, .ir-form textarea {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color 180ms ease, background 180ms ease;
  border-radius: 2px;
}
.ir-form input::placeholder, .ir-form textarea::placeholder { color: var(--mute); }
.ir-form input:focus, .ir-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.ir-form textarea { min-height: 90px; resize: vertical; font-family: var(--sans); }
.ir-form .submit { margin-top: 8px; align-self: flex-start; }
.ir-form .note {
  font-size: 12px;
  color: var(--mute);
  margin-top: 12px;
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 80px 0 36px;
  background: #071014;
  color: #fff;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .logo-mark { margin-bottom: 20px; color: #fff; }
.foot-brand .logo-wordmark { color: #fff; }
.foot-brand .logo-wordmark em { color: var(--orange-hot); }
.foot-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 40ch;
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.foot-col a:hover { color: var(--orange-hot); }
.foot-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.65;
}
.foot-bottom .legal { max-width: 80ch; }
.foot-bottom .copy { white-space: nowrap; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }
.operations-theme {

  --accent:
  #2c8f7b;

}
.contact-form-wrap{
  max-width:900px;
  margin:0 auto;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#667085;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:16px;
  border:1px solid #E5E8EC;
  background:#fff;
  border-radius:8px;
  font-family:inherit;
  font-size:15px;
}

.form-group textarea{
  resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#F76F2C;
}

@media(max-width:768px){

  .form-row{
    grid-template-columns:1fr;
  }

}
.form-group input,
.form-group textarea{
  width:100%;
  padding:16px;
  border:2px solid #D6DCE3;
  background:#fff;
  border-radius:4px;
  font-family:inherit;
  font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#F76F2C;
}

.contact-form .btn{
  width:auto;
  align-self:flex-start;
}
#contactMessage{
  margin-top:16px;
}

.contact-alert{
  padding:14px 16px;
  border-radius:4px;
  font-size:14px;
}

.contact-alert.success{
  background:#ECFDF3;
  border:1px solid #ABEFC6;
  color:#067647;
}

.contact-alert.error{
  background:#FEF3F2;
  border:1px solid #FECDCA;
  color:#B42318;
}

#contactSubmitBtn:disabled{
  opacity:.7;
  cursor:not-allowed;
}

.contact-card{
  display:grid;
  grid-template-columns:380px 1fr;
  border:1px solid #E5E8EC;
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}

.contact-card-info{
  background:#0A2540;
  color:#fff;
  padding:48px;
  display:flex;
  flex-direction:column;
}

.contact-card-info h3{
  color:#fff;
  margin-bottom:18px;
}

.contact-card-info p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  margin-bottom:40px;
}

.contact-info-list{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.contact-label{
  display:block;
  margin-bottom:8px;
  font-family:"JetBrains Mono", monospace;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#F76F2C;
}

.contact-info-list a{
  color:#fff;
  text-decoration:none;
}

.contact-socials{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding-top:40px;
}

.contact-socials a{
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.15);
  padding:8px 12px;
  border-radius:4px;
  font-size:13px;
}

.contact-card-form{
  padding:48px;
}

.contact-card-form .contact-form{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.contact-card-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.contact-card-form label{
  display:block;
  margin-bottom:10px;
  font-size:12px;
  font-family:"JetBrains Mono", monospace;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#667085;
}

.contact-card-form input,
.contact-card-form textarea{
  width:100%;
  border:none;
  border-bottom:2px solid #D6DCE3;
  border-radius:0;
  background:none;
  padding:14px 0;
  font-size:15px;
}

.contact-card-form input:focus,
.contact-card-form textarea:focus{
  outline:none;
  border-color:#F76F2C;
}

.contact-card-form textarea{
  resize:vertical;
}

.contact-card-form .btn{
  width:auto;
  align-self:flex-end;
}

@media (max-width: 900px){

  .contact-card{
    grid-template-columns:1fr;
  }

  .contact-card-form .form-row{
    grid-template-columns:1fr;
  }

}

.contact-socials{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.contact-socials a{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  transition:.2s ease;
}

.contact-socials a:hover{
  color:#F76F2C;
}

.contact-socials i{
  font-size:14px;
}


.site-notice{
  background:#071014;
  color:#FFFFFF;
  text-align:center;
  padding:12px 20px;
  font-family:"JetBrains Mono", monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-notice-dot{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22C55E;
  margin-right:10px;
  vertical-align:middle;
}
.btn-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  min-height:52px;
  padding:0 24px;

  background:#C6A15B;
  color:#071014;

  border:1px solid #C6A15B;
  border-radius:8px;

  font-family:"Inter",sans-serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.2px;

  text-decoration:none;
  cursor:pointer;

  transition:
  background .25s ease,
  transform .25s ease,
  border-color .25s ease;
}

.btn-gold:hover{
  background:#d4b57a;
  border-color:#d4b57a;
  transform:translateY(-2px);
}

.btn-gold:active{
  transform:translateY(0);
}

.btn-gold:focus-visible{
  outline:2px solid #F4F1EA;
  outline-offset:3px;
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  min-height:52px;
  padding:0 24px;

  background:transparent;
  color:#C6A15B;

  border:1px solid #C6A15B;
  border-radius:8px;

  font-family:"Inter",sans-serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.2px;

  text-decoration:none;
  cursor:pointer;

  transition:
  background .25s ease,
  color .25s ease,
  transform .25s ease;
}

.btn-outline:hover{
  background:rgba(198,161,91,.08);
  transform:translateY(-2px);
}

.btn-outline:active{
  transform:translateY(0);
}

.btn-outline:focus-visible{
  outline:2px solid #F4F1EA;
  outline-offset:3px;
}