:root {
  --bg: #020814;
  --bg-soft: #081224;
  --panel: rgba(8, 20, 39, 0.70);
  --panel-strong: rgba(8, 20, 39, 0.88);
  --line: rgba(63, 154, 255, 0.24);
  --line-strong: rgba(64, 164, 255, 0.6);
  --text: #f4f8ff;
  --muted: #b6c2d7;
  --blue: #20a5ff;
  --blue-2: #0a7cff;
  --gold: #f3c05b;
  --shadow: 0 22px 60px rgba(0, 0, 0, .35);
  --radius: 28px;
  --container: 1400px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 121, 255, .20), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(243, 192, 91, .12), transparent 20%),
    linear-gradient(180deg, #020814 0%, #06111f 60%, #030a14 100%);
  color: var(--text);
  overflow-x: hidden;
}
#bg-canvas {
  position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; opacity: .24;
}
.page-glow {
  position: fixed; inset: auto 0 0 0; height: 40vh; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(0,143,255,.18), transparent 48%);
}
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; position: relative; z-index: 2; }
.section { position: relative; z-index: 1; }
.site-header { position: sticky; top: 0; z-index: 50; padding: 12px 0 0; backdrop-filter: blur(10px); transition: padding .28s ease; }
.nav-shell {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 24px; align-items: center;
  padding: 16px 24px; border: 1px solid rgba(101, 169, 255, .28); border-radius: 24px;
  background: rgba(2, 10, 24, .72); box-shadow: var(--shadow); transition: padding .28s ease, border-radius .28s ease, background .28s ease;
}
.brand { display: flex; align-items: center; gap: 14px; color: inherit; text-decoration: none; min-width: 0; }
.brand-helmet { width: 62px; height: auto; filter: drop-shadow(0 0 12px rgba(10,124,255,.25)); }
.brand-text-wrap { min-width: 0; }
.brand-text { font-size: clamp(1.8rem, 2.5vw, 3rem); letter-spacing: .18em; line-height: .95; font-weight: 700; }
.brand-subtext { color: var(--gold); letter-spacing: .18em; font-size: .75rem; margin-top: 4px; text-transform: uppercase; white-space: nowrap; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(18px, 2vw, 40px); }
.desktop-nav a, .mobile-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 1.05rem; position: relative; padding-bottom: 8px; }
.desktop-nav a.active::after, .desktop-nav a:hover::after, .mobile-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px;
  border-radius: 18px; text-decoration: none; font-weight: 600; transition: .28s ease;
}
.nav-cta {
  color: #fff; border: 1px solid rgba(243,192,91,.65); background: linear-gradient(180deg, rgba(15,103,252,.95), rgba(10,67,173,.92));
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 0 24px rgba(20,100,255,.18);
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,139,255,.25); }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 1.7rem; }
.mobile-nav { display: none; padding: 10px 10px 0; flex-wrap: wrap; gap: 18px; }
.hero { padding: 42px 0 28px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; min-height: calc(100vh - 120px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; color: #cae4ff; text-transform: uppercase; letter-spacing: .16em;
  background: rgba(9, 26, 49, .64); border: 1px solid rgba(68, 151, 255, .18); border-radius: 999px; padding: 12px 18px; margin-bottom: 24px;
}
.eyebrow-dot { width: 12px; height: 12px; border-radius: 999px; background: #43dc8f; box-shadow: 0 0 16px #43dc8f; }
.hero h1 { font-size: clamp(3.8rem, 6.5vw, 6.6rem); line-height: .98; margin: 0; font-weight: 800; letter-spacing: -0.04em; }
.hero h1 span { color: var(--blue); text-shadow: 0 0 24px rgba(32, 165, 255, .22); }
.hero p { color: var(--muted); font-size: clamp(1.05rem, 1.55vw, 1.4rem); line-height: 1.65; max-width: 740px; margin: 22px 0 0; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.btn-primary {
  color: #fff; background: linear-gradient(180deg, rgba(27,168,255,1), rgba(21,95,255,1));
  border: 1px solid rgba(71,179,255,.8); box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset, 0 0 24px rgba(27,168,255,.28);
}
.btn-secondary {
  color: #fff; background: rgba(4, 16, 33, .5); border: 1px solid rgba(254,255,255,.45); box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}
.hero-visual {
  position: relative; min-height: 760px; border-radius: 36px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(23,113,255,.20), transparent 35%),
    linear-gradient(180deg, rgba(10,25,52,.30), rgba(6,14,29,.05));
}
.chart-grid {
  position: absolute; inset: 0; background-image: linear-gradient(rgba(54,115,205,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(54,115,205,.14) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,1));
}
.orb { position: absolute; inset: auto auto 16% 10%; width: 280px; height: 280px; border-radius: 999px; background: radial-gradient(circle, rgba(70,178,255,.4), transparent 65%); filter: blur(22px); opacity: .5; }
.line {
  position: absolute; left: -6%; right: -6%; height: 2px; border-radius: 999px;
  filter: drop-shadow(0 0 18px rgba(36, 166, 255, .9));
}
.line-one { bottom: 40%; transform: rotate(6deg); background: linear-gradient(90deg, transparent 0%, rgba(243,192,91,.95) 20%, rgba(18,145,255,.95) 55%, transparent 100%); }
.line-two { bottom: 28%; transform: rotate(-3deg); background: linear-gradient(90deg, transparent 0%, rgba(29,165,255,.95) 15%, rgba(255,230,170,.9) 55%, transparent 100%); }
.candles { position: absolute; inset: 8% 0 8% 0; opacity: .8; }
.candles::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0 71%, rgba(66, 159, 255, .85) 71% 91%, transparent 91%),
    linear-gradient(transparent 0 47%, rgba(255, 214, 117, .85) 47% 86%, transparent 86%),
    linear-gradient(transparent 0 35%, rgba(66, 159, 255, .85) 35% 72%, transparent 72%),
    linear-gradient(transparent 0 58%, rgba(255, 214, 117, .85) 58% 92%, transparent 92%),
    linear-gradient(transparent 0 28%, rgba(66, 159, 255, .85) 28% 81%, transparent 81%),
    linear-gradient(transparent 0 42%, rgba(255, 214, 117, .85) 42% 68%, transparent 68%),
    linear-gradient(transparent 0 18%, rgba(66, 159, 255, .85) 18% 59%, transparent 59%);
  background-size: 16px 100%, 16px 100%, 16px 100%, 16px 100%, 16px 100%, 16px 100%, 16px 100%;
  background-repeat: no-repeat;
  background-position: 7% 0, 18% 0, 31% 0, 49% 0, 65% 0, 79% 0, 92% 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.8) 12%, rgba(0,0,0,.95) 40%, rgba(0,0,0,1) 100%);
}
.hero-brand-card {
  position: absolute; inset: 8% 2% 5% 12%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.hero-helmet { width: clamp(360px, 38vw, 560px); max-width: 100%; filter: drop-shadow(0 0 30px rgba(243, 192, 91, .16)); animation: float 5.5s ease-in-out infinite; }
.hero-brand-text { margin-top: 6px; font-size: clamp(4rem, 7vw, 7rem); letter-spacing: .28em; font-weight: 600; line-height: 1; }
.hero-brand-sub { margin-top: 14px; color: var(--gold); letter-spacing: .22em; font-size: clamp(1rem, 1.15vw, 1.35rem); text-transform: uppercase; }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
.features { padding: 8px 0 20px; }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card {
  position: relative; padding: 28px 24px; min-height: 172px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(7,20,41,.72), rgba(4,12,24,.88));
  border: 1px solid rgba(67, 148, 247, .3); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 34px rgba(0,0,0,.22);
  overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card::after { content: ''; position: absolute; inset: auto -20% -60% -20%; height: 110px; background: radial-gradient(circle, rgba(17,116,255,.22), transparent 60%); opacity: 0; transition: opacity .28s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(109, 183, 255, .5); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 26px 42px rgba(0,0,0,.28); }
.card:hover::after { opacity: 1; }
.card-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.9rem; color: #8fd0ff; border: 1px solid rgba(65, 160, 255, .35); background: rgba(8, 20, 39, .75); }
.card h3 { margin: 18px 0 10px; font-size: 1.6rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 1rem; }
.method { padding: 34px 0; }
.method-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.section-label { color: #7ebfff; letter-spacing: .18em; text-transform: uppercase; font-size: .88rem; margin-bottom: 12px; }
.method-copy, .method-panel, .partners-box, .contact-box {
  padding: 32px; border-radius: 28px; background: linear-gradient(180deg, rgba(7,20,41,.68), rgba(4,12,24,.84)); border: 1px solid rgba(67, 148, 247, .25);
}
.method-copy h2, .contact-box h2 { margin: 0 0 14px; font-size: clamp(2rem, 3vw, 3rem); }
.method-copy p, .contact-box p { margin: 0; color: var(--muted); line-height: 1.7; }
.method-list { margin: 22px 0 0; padding-left: 20px; color: var(--text); line-height: 1.9; }
.method-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mini-stat { padding: 24px; border-radius: 20px; background: rgba(10,22,43,.65); border: 1px solid rgba(74,145,231,.24); }
.mini-stat span { color: #8cadcc; font-size: .95rem; display: block; margin-bottom: 12px; }
.mini-stat strong { font-size: 1.55rem; }
.partners { padding: 16px 0 24px; }
.partners-box { text-align: center; }
.partners-label { color: #8dbef5; letter-spacing: .24em; text-transform: uppercase; font-size: 1rem; margin-bottom: 22px; }
.partner-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.partner {
  display: grid; place-items: center; min-height: 150px; border-radius: 22px; background: rgba(6,18,38,.48); border: 1px solid rgba(66,149,246,.22); padding: 20px;
}
.partner img { max-width: min(100%, 420px); height: auto; }
.contact { padding: 10px 0 34px; }
.contact-box { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-footer {
  border-top: 1px solid rgba(66,149,246,.18); background: rgba(2,8,20,.72); position: relative; z-index: 2;
}
.footer-grid { display: grid; grid-template-columns: 0.9fr 1.15fr 1.25fr auto; grid-template-areas: 'brand risk hypo side' 'brand risk hypo side'; gap: 26px; padding: 28px 0; align-items: start; }
.footer-brand { grid-area: brand; }
.footer-brand-row { display: flex; gap: 14px; align-items: center; }
.footer-helmet { width: 54px; }
.footer-brand-title { font-size: 1.6rem; letter-spacing: .16em; }
.footer-brand-sub { color: var(--gold); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-disclosures { display: contents; }
.footer-disclosures p { color: #a9b9ce; font-size: .90rem; line-height: 1.7; margin: 0; }
.footer-disclosures p:first-child { grid-area: risk; }
.footer-disclosures p:last-child { grid-area: hypo; }
.footer-links { grid-area: side; display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-start; align-self: end; }
.footer-links a { color: #c8ddf5; text-decoration: none; }
.footer-copy { grid-area: side; color: #9ab0cb; text-align: left; line-height: 1.5; align-self: start; margin-top: 92px; max-width: 300px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1180px) {
  .hero-grid, .method-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 640px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { display: grid; grid-template-columns: 0.9fr 1.15fr 1.25fr auto; grid-template-areas: 'brand risk hypo side' 'brand risk hypo side'; gap: 26px; padding: 28px 0; align-items: start; }
  .footer-copy { grid-area: side; color: #9ab0cb; text-align: left; line-height: 1.5; align-self: start; margin-top: 92px; max-width: 300px; }
}
@media (max-width: 920px) {
  .nav-shell { grid-template-columns: 1fr auto auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: flex; }
  .brand-text { font-size: 1.55rem; }
  .brand-subtext { font-size: .62rem; letter-spacing: .1em; }
  .hero { padding-top: 26px; }
  .hero-grid { min-height: auto; }
  .hero-visual { order: -1; min-height: 480px; }
  .hero-brand-text { font-size: clamp(2.5rem, 10vw, 4.2rem); }
  .hero-brand-sub { font-size: .84rem; }
  .cards, .partner-logos { grid-template-columns: 1fr; }
  .contact-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { padding: 14px 16px; gap: 12px; }
  .brand-helmet { width: 42px; }
  .brand-subtext { display: none; }
  .eyebrow { padding: 10px 14px; font-size: .75rem; gap: 10px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero p { font-size: 1rem; }
  .hero-actions { gap: 12px; }
  .btn, .nav-cta { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-helmet { width: 260px; }
  .card { min-height: auto; }
  .method-copy, .method-panel, .partners-box, .contact-box { padding: 24px; }
}

.site-header.scrolled { padding-top: 6px; }
.site-header.scrolled .nav-shell { padding: 10px 18px; border-radius: 18px; background: rgba(2, 10, 24, .88); }
.site-header.scrolled .brand-helmet { width: 46px; }
.site-header.scrolled .brand-text { font-size: clamp(1.35rem, 2vw, 2.1rem); }
.site-header.scrolled .brand-subtext { font-size: .65rem; }
.site-header.scrolled .desktop-nav a { font-size: .98rem; }
.site-header.scrolled .nav-cta { padding: 13px 24px; border-radius: 15px; }
.section:not(.hero) { position: relative; }
.section:not(.hero)::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,10,20,.68), rgba(3,10,20,.62)); z-index: 0; pointer-events: none; }
.features .container, .method .container, .partners .container, .contact .container { z-index: 2; }
.site-footer { background: rgba(2,8,20,.88); }
.footer-disclosures { grid-column: risk / hypo; }
.footer-disclosures p { font-size: .92rem; }

@media (max-width: 1380px) {
  .footer-grid { grid-template-columns: 1fr 1fr; grid-template-areas: 'brand side' 'risk risk' 'hypo hypo'; }
  .footer-links { align-self: start; }
  .footer-copy { margin-top: 54px; }
}


.strategies { padding: 34px 0; }
.strategies-head { max-width: 900px; margin-bottom: 22px; }
.strategies-head h2 { margin: 0 0 12px; font-size: clamp(2.2rem, 3.4vw, 3.6rem); }
.strategies-head p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 1.08rem; }
.strategy-showcase {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px;
  padding: 28px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(7,20,41,.74), rgba(4,12,24,.88));
  border: 1px solid rgba(67,148,247,.28); box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.strategy-badge {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  color: #9fd7ff; background: rgba(16,70,123,.22); border: 1px solid rgba(68,151,255,.22);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
}
.strategy-copy h3 { margin: 18px 0 10px; font-size: 2rem; }
.strategy-copy > p { color: var(--muted); line-height: 1.7; }
.strategy-metrics-placeholder { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 22px; }
.strategy-metrics-placeholder > div { padding: 18px; border-radius: 18px; background: rgba(8,20,39,.68); border: 1px solid rgba(67,148,247,.20); }
.strategy-metrics-placeholder span { display:block; color:#89a7c7; font-size:.9rem; margin-bottom:8px; }
.strategy-metrics-placeholder strong { font-size:1.6rem; color:#eaf5ff; }
.strategy-chart-placeholder {
  position: relative; min-height: 330px; overflow: hidden; border-radius: 22px;
  background: linear-gradient(180deg, rgba(6,18,38,.82), rgba(3,10,22,.94)); border:1px solid rgba(67,148,247,.22);
}
.placeholder-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(54,115,205,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(54,115,205,.13) 1px,transparent 1px); background-size:48px 48px; }
.placeholder-line { position:absolute; left:8%; right:8%; bottom:28%; height:3px; background:linear-gradient(90deg,rgba(32,165,255,.05),rgba(32,165,255,.95),rgba(243,192,91,.9)); transform:skewY(-7deg); box-shadow:0 0 18px rgba(32,165,255,.35); }
.placeholder-title { position:absolute; inset:auto 20px 18px; color:#8da9c8; font-size:.9rem; text-transform:uppercase; letter-spacing:.11em; }
.hypo-notice { margin-top:16px; padding:18px 20px; border-radius:18px; background:rgba(27,57,93,.22); border:1px solid rgba(117,170,230,.22); color:#b9c9dc; line-height:1.65; font-size:.92rem; }
.hypo-notice strong { color:#eef7ff; }
@media (max-width: 980px) { .strategy-showcase { grid-template-columns:1fr; } }
@media (max-width: 640px) { .strategy-showcase { padding:20px; } .strategy-metrics-placeholder { grid-template-columns:1fr 1fr; } }


.strategy-chart-link { text-decoration: none; color: inherit; display: block; }
.strategy-preview-card { min-height: 0; overflow: hidden; padding: 20px; display:flex; align-items:center; justify-content:center; }
.strategy-preview-img { width: 100%; height: 360px; object-fit: contain; background:#f4f4f4; display: block; border-radius: 18px; border: 1px solid rgba(84,164,255,.28); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.strategy-metrics-live strong { font-size: 1.2rem; }

.page-hero { padding: 42px 0 24px; }
.page-hero-box { padding: 34px; border-radius: 28px; background: linear-gradient(180deg, rgba(7,20,41,.68), rgba(4,12,24,.84)); border: 1px solid rgba(67,148,247,.25); }
.page-hero-box h1 { margin: 0 0 12px; font-size: clamp(2.4rem,4vw,4.2rem); }
.page-hero-box p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 980px; }

.strategies-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.strategy-card-full { display: grid; grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr); gap: 28px; padding: 26px; align-items: center; border-radius: 26px; background: linear-gradient(180deg, rgba(7,20,41,.72), rgba(4,12,24,.88)); border: 1px solid rgba(67,148,247,.30); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 34px rgba(0,0,0,.22); }
.strategy-thumb { width: 100%; height: 340px; object-fit: contain; background: #f4f4f4; border-radius: 18px; border: 1px solid rgba(85,162,255,.25); display:block; }
.strategy-card-full h3 { margin: 0 0 8px; font-size: 2rem; }
.strategy-kicker { color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; margin-bottom: 10px; }
.strategy-card-full p { color: var(--muted); line-height: 1.7; }
.strategy-mini-metrics { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 18px 0 22px; }
.strategy-mini-metrics div { padding: 14px 16px; border-radius: 16px; background: rgba(10,22,43,.65); border: 1px solid rgba(74,145,231,.24); }
.strategy-mini-metrics span { display:block; color:#8cadcc; font-size:.9rem; margin-bottom:8px; }
.strategy-mini-metrics strong { font-size: 1.15rem; }
.strategy-actions { display:flex; gap:14px; flex-wrap:wrap; }

.metrics-section, .gallery-section, .detail-top, .detail-summary-box, .metrics-table-box { padding: 28px; border-radius: 28px; background: linear-gradient(180deg, rgba(7,20,41,.72), rgba(4,12,24,.88)); border: 1px solid rgba(67,148,247,.28); }
.detail-top { display:grid; grid-template-columns: 1fr .95fr; gap: 22px; align-items:start; }
.detail-main-thumb { width:100%; border-radius:20px; border:1px solid rgba(85,162,255,.25); }
.detail-summary-box h2 { margin:0 0 8px; font-size: 2.3rem; }
.detail-summary-box p { color: var(--muted); line-height:1.7; }
.notice-inline { margin-top:16px; padding:16px 18px; border-radius:18px; background: rgba(21,33,55,.65); border:1px solid rgba(243,192,91,.25); color:#dfe8f5; line-height:1.7; }
.gallery-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px; }
.gallery-grid a { display:block; }
.gallery-grid img { width:100%; border-radius:16px; border:1px solid rgba(85,162,255,.25); display:block; }
.metrics-table { width:100%; border-collapse: collapse; font-size: .98rem; }
.metrics-table th, .metrics-table td { padding: 12px 10px; border-bottom:1px solid rgba(78,139,226,.18); text-align:left; vertical-align:top; }
.metrics-table th { color:#8dc0f9; font-weight:600; width: 36%; }
.metrics-highlight { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-top:18px; }
.metrics-highlight div { padding:16px; border-radius:18px; background: rgba(10,22,43,.65); border: 1px solid rgba(74,145,231,.24); }
.metrics-highlight span { display:block; color:#8cadcc; font-size:.9rem; margin-bottom:8px; }
.metrics-highlight strong { font-size:1.2rem; }
.back-row { margin-top: 18px; }
.back-row a { color:#d3e6ff; text-decoration:none; }
@media (max-width: 1180px) { .detail-top { grid-template-columns: 1fr; } .gallery-grid, .metrics-highlight { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .strategy-card-full { grid-template-columns: 1fr; } .strategy-thumb { height: 300px; } }
@media (max-width: 720px) { .gallery-grid, .metrics-highlight, .strategy-mini-metrics { grid-template-columns: 1fr; } }

/* ATHENEA v12 - Zoom elegante de capturas Strategy Analyzer */
.gallery-section,
.gallery-grid {
  overflow: visible;
}

.gallery-grid a {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  transition: z-index .01s linear;
}

.gallery-grid img {
  position: relative;
  z-index: 1;
  transform: scale(1);
  transform-origin: center center;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
  cursor: zoom-in;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-grid a:hover {
    z-index: 30;
  }

  .gallery-grid a:hover img {
    z-index: 31;
    transform: scale(1.42);
    border-color: rgba(106, 192, 255, .72);
    box-shadow:
      0 28px 70px rgba(0,0,0,.58),
      0 0 34px rgba(26,154,255,.22);
  }
}

@media (max-width: 1180px) and (hover: hover) and (pointer: fine) {
  .gallery-grid a:hover img {
    transform: scale(1.24);
  }
}


/* Contacto ATHENEA */
.contact-box { align-items: flex-start; }
.contact-copy { flex: 1 1 auto; min-width: 0; }
.contact-copy > p { max-width: 980px; }
.contact-email {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  color: var(--text);
  text-decoration: none;
  background: rgba(8, 23, 45, .70);
  border: 1px solid rgba(67, 148, 247, .32);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-email:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 177, 255, .70);
  box-shadow: 0 12px 30px rgba(0, 113, 255, .16);
}
.contact-email-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 1.25rem;
  background: linear-gradient(180deg, rgba(32,165,255,.95), rgba(15,91,230,.90));
  border: 1px solid rgba(116,198,255,.45);
}
.contact-email small {
  display: block;
  color: #83bdf6;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 4px;
}
.contact-email strong { font-size: 1.05rem; font-weight: 600; }
.official-channels { margin-top: 24px; }
.official-channels-title {
  color: #8dbef5;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 12px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(77, 150, 240, .28);
  background: rgba(7, 19, 38, .72);
  color: #dceaff;
  font-size: .92rem;
}
.social-link b {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(35, 135, 255, .13);
  color: #75c7ff;
  font-size: .9rem;
}
.social-link.pending { opacity: .82; cursor: default; }
.contact-action-wrap {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  padding-top: 54px;
}
.contact-main-btn { width: 100%; }
.contact-action-note { color: #7f93af; font-size: .82rem; text-align: center; }
@media (max-width: 920px) {
  .contact-action-wrap { flex: 1 1 auto; width: 100%; padding-top: 0; }
  .contact-email { max-width: 100%; }
  .contact-email strong { overflow-wrap: anywhere; }
}


/* Contact page */
.contact-teaser { min-height: 220px; }
.contact-page-hero { padding-bottom: 18px; }
.contact-form-section { padding: 12px 0 42px; }
.contact-page-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; align-items: start; }
.contact-info-panel, .contact-form-card { padding: 34px; border-radius: 28px; background: linear-gradient(180deg, rgba(7,20,41,.76), rgba(4,12,24,.92)); border: 1px solid rgba(67,148,247,.28); box-shadow: 0 18px 38px rgba(0,0,0,.22); }
.contact-info-panel h2 { margin: 0 0 14px; font-size: clamp(2rem,3vw,3rem); }
.contact-info-panel > p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.contact-info-card { padding: 20px; border-radius: 20px; background: rgba(10,22,43,.7); border: 1px solid rgba(74,145,231,.26); margin-bottom: 24px; }
.contact-info-card span { display: block; color: #8cadcc; font-size: .92rem; margin-bottom: 8px; }
.contact-info-card strong { font-size: clamp(1rem,1.5vw,1.25rem); word-break: break-word; }
.contact-topic-list { display: grid; gap: 10px; }
.contact-topic-list > div { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: 17px; background: rgba(8,20,39,.48); border: 1px solid rgba(74,145,231,.17); }
.contact-topic-list span { color: var(--gold); font-weight: 700; font-size: .82rem; }
.contact-topic-list p { margin: 0; color: #d8e5f4; }
.athenea-contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.athenea-contact-form label { display: grid; gap: 9px; color: #dcecff; font-weight: 600; }
.athenea-contact-form label > span { font-size: .96rem; }
.athenea-contact-form input, .athenea-contact-form select, .athenea-contact-form textarea { width: 100%; font: inherit; color: #f5f9ff; background: rgba(3,13,28,.78); border: 1px solid rgba(79,153,246,.30); border-radius: 16px; padding: 15px 16px; outline: none; transition: border-color .22s ease, box-shadow .22s ease, background .22s ease; }
.athenea-contact-form input::placeholder, .athenea-contact-form textarea::placeholder { color: #7088a5; }
.athenea-contact-form select { color-scheme: dark; }
.athenea-contact-form input:focus, .athenea-contact-form select:focus, .athenea-contact-form textarea:focus { border-color: rgba(36,165,255,.85); box-shadow: 0 0 0 4px rgba(36,165,255,.10), 0 0 22px rgba(36,165,255,.08); background: rgba(5,17,36,.96); }
.athenea-contact-form textarea { resize: vertical; min-height: 170px; }
.privacy-check { grid-template-columns: auto 1fr !important; align-items: start; gap: 11px !important; color: #aebed1 !important; font-weight: 400 !important; line-height: 1.5; }
.privacy-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: #199dff; padding: 0; }
.form-submit-btn { border: 0; cursor: pointer; font: inherit; width: fit-content; min-width: 210px; }
.form-note { color: #8196af; margin: -4px 0 0; font-size: .88rem; }
.form-note strong { color: #b8d7fa; }
.form-honey { display: none !important; }
@media (max-width: 980px) { .contact-page-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .contact-info-panel, .contact-form-card { padding: 24px; } .form-submit-btn { width: 100%; } }


/* ===== v16 refinements ===== */
.why-athenea { padding: 30px 0 34px; }
.why-head { max-width: 900px; margin-bottom: 22px; }
.why-head h2 { margin: 0 0 12px; font-size: clamp(2rem,3.4vw,3.4rem); }
.why-head p { margin: 0; color: var(--muted); line-height: 1.75; }
.why-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.why-card { min-height: 230px; padding: 28px; border-radius: 25px; background: linear-gradient(180deg, rgba(7,20,41,.76), rgba(4,12,24,.90)); border: 1px solid rgba(67,148,247,.28); box-shadow: 0 18px 36px rgba(0,0,0,.20); }
.why-number { color: var(--gold); font-size: .82rem; letter-spacing: .18em; font-weight: 700; }
.why-card h3 { margin: 20px 0 10px; font-size: 1.85rem; }
.why-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.strategy-filter-section { padding: 0 0 18px; }
.strategy-filter-bar { display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding:14px 16px; border:1px solid rgba(67,148,247,.23); border-radius:18px; background:rgba(7,19,38,.62); }
.strategy-filter { appearance:none; border:1px solid rgba(85,162,255,.28); color:#d9eaff; background:rgba(8,21,42,.74); padding:10px 14px; border-radius:999px; cursor:pointer; font:inherit; font-weight:600; transition:.22s ease; }
.strategy-filter:hover,.strategy-filter.active { border-color:rgba(243,192,91,.70); color:#fff; box-shadow:0 0 0 3px rgba(243,192,91,.06); }
.filter-note { margin-left:auto; color:#8198b6; font-size:.88rem; }
.strategy-card-full.is-hidden { display:none !important; }
.strategy-tags { display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 4px; }
.strategy-tags span { padding:7px 10px; border-radius:999px; background:rgba(20,100,190,.10); border:1px solid rgba(75,153,245,.24); color:#9fcdfa; font-size:.79rem; }

.technical-summary { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin:18px 0; }
.technical-summary > div { padding:15px 16px; border-radius:16px; background:rgba(10,22,43,.62); border:1px solid rgba(74,145,231,.22); }
.technical-summary span { display:block; color:#8cadcc; font-size:.85rem; margin-bottom:6px; }
.technical-summary strong { font-size:.98rem; line-height:1.45; }

.faq-section { padding: 18px 0 44px; }
.faq-head { max-width: 900px; margin-bottom: 18px; }
.faq-head h2 { margin:0; font-size:clamp(2rem,3vw,3rem); }
.faq-list { display:grid; gap:12px; }
.faq-item { border:1px solid rgba(67,148,247,.25); border-radius:20px; background:linear-gradient(180deg,rgba(7,20,41,.70),rgba(4,12,24,.88)); overflow:hidden; }
.faq-item summary { list-style:none; cursor:pointer; padding:20px 22px; font-weight:700; color:#eaf3ff; position:relative; padding-right:52px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; position:absolute; right:22px; top:50%; transform:translateY(-50%); color:var(--gold); font-size:1.4rem; }
.faq-item[open] summary::after { content:'–'; }
.faq-item p { margin:0; padding:0 22px 22px; color:var(--muted); line-height:1.75; }

/* Lightbox */
.lightbox-overlay { position:fixed; inset:0; z-index:9999; display:none; align-items:center; justify-content:center; padding:34px; background:rgba(0,5,15,.92); backdrop-filter:blur(12px); }
.lightbox-overlay.open { display:flex; }
.lightbox-content { position:relative; max-width:min(1500px,95vw); max-height:92vh; }
.lightbox-content img { display:block; max-width:100%; max-height:88vh; width:auto; height:auto; border-radius:16px; box-shadow:0 28px 80px rgba(0,0,0,.55); background:#fff; }
.lightbox-close { position:absolute; right:-14px; top:-14px; width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.28); color:#fff; background:rgba(6,18,38,.92); font-size:1.5rem; cursor:pointer; }
.lightbox-caption { color:#b8c9df; text-align:center; margin-top:10px; font-size:.9rem; }
.gallery-grid a { cursor:zoom-in; }

/* Performance: optimized thumbnails retain full-resolution originals for lightbox. */
.strategy-thumb, .strategy-preview-img, .gallery-grid img, .detail-main-thumb { content-visibility:auto; }

@media (max-width: 980px) {
  .why-grid { grid-template-columns:1fr; }
  .filter-note { width:100%; margin-left:0; padding-top:4px; }
  .technical-summary { grid-template-columns:1fr 1fr; }
  .metrics-table-box,.metrics-section,.gallery-section,.detail-summary-box,.page-hero-box { overflow-x:auto; }
}
@media (max-width: 640px) {
  .technical-summary { grid-template-columns:1fr; }
  .strategy-filter-bar { gap:8px; }
  .strategy-filter { font-size:.88rem; padding:9px 11px; }
  .why-card { min-height:auto; padding:24px; }
  .lightbox-overlay { padding:16px; }
  .lightbox-close { right:4px; top:4px; }
  .metrics-table { min-width:720px; }
  .page-hero-box h1 { overflow-wrap:anywhere; }
  .desktop-nav { display:none; }
  .nav-shell { grid-template-columns:1fr auto; }
  .nav-cta { display:none; }
  .menu-toggle { display:block; }
}


/* ATHENEA bespoke identity layer — v18 */
.rail-item strong { margin-top:6px; font-size:1.02rem; letter-spacing:.04em; }
.rail-signal { position:relative; padding-left:36px; }
.rail-signal i { position:absolute; left:18px; top:50%; width:7px; height:7px; border-radius:50%; background:#48e49b; box-shadow:0 0 14px rgba(72,228,155,.9); }

.section-label { display:inline-flex; align-items:center; gap:12px; color:#88c7ff; }
.section-label::before { content:''; width:26px; height:2px; background:linear-gradient(90deg,var(--gold),transparent); box-shadow:0 0 12px rgba(243,192,91,.28); }

.card { border-radius:18px 18px 18px 4px; }
.card:nth-child(even) { border-radius:18px 4px 18px 18px; }
.card::before { content:''; position:absolute; top:0; left:0; width:64px; height:2px; background:linear-gradient(90deg,var(--gold),transparent); opacity:.85; }
.card:nth-child(even)::before { left:auto; right:0; background:linear-gradient(270deg,var(--blue),transparent); }
.card-icon { border-radius:12px 12px 12px 3px; }

.strategy-showcase { position:relative; overflow:hidden; }
.strategy-showcase::before { content:'ATHENEA / RESEARCH LIBRARY'; position:absolute; right:18px; top:16px; color:rgba(135,177,225,.18); letter-spacing:.20em; font-size:.68rem; pointer-events:none; }
.strategy-product-strip { display:grid; gap:10px; margin:22px 0 4px; }
.product-line { display:grid; grid-template-columns:46px 1fr auto; gap:14px; align-items:center; padding:14px 16px; border:1px solid rgba(75,151,245,.22); background:rgba(5,18,37,.58); clip-path:polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px)); }
.product-line > span { color:var(--gold); font-size:.8rem; font-weight:800; letter-spacing:.12em; }
.product-line small { display:block; color:#708baa; font-size:.65rem; letter-spacing:.16em; margin-bottom:3px; }
.product-line strong { font-size:1.06rem; }
.product-line em { color:#9cc8ef; font-style:normal; font-size:.78rem; white-space:nowrap; }
.product-volume { border-color:rgba(32,165,255,.28); }
.product-volume > span { color:#45baff; }

.athenea-process { display:block; padding:22px 26px; }
.process-head { display:flex; justify-content:space-between; gap:14px; padding-bottom:14px; margin-bottom:4px; border-bottom:1px solid rgba(73,145,235,.20); }
.process-head span { color:#7897b9; font-size:.68rem; letter-spacing:.18em; }
.process-head strong { color:var(--gold); font-size:.68rem; letter-spacing:.12em; }
.process-step { position:relative; display:grid; grid-template-columns:52px 1fr; gap:14px; align-items:center; min-height:76px; border-bottom:1px solid rgba(73,145,235,.12); }
.process-step:last-child { border-bottom:0; }
.process-step b { color:rgba(60,174,255,.9); font-size:.85rem; letter-spacing:.12em; }
.process-step b::after { content:''; position:absolute; left:38px; top:50%; width:1px; height:100%; background:linear-gradient(rgba(58,170,255,.45),rgba(243,192,91,.12)); }
.process-step:last-child b::after { height:50%; }
.process-step span { display:block; color:#7f9dbc; font-size:.76rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:4px; }
.process-step strong { font-size:1.25rem; }

.why-card { position:relative; overflow:hidden; border-radius:20px 20px 20px 5px; }
.why-card:nth-child(2) { border-radius:20px 5px 20px 20px; transform:translateY(18px); }
.why-card:nth-child(3) { border-radius:5px 20px 20px 20px; }
.why-card::after { content:''; position:absolute; right:-48px; bottom:-48px; width:140px; height:140px; border:1px solid rgba(36,159,255,.10); transform:rotate(45deg); }
.why-card:nth-child(2)::after { border-color:rgba(243,192,91,.13); }
.why-number { font-size:.70rem; }

.partners-box { clip-path:polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px)); border-radius:0; }
.contact-teaser { clip-path:polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px)); border-radius:0; }

/* Strategy catalog: make the library feel like a technical product archive */
.strategy-card-full { position:relative; border-radius:20px 20px 20px 5px; overflow:hidden; }
.strategy-card-full:nth-child(even) { border-radius:20px 5px 20px 20px; }
.strategy-card-full::before { content:'MNQ / NT8'; position:absolute; top:13px; right:16px; color:rgba(126,179,230,.32); font-size:.64rem; letter-spacing:.15em; z-index:2; }
.strategy-card-full:nth-child(even)::before { content:'MNQ / VOLUME'; color:rgba(243,192,91,.35); }
.strategy-kicker { display:flex; align-items:center; gap:10px; }
.strategy-kicker::before { content:''; width:22px; height:1px; background:var(--gold); }

@media (max-width: 980px) {
  .rail-item { min-height:66px; }
  .why-card:nth-child(2) { transform:none; }
}
@media (max-width: 620px) {
  .product-line { grid-template-columns:38px 1fr; }
  .product-line em { grid-column:2; }
}


/* enhanced moving hero candles */
.candles {
  position: absolute;
  inset: 10% 2% 10% 2%;
  opacity: .96;
  pointer-events: none;
}
.candles::before { content: none; }
.candles::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,12,24,.62) 0%, rgba(4,12,24,.14) 18%, rgba(4,12,24,0) 38%, rgba(4,12,24,.08) 72%, rgba(4,12,24,.28) 100%);
  pointer-events: none;
}
.hero-candle {
  position: absolute;
  width: var(--candle-w, 12px);
  height: calc(var(--wick-h, 110px) + 20px);
  left: var(--left, 10%);
  bottom: var(--bottom, 10%);
  transform-origin: center bottom;
  animation: heroCandleFloat var(--dur, 6.5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  z-index: 1;
}
.hero-candle .wick {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  height: var(--wick-h, 110px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(186, 216, 255, .72) 20%, rgba(89, 173, 255, .9) 48%, rgba(255, 214, 117, .88) 100%);
  box-shadow: 0 0 10px rgba(77, 171, 255, .18);
}
.hero-candle .body {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--body-h, 52px);
  bottom: var(--body-bottom, 26px);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--body-top), var(--body-bottom-color));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 18px var(--body-glow), inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-candle.bull .body {
  --body-top: rgba(92, 199, 255, .98);
  --body-bottom-color: rgba(26, 124, 255, .92);
  --body-glow: rgba(35, 156, 255, .30);
}
.hero-candle.bear .body {
  --body-top: rgba(255, 223, 134, .98);
  --body-bottom-color: rgba(229, 176, 58, .92);
  --body-glow: rgba(243, 192, 91, .26);
}
.hero-candle .ghost {
  position: absolute;
  left: 1px;
  width: calc(100% - 2px);
  height: var(--body-h, 52px);
  bottom: var(--body-bottom, 26px);
  border-radius: 4px;
  opacity: .25;
  filter: blur(6px);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.02));
}
@keyframes heroCandleFloat {
  0%, 100% { transform: translateY(0) scaleY(1); }
  20% { transform: translateY(-4px) scaleY(1.01); }
  40% { transform: translateY(-8px) scaleY(1.025); }
  60% { transform: translateY(-3px) scaleY(.995); }
  80% { transform: translateY(-7px) scaleY(1.018); }
}
@media (max-width: 920px) {
  .hero-candle { opacity: .78; }
}


/* v22 refinements: casco estático, velas de fondo por canvas y marca ajustada */
.hero-brand-card { z-index: 3; inset: 6% 2% 4% 12%; }
.hero-helmet { animation: none !important; width: clamp(320px, 36vw, 520px); }
.hero-brand-text {
  margin-top: 8px;
  font-size: clamp(3.2rem, 6.1vw, 5.8rem);
  letter-spacing: .18em;
  line-height: .95;
  white-space: nowrap;
}
.hero-brand-sub { text-align: center; max-width: 100%; }
.candles { display: none; }
@media (max-width: 1200px) {
  .hero-brand-card { inset: 7% 2% 4% 8%; }
  .hero-brand-text { font-size: clamp(2.8rem, 5.3vw, 4.8rem); letter-spacing: .14em; }
}
@media (max-width: 920px) {
  .hero-brand-text { font-size: clamp(2.4rem, 9vw, 4rem); letter-spacing: .12em; }
  .hero-helmet { width: clamp(240px, 58vw, 360px); }
}


/* v23 refinements: subtítulo hero corregido y velas más intensas */
.hero-brand-card {
  justify-content: flex-end;
  padding-bottom: 28px;
}
.hero-brand-text {
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  letter-spacing: .16em;
  margin-top: 10px;
}
.hero-brand-sub {
  margin-top: 10px;
  color: #f2c86b;
  letter-spacing: .12em;
  font-size: clamp(.9rem, 1vw, 1.12rem);
  line-height: 1.3;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(242, 200, 107, .14);
  opacity: .96;
}
@media (max-width: 1200px) {
  .hero-brand-sub { letter-spacing: .09em; font-size: clamp(.82rem, .95vw, 1rem); }
}
@media (max-width: 920px) {
  .hero-brand-card { padding-bottom: 18px; }
  .hero-brand-sub { white-space: normal; text-align: center; max-width: 92%; }
}


/* v24 hero polish */
.hero-brand-card { inset: 12% 2% 5% 10% !important; }
.hero-helmet { width: clamp(300px, 34vw, 500px) !important; }
.hero-brand-sub { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 1200px) {
  .hero-brand-card { inset: 11% 2% 4% 7% !important; }
  .hero-helmet { width: clamp(280px, 33vw, 440px) !important; }
}
@media (max-width: 920px) {
  .hero-brand-card { inset: 10% 2% 4% 4% !important; }
}


/* v25 - NinjaTrader Ecosystem compliance */
.partner { padding: 24px !important; }
.partner img { margin: 18px; max-width: calc(100% - 36px); }
.ninjatrader-trademark-disclosure {
  width: min(calc(100% - 48px), var(--container));
  margin: 22px auto 0;
  padding: 18px 22px;
  position: relative; z-index: 2;
  border: 1px solid rgba(101,169,255,.24);
  border-radius: 18px;
  background: rgba(3,12,26,.86);
  color: #c4d1e3;
  font-size: .92rem;
  line-height: 1.65;
}
.performance-compliance-banner { padding: 0 0 20px; }
.performance-compliance-inner {
  padding: 18px 22px;
  border: 1px solid rgba(243,192,91,.34);
  border-radius: 18px;
  background: rgba(17,26,43,.90);
  color: #eef4fc;
  font-size: 1rem;
  line-height: 1.65;
}
.performance-compliance-inner strong { color: #f3c05b; }
.social-risk-guidance {
  margin-top: 30px; padding: 24px; border-radius: 20px;
  border: 1px solid rgba(67,148,247,.25); background: rgba(7,20,41,.78);
}
.compliance-footer-inner { padding: 26px 0; }
@media (max-width: 640px) {
  .ninjatrader-trademark-disclosure { width: min(calc(100% - 28px), var(--container)); font-size: .84rem; }
  .partner img { margin: 18px; }
}


/* v26 — navegación con secciones reales */
#tecnologia, #metodologia, #riesgo, #plataforma { scroll-margin-top: 120px; }
.section-intro { max-width: 900px; margin-bottom: 28px; }
.section-intro h2, .dedicated-copy h2, .partners-title { margin: 0 0 14px; font-size: clamp(2rem, 3.2vw, 3.2rem); }
.section-intro p, .dedicated-copy > p, .partners-copy { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }
.dedicated-section { padding: 34px 0; }
.dedicated-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: stretch; }
.dedicated-copy, .risk-visual { padding: 32px; border-radius: 28px; background: linear-gradient(180deg, rgba(7,20,41,.76), rgba(4,12,24,.90)); border: 1px solid rgba(67,148,247,.28); }
.dedicated-points { display: grid; gap: 12px; margin-top: 24px; }
.dedicated-points > div { display: grid; grid-template-columns: 54px 1fr; column-gap: 14px; padding: 17px 18px; border-radius: 18px; background: rgba(7,18,37,.72); border: 1px solid rgba(72,144,230,.20); }
.dedicated-points span { grid-row: 1 / 3; color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.dedicated-points strong { font-size: 1.08rem; }
.dedicated-points p { margin: 5px 0 0; color: var(--muted); line-height: 1.55; }
.risk-visual { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 360px; position: relative; overflow: hidden; }
.risk-visual::before { content: ''; position: absolute; width: 310px; height: 310px; border: 1px solid rgba(35,164,255,.18); border-radius: 50%; box-shadow: 0 0 70px rgba(32,165,255,.08); }
.risk-ring { width: 220px; height: 220px; border-radius: 50%; display: grid; place-content: center; text-align: center; border: 2px solid rgba(243,192,91,.62); box-shadow: inset 0 0 45px rgba(13,99,214,.12), 0 0 32px rgba(243,192,91,.08); position: relative; z-index: 1; }
.risk-ring span { color: #89bce9; letter-spacing: .28em; font-size: .78rem; }
.risk-ring strong { font-size: 2rem; margin-top: 8px; }
.risk-line { margin-top: 28px; display: flex; gap: 12px; align-items: center; color: #b9cbe2; position: relative; z-index: 1; }
.risk-line b { color: var(--gold); }
.partners-title { text-align: center; }
.partners-copy { max-width: 900px; margin: 0 auto 24px; text-align: center; }
@media (max-width: 980px) { .dedicated-grid { grid-template-columns: 1fr; } }
