/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FFFFFF;
  color: #0D0D0D;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; }

/* ── Scrollbar ────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F8F8F8; }
::-webkit-scrollbar-thumb { background: #CCCCCC; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C00000; }
::selection { background: #C00000; color: white; }

/* ── Scroll reveal ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.23,1,0.32,1),
              transform 0.65s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Ticker ───────────────────────────────────────────────────────────── */
.ticker-wrap { overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Connector animations ─────────────────────────────────────────────── */
.bg-edge {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: bgDraw 3s ease forwards;
}
.bg-node { opacity: 0; animation: bgFade 0.5s ease forwards; }
@keyframes bgDraw { to { stroke-dashoffset: 0; } }
@keyframes bgFade { to { opacity: 1; } }

.edge-line { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 2s ease forwards; }
.edge-line-red { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 2.5s ease forwards; }
.node-dot { opacity: 0; animation: fadeNode 0.4s ease forwards; }
.node-label { opacity: 0; animation: fadeNode 0.5s ease forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeNode { to { opacity: 1; } }

.h-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawL 1.5s ease forwards; }
@keyframes drawL { to { stroke-dashoffset: 0; } }

/* ── Button active ────────────────────────────────────────────────────── */
button:active { transform: scale(0.97); }

/* ── Utility ──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Navigation ───────────────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  background: transparent;
}
#main-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8E8E8;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { background: none; border: none; padding: 0; cursor: pointer; }
.nav-logo img { height: 70px; width: auto; object-fit: contain; padding-top:5px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  background: none; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 0.85rem;
  color: #0D0D0D; letter-spacing: 0.02em; transition: color 0.15s; padding: 4px 0;
  text-decoration: none;
}
.nav-link:hover { color: #C00000; }
.nav-link.active { color: #C00000; }
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  background: #C00000; color: white; border: none; cursor: pointer;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 10px 18px; transition: background 0.15s;
  text-decoration: none;
}
.nav-cta:hover { background: #A00000; }
.nav-mobile-btn { background: none; border: none; cursor: pointer; display: none; }
.nav-mobile-menu {
  background: white; border-top: 1px solid #E8E8E8; padding: 20px 24px;
  display: none; flex-direction: column; gap: 16px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: #0D0D0D;
  text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh; background: #FFFFFF;
  padding-top: 72px; overflow: hidden; display: flex; flex-direction: column;
}
.hero-bg-svg {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  width: 100%; height: 100%; opacity: 0.18;
}
.hero-grid {
  flex: 1; max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: center; min-height: calc(100vh - 72px); position: relative; z-index: 8;
}
.hero-left { padding-right: 4rem; padding-top: 2rem; padding-bottom: 2rem; }
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem); font-weight: 800;
  color: #0D0D0D; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 2rem;
}
.hero-h1 .accent { color: #C00000; }
.hero-body {
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; color: #444444;
  line-height: 1.78; max-width: 460px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  display: flex; align-items: center; gap: 8px;
  background: #C00000; color: white; border: none; cursor: pointer;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px 24px; transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover { background: #A00000; transform: translateY(-1px); }
.btn-outline {
  display: flex; align-items: center; gap: 8px;
  background: transparent; color: #0D0D0D; border: 1.5px solid #0D0D0D; cursor: pointer;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 13px 22px; transition: all 0.15s;
  text-decoration: none;
}
.btn-outline:hover { background: #0D0D0D; color: white; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #E8E8E8; padding-top: 1.75rem;
}
.stat-val {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800;
  color: #0D0D0D; line-height: 1;
}
.stat-val.red { color: #C00000; }
.stat-label {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: #AAAAAA; margin-top: 6px;
}
.hero-right {
  position: relative; height: 100%; min-height: 560px;
  display: flex; align-items: center; justify-content: center; z-index: 5;
}
.hero-vline {
  position: absolute; left: 0; top: 10%; bottom: 10%; width: 2px;
  background: linear-gradient(to bottom, transparent, #C00000 30%, #C00000 70%, transparent);
}
.hero-img {
  width: 105%; height: 105%; object-fit: contain; object-position: center;
  max-height: 640px;
  filter: drop-shadow(0 20px 60px rgba(192,0,0,0.12)) drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}
.annotation {
  position: absolute; z-index: 20;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  border: 1px solid #E0E0E0; border-left: 2px solid #C00000;
  padding: 6px 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.annotation-label {
  font-family: 'Space Mono', monospace; font-size: 0.5rem; color: #C00000;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.annotation-val {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700;
  color: #0D0D0D; margin-top: 2px;
}
.hero-overlay-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.35;
}

/* ── Ticker bar ───────────────────────────────────────────────────────── */
.ticker-bar {
  background: #C00000; padding: 12px 0; overflow: hidden;
  position: relative; z-index: 10;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 24px;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.8); text-transform: uppercase; white-space: nowrap;
}
.ticker-dot { color: rgba(255,255,255,0.3); font-size: 0.5rem; }

/* ── Eyebrow ──────────────────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #888888;
}
.eyebrow.inv { color: rgba(255,255,255,0.5); }
.eyebrow-line { display: inline-block; width: 28px; height: 1px; background: #C00000; flex-shrink: 0; }

/* ── Section divider ──────────────────────────────────────────────────── */
.sec-div { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.sec-div-line { flex: 1; height: 1px; background: rgba(0,0,0,0.1); }
.sec-div-dot { width: 8px; height: 8px; border-radius: 50%; background: #C00000; flex-shrink: 0; }

/* ── Section headings ─────────────────────────────────────────────────── */
.section-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 800;
  color: #0D0D0D; line-height: 1.1; letter-spacing: -0.02em;
}
.section-h2.inv { color: white; }
.section-body {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #444444; line-height: 1.8;
}
.section-body.inv { color: #888888; }

/* ── About ────────────────────────────────────────────────────────────── */
#about {
  position: relative; padding: 7rem 0; background: #F8F8F8; overflow: hidden;
}
.about-schematic {
  position: absolute; top: 0; right: 0; width: 320px; height: 320px;
  pointer-events: none; opacity: 0.12;
}
.about-grid {
  display: grid; grid-template-columns: 42% 58%; gap: 4rem; align-items: start;
}
.entity-card {
  background: white; border: 1px solid #E8E8E8; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.entity-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.entity-card-top { height: 4px; }
.entity-card-body { padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.entity-logo { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }
.entity-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: #0D0D0D; margin-bottom: 4px;
}
.entity-tag {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #C00000; margin-bottom: 12px;
}
.entity-desc {
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: #555555; line-height: 1.7;
}

/* ── Practice Areas ───────────────────────────────────────────────────── */
#practice { position: relative; padding: 7rem 0; background: white; overflow: hidden; }
.practice-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid #E8E8E8;
}
.practice-card {
  border-right: 1px solid #E8E8E8; display: flex; flex-direction: column; cursor: default;
}
.practice-card:last-child { border-right: none; }
.practice-img-wrap {
  height: 200px; overflow: hidden; position: relative; background: #0D0D0D;
}
.practice-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s;
}
.practice-img:hover { opacity: 1; transform: scale(1.04); }
.practice-tag {
  position: absolute; top: 10px; left: 10px; background: #C00000; color: white;
  font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 8px;
}
.practice-num {
  position: absolute; bottom: 8px; right: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.75rem;
  color: rgba(255,255,255,0.35);
}
.practice-node {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%; background: #C00000;
  border: 2px solid white; z-index: 5;
}
.practice-content {
  padding: 1.25rem; flex: 1; background: white;
  border-top: 2px solid transparent; transition: border-color 0.2s;
}
.practice-content:hover { border-top-color: #C00000; }
.practice-icon { margin-bottom: 10px; color: #C00000; }
.practice-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: #0D0D0D; line-height: 1.35; margin-bottom: 10px;
}
.practice-body {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: #666666; line-height: 1.7;
}

/* ── Flagship Services ────────────────────────────────────────────────── */
#services {
  position: relative; padding: 7rem 0; background: #0D0D0D; overflow: hidden;
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #1A1A1A; }
.service-block { background: #0D0D0D; padding: 3rem; }
.service-num {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: #C00000; margin-bottom: 8px;
}
.service-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 2rem;
  color: white; line-height: 1.1;
}
.service-body {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: #AAAAAA;
  line-height: 1.8; margin-bottom: 1.25rem;
}
.service-divider { border-top: 1px solid #1E1E1E; padding-top: 1.5rem; }
.service-sub-label {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #C00000; margin-bottom: 1rem;
}
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.deliverable-item { display: flex; align-items: center; gap: 8px; }
.deliverable-text {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #888888;
}
.process-list { display: flex; flex-direction: column; gap: 0.6rem; }
.process-item { display: flex; align-items: flex-start; gap: 12px; }
.process-num {
  font-family: 'Space Mono', monospace; font-size: 0.6rem; color: #C00000;
  flex-shrink: 0; margin-top: 2px;
}
.process-text {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #888888; line-height: 1.6;
}
.pull-quote {
  background: #C00000; padding: 2.5rem 3rem; margin-top: 2px;
}
.pull-quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600;
  color: white; line-height: 1.6; max-width: 800px;
}

/* ── Additional Capabilities ──────────────────────────────────────────── */
#caps { position: relative; padding: 7rem 0; background: #F8F8F8; overflow: hidden; }
.caps-grid { display: grid; grid-template-columns: 38% 62%; gap: 4rem; align-items: start; }
.caps-list { background: white; border: 1px solid #E8E8E8; }
.caps-item {
  display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F0F0F0; transition: background 0.15s;
}
.caps-item:last-child { border-bottom: none; }
.caps-item:hover { background: #FAFAFA; }
.caps-item-num {
  font-family: 'Space Mono', monospace; font-size: 0.6rem; color: #C00000;
  flex-shrink: 0; margin-top: 3px; letter-spacing: 0.05em;
}
.caps-item-text {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #333333; line-height: 1.7;
}

/* ── Trading ──────────────────────────────────────────────────────────── */
#trading { position: relative; padding: 7rem 0; background: white; overflow: hidden; }
.trading-content-grid {
  display: grid; grid-template-columns: 55% 45%; gap: 3rem; align-items: start;
}
.track-card {
  border: 1px solid #E8E8E8; padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s; margin-bottom: 1.25rem;
}
.track-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.track-card:last-child { margin-bottom: 0; }
.track-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; }
.track-sub {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #AAAAAA; margin-top: 3px;
}
.track-body {
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: #555555; line-height: 1.75;
  margin-top: 1rem;
}
.trading-img-wrap { position: relative; }
.trading-img-shadow {
  position: absolute; top: -12px; right: -12px; width: 100%; height: 100%;
  border: 1px solid #E8E8E8;
}
.trading-img {
  position: relative; z-index: 1; width: 100%; object-fit: cover; aspect-ratio: 4/5;
}
.trading-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: #C00000; padding: 1rem 1.5rem;
}
.trading-img-caption-label {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.trading-img-caption-val {
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  color: rgba(255,255,255,0.85); margin-top: 4px;
}

/* ── Why RAMZ ─────────────────────────────────────────────────────────── */
#why { position: relative; padding: 7rem 0; background: #C00000; overflow: hidden; }
.why-overlay {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background-size: cover; background-position: left center;
  opacity: 0.06; pointer-events: none; mix-blend-mode: luminosity;
}
.why-schematic {
  position: absolute; bottom: 0; left: 0; width: 280px; height: 200px;
  pointer-events: none; opacity: 0.15;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,0.15);
}
.why-card {
  background: #C00000; padding: 2.5rem; transition: background 0.2s;
}
.why-card:hover { background: #A80000; }
.why-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 5rem;
  color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 1.5rem; margin-left: -0.25rem;
}
.why-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem;
  color: white; line-height: 1.35; margin-bottom: 1rem;
}
.why-body {
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  color: rgba(255,255,255,0.65); line-height: 1.75;
}

/* ── Contact ──────────────────────────────────────────────────────────── */
#contact { position: relative; padding: 7rem 0; background: #F8F8F8; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 45% 55%; gap: 4rem; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 1.15rem; }
.contact-icon-box {
  width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-item-label {
  font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #666666; margin-bottom: 5px;
}
.contact-item-val {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.15rem;
  color: #0D0D0D; transition: color 0.15s;
}
.contact-item-val:hover { color: #C00000; }
.contact-item-text {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: #333333; line-height: 1.75;
}
.cta-card {
  background: white; border: 1px solid #E8E8E8; overflow: hidden;
}
.cta-card-top { height: 8px; background: #C00000; }
.cta-card-body { padding: 2.5rem; }
.cta-card-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; color: #0D0D0D;
}
.cta-card-sub {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #AAAAAA; margin-top: 4px;
}
.cta-card-desc {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #555555;
  line-height: 1.75; margin-bottom: 2rem; margin-top: 1.5rem;
}
.cta-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #C00000; color: white; border: none; cursor: pointer;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 14px 24px; width: 100%;
  transition: background 0.15s; margin-bottom: 0.75rem;
  text-decoration: none;
}
.cta-btn-primary:hover { background: #A00000; }
.cta-btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #0D0D0D; border: 1.5px solid #0D0D0D; cursor: pointer;
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 13px 24px; width: 100%;
  text-decoration: none; transition: all 0.15s; box-sizing: border-box;
}
.cta-btn-outline:hover { background: #0D0D0D; color: white; }

/* ── Footer ───────────────────────────────────────────────────────────── */
footer { background: #0D0D0D; padding: 3rem 0; }
.footer-grid {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: start; margin-bottom: 2.5rem;
}
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 8px; }
.footer-loc {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; color: #c6c6c6;
}
.footer-entities { display: flex; gap: 2rem; padding-left: 2.5rem; }
.footer-entity-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem;
  color: white; margin-bottom: 4px;
}
.footer-entity-type {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; color: #444444;
}
.footer-divider { width: 1px; background: #2A2A2A; align-self: stretch; }
.footer-email {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: #C00000; text-decoration: none; transition: color 0.15s;
}
.footer-email:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #1E1E1E; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem;
}
.footer-legal {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: #444444;
  line-height: 1.7; max-width: 680px;
}
.footer-copy {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em;
  color: #444444; flex-shrink: 0;
}

/* ── Shared section wrapper ───────────────────────────────────────────── */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 10; }
.section-header { margin-bottom: 4rem; }
.section-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end; }

/* ── SVG icon helpers ─────────────────────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }

/* ── Inner Page Banner ────────────────────────────────────────────────── */
.page-banner {
  position: relative; padding-top: 72px; background: #FFFFFF; overflow: hidden;
}
.page-banner-inner {
  max-width: 1280px; margin: 0 auto; padding: 5rem 2rem 4rem;
  position: relative; z-index: 8;
}
.page-banner-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  width: 100%; height: 100%; opacity: 0.12;
}
.page-banner h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800;
  color: #0D0D0D; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.page-banner h1 .accent { color: #C00000; }
.page-banner-desc {
  font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: #444444;
  line-height: 1.78; max-width: 640px;
}
.page-banner-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid #E8E8E8;
}
.page-banner-stat-val {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800;
  color: #C00000; line-height: 1;
}
.page-banner-stat-label {
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: #AAAAAA; margin-top: 6px;
}

/* ── Inner Page Content Sections ──────────────────────────────────────── */
.page-section { position: relative; padding: 5rem 0; overflow: hidden; }
.page-section.alt { background: #F8F8F8; }
.page-section.dark { background: #0D0D0D; }
.page-section.red { background: #C00000; }

.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.detail-card {
  background: white; border: 1px solid #E8E8E8; padding: 2.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.detail-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.detail-card.dark-card {
  background: #0D0D0D; border-color: #1E1E1E;
}
.detail-card.dark-card:hover { box-shadow: 0 8px 32px rgba(192,0,0,0.12); }

.detail-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 4rem;
  color: rgba(0,0,0,0.05); line-height: 1; margin-bottom: 1rem;
}
.detail-num.inv { color: rgba(255,255,255,0.05); }

.contact-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #888888;
}
.form-input {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #0D0D0D;
  padding: 12px 16px; border: 1px solid #E8E8E8; background: white;
  transition: border-color 0.15s; outline: none;
}
.form-input:focus { border-color: #C00000; }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 2rem;
  font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a { color: #AAAAAA; text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: #C00000; }
.breadcrumb span { color: #AAAAAA; }
.breadcrumb .current { color: #0D0D0D; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-right { display: none !important; }
  .hero-left { padding-right: 0; }
  .about-grid, .caps-grid, .contact-grid, .trading-content-grid,
  .section-header-grid, .services-grid, .detail-grid, .contact-form-grid { grid-template-columns: 1fr !important; }
  .contact-info-strip { grid-template-columns: 1fr 1fr !important; }
  .contact-entities-row { grid-template-columns: 1fr !important; }
  .practice-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-entities { flex-direction: column !important; padding-left: 0 !important; }
  .footer-bottom { flex-direction: column !important; }
  .nav-links, .nav-cta-wrap { display: none !important; }
  .nav-mobile-btn { display: block !important; }
  .page-banner-stats { flex-direction: column; gap: 1.5rem; }
  .form-group.full { grid-column: auto; }
}
@media (max-width: 600px) {
  .practice-grid { grid-template-columns: 1fr !important; }
  .contact-info-strip { grid-template-columns: 1fr !important; }
}