/* Invistium TR — Aggressive dark trading floor */
:root {
  --bg: #0c0d10;
  --surface: #171a1f;
  --surface-2: #1f232a;
  --surface-3: #272b33;
  --border: #2d323c;
  --text: #f2f4f8;
  --text-2: #c8cbd2;
  --mute: #8b8e95;
  --yellow: #fbbf24;
  --yellow-d: #d97706;
  --yellow-l: #fde68a;
  --red: #ef4444;
  --red-d: #b91c1c;
  --green: #22c55e;
  --green-d: #15803d;
  --shadow-s: 0 1px 2px rgba(0,0,0,.4);
  --shadow-m: 0 10px 30px rgba(0,0,0,.5);
  --glow-y: 0 0 24px rgba(251,191,36,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Container */
._c { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* Display — Anton CONDENSED BOLD CAPS */
h1, h2, h3, h4 { font-family: 'Anton', 'Impact', 'Arial Narrow', sans-serif; font-weight: 400; line-height: 0.96; letter-spacing: 0.005em; text-transform: uppercase; }
h1 { font-size: clamp(3.2rem, 7.5vw, 6rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 1.8em 0 .6em; }
h3 { font-size: 1.5rem; margin: 1.6em 0 .5em; }
.hl { color: var(--yellow); }
.hl-r { color: var(--red); }
.hl-g { color: var(--green); }

p { margin: 0 0 1.1em; max-width: 64ch; }
.lead { font-size: 1.2rem; color: var(--text-2); max-width: 60ch; line-height: 1.55; font-weight: 400; }

/* Mono — Roboto Mono ticker style */
.eyebrow, .mono { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); font-weight: 500; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(251,191,36,.08); border: 1px solid var(--yellow-d); border-radius: 0; }
.eyebrow .dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; display: inline-block; box-shadow: 0 0 8px var(--yellow); }

/* Header */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(12,13,16,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; max-width: 1320px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name { font-family: 'Anton', sans-serif; font-size: 1.8rem; font-weight: 400; color: var(--text); letter-spacing: 0.02em; text-transform: uppercase; }
.brand-name span { color: var(--yellow); }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 0.92rem; color: var(--text-2); font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--yellow); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; transition: all .15s; border-radius: 0; font-family: 'Roboto Mono', monospace; }
.btn-primary, .nav a.btn-primary { background: var(--yellow); color: var(--bg); }
.btn-primary:hover, .nav a.btn-primary:hover { background: var(--yellow-l); color: var(--bg); }
.btn-ghost { background: transparent; border: 1.5px solid var(--yellow); color: var(--yellow); }
.btn-ghost:hover { background: var(--yellow); color: var(--bg); }
.btn-red { background: var(--red); color: var(--text); }
.btn-red:hover { background: var(--red-d); }

.burger { display: none; }
@media (max-width: 920px) {
  .nav { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid var(--yellow); color: var(--yellow); background: rgba(251,191,36,.08); }
  body.menu-open .nav { display: flex; position: fixed; inset: 64px 0 0; flex-direction: column; gap: 0; background: var(--bg); padding: 20px 28px; overflow-y: auto; z-index: 100; }
  body.menu-open .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1.15rem; }
}

/* Hero */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1000px 600px at 80% -10%, rgba(251,191,36,.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at -10% 100%, rgba(239,68,68,.05), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 80px; align-items: start; position: relative; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } }
.hero h1 { margin-top: 28px; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 50px; margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--border); }
.hero-stat .v { font-family: 'Anton', sans-serif; font-size: 2.8rem; font-weight: 400; color: var(--text); display: block; line-height: 0.95; letter-spacing: 0.005em; }
.hero-stat .v.acc { color: var(--yellow); text-shadow: var(--glow-y); }
.hero-stat .v.up::after { content: ' ↑'; color: var(--green); font-size: 0.7em; }
.hero-stat .l { font-family: 'Roboto Mono', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); margin-top: 10px; font-weight: 500; }
@media (max-width: 600px) { .hero-stats { gap: 26px; flex-wrap: wrap; } .hero-stat .v { font-size: 2rem; } }

/* Form */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 38px 36px;
  position: relative;
  box-shadow: var(--shadow-m);
}
.lead-form::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
}
.lead-form::after {
  content: '';
  position: absolute; top: -10px; right: 32px;
  width: 30px; height: 30px;
  background: var(--yellow);
  transform: rotate(45deg);
  box-shadow: var(--glow-y);
}
.lead-form .form-eyebrow { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 500; }
.lead-form .form-eyebrow .price { color: var(--text-2); }
.lead-form h3 { font-size: 2rem; margin: 0 0 8px; color: var(--text); letter-spacing: 0.01em; }
.lead-form .form-sub { font-size: 0.94rem; color: var(--mute); margin-bottom: 26px; line-height: 1.55; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: 'Roboto Mono', monospace; font-size: 0.7rem; color: var(--text-2); margin-bottom: 7px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.field input { width: 100%; padding: 13px 14px; border: 1px solid var(--border); background: var(--surface-2); font-size: 0.95rem; font-family: inherit; color: var(--text); transition: all .15s; border-radius: 0; }
.field input::placeholder { color: var(--mute); }
.field input:focus { outline: none; border-color: var(--yellow); background: var(--surface-3); box-shadow: 0 0 0 1px var(--yellow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.iti { width: 100%; }

/* intl-tel-input dropdown — light contrast over dark form */
.iti__country-list {
  background: #ffffff !important;
  color: #16181d !important;
  border: 1px solid #d3d6dc !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.4) !important;
  max-height: 300px !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 0.92rem !important;
}
.iti__country { color: #16181d !important; padding: 7px 10px !important; }
.iti__country-name { color: #16181d !important; }
.iti__dial-code { color: #6e7480 !important; }
.iti__country:hover, .iti__country.iti__highlight {
  background: #fef3c7 !important;
  color: #d97706 !important;
}
.iti__divider { border-bottom: 1px solid #d3d6dc !important; }
.iti__selected-flag { background: rgba(255,255,255,.06) !important; }
.iti__selected-flag:hover, .iti__selected-flag:focus { background: rgba(255,255,255,.12) !important; }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--text) !important; }

.lead-form .submit { width: 100%; padding: 16px; background: var(--yellow); color: var(--bg); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em; margin-top: 8px; transition: all .15s; font-family: 'Roboto Mono', monospace; text-transform: uppercase; }
.lead-form .submit:hover { background: var(--text); color: var(--bg); }
.lead-form .fine { font-size: 0.78rem; color: var(--mute); margin-top: 16px; line-height: 1.55; }
.lead-form .fine a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }

/* Trust bar */
.trust { padding: 22px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.trust-msg { font-size: 0.92rem; color: var(--text-2); }
.trust-msg em { color: var(--yellow); font-weight: 700; font-style: normal; }
.trust-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); font-weight: 500; }
.trust-badge svg { width: 16px; height: 16px; color: var(--yellow); }

/* Sections */
.sec { padding: 110px 0; }
.sec-surface { background: var(--surface); }
.sec-yellow { background: var(--yellow); color: var(--bg); position: relative; }
.sec-yellow h2, .sec-yellow h3 { color: var(--bg); }
.sec-yellow p { color: rgba(12,13,16,.78); }
.sec-yellow .hl { color: var(--red); }
.sec-hd { max-width: 800px; margin-bottom: 64px; }
.sec-hd h2 { margin-top: 14px; }
.sec-hd p { color: var(--text-2); margin-top: 16px; font-size: 1.1rem; max-width: 60ch; }
.sec-yellow .sec-hd p { color: rgba(12,13,16,.78); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card { padding: 36px 32px; background: var(--surface); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; transition: all .25s; }
.card:hover { background: var(--surface-2); }
.card:hover::before { background: var(--red); }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--yellow); transition: background .25s; }
.card-num { font-family: 'Roboto Mono', monospace; font-size: 0.74rem; letter-spacing: 0.14em; color: var(--yellow); font-weight: 500; margin-bottom: 22px; padding-top: 8px; }
.card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--surface-3); color: var(--yellow); margin-bottom: 22px; border: 1px solid var(--border); }
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.4rem; margin: 0 0 12px; color: var(--text); line-height: 1.05; letter-spacing: 0.01em; }
.card p { font-size: 0.95rem; color: var(--mute); margin: 0; line-height: 1.6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--border); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 40px 32px; border-right: 1px solid var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.step .num { display: block; font-family: 'Anton', sans-serif; font-size: 6rem; font-weight: 400; color: var(--yellow); line-height: 0.85; margin-bottom: 24px; letter-spacing: -0.01em; text-shadow: var(--glow-y); }
.step h3 { font-size: 1.5rem; margin: 0 0 12px; color: var(--text); }
.step p { font-size: 0.96rem; color: var(--mute); margin: 0; line-height: 1.6; }

/* Big stats banner (yellow bg) */
.bigstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 900px) { .bigstats { grid-template-columns: repeat(2, 1fr); } }
.bigstat { text-align: left; padding: 70px 32px; border-left: 1px solid rgba(12,13,16,.18); }
.bigstat:first-child { border-left: none; }
@media (max-width: 900px) { .bigstat:nth-child(3) { border-left: none; } }
.bigstat .v { font-family: 'Anton', sans-serif; font-size: clamp(3.2rem, 6vw, 5.4rem); font-weight: 400; color: var(--bg); display: block; line-height: 0.9; letter-spacing: 0.005em; }
.bigstat .l { font-family: 'Roboto Mono', monospace; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(12,13,16,.7); margin-top: 18px; font-weight: 500; }

/* Testimonials */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .tcards { grid-template-columns: 1fr; } }
.tcard { padding: 36px 32px; background: var(--surface); border: 1px solid var(--border); position: relative; }
.tcard::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--yellow); }
.tcard .stars { color: var(--yellow); font-family: 'Roboto Mono', monospace; font-size: 0.9rem; letter-spacing: 0.18em; margin-bottom: 16px; font-weight: 500; }
.tcard p { font-size: 1.02rem; color: var(--text); margin: 0 0 28px; line-height: 1.6; }
.tcard-by { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.tcard-av { width: 40px; height: 40px; background: var(--yellow); color: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.4rem; border-radius: 0; }
.tcard-meta strong { font-weight: 700; font-size: 0.95rem; color: var(--text); display: block; }
.tcard-meta span { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; }

/* FAQ */
.faq-list { max-width: 900px; }
.faq-i { border-bottom: 1px solid var(--border); padding: 26px 0; }
.faq-i:first-child { border-top: 1px solid var(--border); padding-top: 30px; }
.faq-i summary { font-family: 'Anton', sans-serif; font-size: 1.3rem; font-weight: 400; cursor: pointer; list-style: none; display: flex; align-items: start; justify-content: space-between; gap: 16px; color: var(--text); line-height: 1.1; text-transform: uppercase; letter-spacing: 0.015em; }
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i summary::after { content: '+'; font-family: 'Roboto Mono', monospace; font-size: 1.6rem; color: var(--yellow); flex-shrink: 0; line-height: 1; transition: transform .2s; font-weight: 500; }
.faq-i[open] summary::after { content: '−'; }
.faq-i p { padding-top: 16px; color: var(--text-2); font-size: 1rem; line-height: 1.65; }

/* CTA band */
.ctaband { padding: 120px 0; background: var(--bg); color: var(--text); text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ctaband::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(251,191,36,.14), transparent 70%);
  pointer-events: none;
}
.ctaband-in { position: relative; max-width: 820px; margin: 0 auto; padding: 0 28px; }
.ctaband h2 { color: var(--text); margin-bottom: 22px; }
.ctaband p { color: var(--text-2); margin: 0 auto 36px; font-size: 1.18rem; max-width: 580px; }
.ctaband .btn { background: var(--yellow); color: var(--bg); padding: 16px 38px; font-size: 0.96rem; box-shadow: var(--glow-y); }
.ctaband .btn:hover { background: var(--text); color: var(--bg); }

/* Footer */
.ft { background: var(--bg); color: var(--mute); padding: 80px 0 30px; border-top: 1px solid var(--border); }
.ft a { color: var(--text-2); transition: color .15s; }
.ft a:hover { color: var(--yellow); }
.ft-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 44px; margin-bottom: 56px; }
@media (max-width: 1000px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.ft-about { font-size: 0.92rem; line-height: 1.65; margin-bottom: 28px; }
.ft-col h4 { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; font-weight: 500; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 11px; }
.ft-col li a { font-size: 0.93rem; }
.ft-newsletter input { width: 100%; padding: 11px 14px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 0.88rem; font-family: inherit; margin-bottom: 8px; }
.ft-newsletter input::placeholder { color: var(--mute); }
.ft-newsletter button { width: 100%; padding: 11px; background: var(--yellow); color: var(--bg); font-size: 0.78rem; border-radius: 0; font-family: 'Roboto Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; transition: all .15s; }
.ft-newsletter button:hover { background: var(--text); }
.ft-risk { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 26px; font-size: 0.84rem; line-height: 1.65; color: var(--text-2); }
.ft-risk strong { color: var(--red); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; font-size: 0.84rem; }
.ft-certs { display: flex; gap: 22px; flex-wrap: wrap; }
.ft-certs span { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--yellow); }

/* Subpage */
.subhero { padding: 80px 0 60px; background: var(--surface); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.subhero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 400px at 95% 0%, rgba(251,191,36,.10), transparent 60%); pointer-events: none; }
.subhero > * { position: relative; }
.crumb { font-family: 'Roboto Mono', monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); margin-bottom: 24px; font-weight: 500; }
.crumb a { color: var(--yellow); }
.crumb a:hover { color: var(--red); }
.crumb span { color: var(--text); }
.subhero h1 { margin: 22px 0 28px; }
.subhero .sublead { font-size: 1.2rem; color: var(--text-2); max-width: 64ch; line-height: 1.55; }
.subbody { max-width: 760px; padding: 80px 0 110px; }
.subbody p { font-size: 1.05rem; line-height: 1.75; color: var(--text-2); }
.subbody h2 { margin: 2.4em 0 .8em; color: var(--text); }
.subbody h2:first-child { margin-top: 0; }
.subbody ul, .subbody ol { margin: 0 0 1.4em 1.4em; padding-left: .5em; }
.subbody li { margin-bottom: .75em; font-size: 1rem; line-height: 1.7; color: var(--text-2); }
.subbody li strong { color: var(--text); font-weight: 700; }
.subbody a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.subbody a:hover { color: var(--red); }

/* Callouts */
.callout { margin: 36px 0; padding: 26px 30px; background: var(--surface-2); border-left: 4px solid var(--yellow); }
.callout.red { border-left-color: var(--red); background: rgba(239,68,68,.06); }
.callout p { margin: 0; font-size: 1rem; color: var(--text-2); line-height: 1.65; }
.callout strong { color: var(--text); }

/* KPI grid */
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 32px 0 44px; border-left: 1px solid var(--border); }
@media (max-width: 720px) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi { padding: 32px 28px; background: var(--surface); border-right: 1px solid var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.kpi::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--yellow); }
.kpi .v { font-family: 'Anton', sans-serif; font-size: 2.6rem; font-weight: 400; color: var(--yellow); line-height: 1; padding-top: 10px; letter-spacing: 0.005em; }
.kpi .l { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-top: 14px; font-weight: 500; }

/* Glossary */
.glo-row { display: grid; grid-template-columns: 240px 1fr; gap: 36px; padding: 24px 0; border-bottom: 1px solid var(--border); }
@media (max-width: 720px) { .glo-row { grid-template-columns: 1fr; gap: 8px; } }
.glo-term { font-family: 'Anton', sans-serif; font-size: 1.25rem; font-weight: 400; color: var(--yellow); padding-top: 4px; letter-spacing: 0.01em; text-transform: uppercase; }
.glo-def { font-size: 1rem; line-height: 1.65; color: var(--text-2); }

/* Blog */
.blog-row { display: grid; grid-template-columns: 140px 1fr; gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--border); }
@media (max-width: 720px) { .blog-row { grid-template-columns: 1fr; gap: 8px; } }
.blog-date { font-family: 'Roboto Mono', monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); padding-top: 8px; font-weight: 500; }
.blog-title { font-family: 'Anton', sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 8px; line-height: 1.1; letter-spacing: 0.015em; text-transform: uppercase; }
.blog-desc { font-size: 0.98rem; line-height: 1.65; color: var(--text-2); }
.blog-desc em { color: var(--yellow); font-size: 0.78rem; font-family: 'Roboto Mono', monospace; letter-spacing: 0.1em; font-style: normal; font-weight: 500; }

/* Subpage FAQ */
.subfaq details { border-bottom: 1px solid var(--border); padding: 22px 0; }
.subfaq summary { font-family: 'Anton', sans-serif; font-weight: 400; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.2rem; color: var(--text); line-height: 1.1; text-transform: uppercase; letter-spacing: 0.015em; }
.subfaq summary::-webkit-details-marker { display: none; }
.subfaq summary::after { content: '+'; font-family: 'Roboto Mono', monospace; color: var(--yellow); font-size: 1.4rem; font-weight: 500; }
.subfaq details[open] summary::after { content: '−'; }
.subfaq p { padding-top: 14px; font-size: 0.98rem; color: var(--text-2); margin: 0; line-height: 1.65; }

/* Related box */
.relbox { margin: 64px 0 0; padding: 36px 32px; background: var(--surface); border: 1px solid var(--border); position: relative; }
.relbox::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 4px; background: var(--yellow); }
.relbox h4 { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; font-weight: 500; padding-top: 6px; }
.rel-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 26px; }
@media (max-width: 720px) { .rel-links { grid-template-columns: 1fr; } }
.rel-links a { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.96rem; color: var(--text); font-weight: 500; border-bottom: 1px dashed transparent; font-family: 'Inter Tight', sans-serif; }
.rel-links a::before { content: '→'; color: var(--yellow); font-family: 'Roboto Mono', monospace; font-weight: 500; }
.rel-links a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

/* Roles */
.role { padding: 32px 0; border-bottom: 1px solid var(--border); }
.role h3 { font-size: 1.4rem; margin: 0 0 8px; color: var(--text); }
.role .meta { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; font-weight: 500; }
.role p { font-size: 1rem; color: var(--text-2); margin: 0; line-height: 1.65; }
