:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: #0d0e0e;
  --panel-2: #111212;
  --text: #ece9e2;
  --muted: #8f8f8a;
  --muted-2: #656663;
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.18);
  --red: #d42c25;
  --red-dark: #8e1713;
  --green: #4cab59;
  --amber: #b98025;
  --max: 1500px;
  --serif: "Playfair Display", Georgia, serif;
  --condensed: "Oswald", Impact, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}
body::selection { color: #fff; background: var(--red); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .045;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 10%, #000, transparent 78%);
}
.section-shell { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(4,4,4,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; white-space: nowrap; }
.brand-copy { display: inline-flex; align-items: center; gap: 9px; }
.brand-logo-shell {
  width: 72px;
  height: 52px;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(252,251,248,.98), rgba(231,227,217,.92));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 10px 26px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.55);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-rule { width: 2px; height: 28px; background: var(--red); box-shadow: 0 0 16px rgba(212,44,37,.45); }
.brand-case { font: 500 23px/1 var(--serif); letter-spacing: .02em; }
.brand-name { color: var(--red); font: 600 22px/1 var(--serif); letter-spacing: .06em; }
.nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); }
.nav a { position: relative; color: #8e8d89; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -13px; height: 2px; background: var(--red); transition: right .25s; }
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-cta { display: inline-flex; align-items: center; gap: 12px; min-height: 42px; padding: 0 18px; color: var(--red); border: 1px solid rgba(212,44,37,.45); text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .08em; transition: .2s; }
.header-cta:hover { background: var(--red); color: white; }
.header-cta svg { font-size: 16px; }
.nav-toggle { display: none; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(570px, 1.08fr);
  align-items: center;
  gap: clamp(56px, 7vw, 130px);
  padding-block: 68px 52px;
  position: relative;
}
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; }
.hero::before { width: 420px; height: 420px; left: 34%; top: 12%; background: radial-gradient(circle, rgba(174,31,25,.14), transparent 68%); filter: blur(20px); }
.hero::after { inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.hero-logo-card {
  width: min(260px, 72vw);
  margin-bottom: 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(253,252,248,.99), rgba(225,220,209,.96));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(212,44,37,.08), inset 0 1px 0 rgba(255,255,255,.75);
}
.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}
.kicker { display: inline-flex; align-items: center; min-height: 29px; padding-inline: 10px; border: 1px solid var(--line-strong); color: #a6a5a0; font: 500 11px/1 var(--condensed); letter-spacing: .12em; text-transform: uppercase; }
.case-word { margin: 22px 0 -4px; font: 500 clamp(45px, 5.2vw, 80px)/.9 var(--serif); color: #ece8df; }
.hero h1 { margin: 0; color: var(--red); font: 600 clamp(74px, 8.7vw, 138px)/.86 var(--serif); letter-spacing: -.045em; text-shadow: 0 0 44px rgba(212,44,37,.13); }
.hero-subtitle { margin: 26px 0 0; font: 500 clamp(22px, 2.3vw, 34px)/1.2 var(--serif); color: #e4dfd5; letter-spacing: -.015em; }
.hero-description { max-width: 660px; margin: 19px 0 0; color: #9f9e99; line-height: 1.72; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { font-size: 17px; }
.button-red { background: linear-gradient(180deg, #dd332c, #b51f19); border-color: #e23a33; color: white; box-shadow: 0 8px 32px rgba(152,18,13,.16); }
.button-red:hover { background: #ed3d35; }
.button-dark { background: rgba(255,255,255,.025); border-color: var(--line-strong); color: #c7c5bf; }
.button-dark:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.demo-note { max-width: 650px; margin-top: 18px; color: #666661; font-size: 10px; line-height: 1.5; }

.hero-investigation { min-height: 510px; display: grid; grid-template-columns: minmax(330px, 1fr) 225px; gap: 26px; align-items: center; position: relative; }
.hero-investigation::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.045); background: linear-gradient(135deg, rgba(255,255,255,.018), transparent 45%); }
.case-code { position: absolute; right: 18px; top: 13px; color: #343431; font: 500 9px var(--condensed); letter-spacing: .18em; }
.dossier-wrap { width: min(430px, 100%); aspect-ratio: .91; position: relative; margin-left: 7%; transform: rotate(1.2deg); }
.dossier-shadow, .dossier { position: absolute; inset: 0; border-radius: 5px; }
.dossier-shadow { border: 1px solid #292a29; background: #121312; box-shadow: 0 22px 65px rgba(0,0,0,.65); }
.dossier-shadow-one { transform: rotate(-5deg) translate(-11px, 7px); }
.dossier-shadow-two { transform: rotate(3deg) translate(15px, 7px); }
.dossier { padding: 28px; border: 1px solid #3a3a37; background: linear-gradient(145deg, #23231f, #121210 64%); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 25px 90px rgba(0,0,0,.65); }
.dossier::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px); background-size: 100% 13px; mix-blend-mode: soft-light; }
.clip { position: absolute; z-index: 4; width: 70px; height: 25px; left: 50%; top: 0; transform: translate(-50%, -43%); border: 1px solid #555; border-radius: 4px; background: #1b1b19; box-shadow: 0 4px 6px rgba(0,0,0,.5); }
.dossier-photo { position: relative; height: 61%; overflow: hidden; border: 7px solid #ccc4af; filter: sepia(.5) grayscale(.7) contrast(1.18); box-shadow: 0 9px 25px rgba(0,0,0,.5); transform: rotate(-1deg); }
.photo-sky { position: absolute; inset: 0; background: radial-gradient(circle at 25% 25%, #8d8b81, transparent 45%), linear-gradient(#4c4b47, #242421); }
.photo-sky::before, .photo-sky::after { content: ""; position: absolute; background: rgba(10,10,10,.45); }
.photo-sky::before { width: 3px; height: 115%; right: 21%; top: -7%; transform: rotate(-5deg); box-shadow: 28px 0 0 rgba(10,10,10,.15); }
.photo-sky::after { width: 110%; height: 2px; right: -22%; top: 31%; transform: rotate(-9deg); box-shadow: 0 9px 0 rgba(10,10,10,.3); }
.school-silhouette { position: absolute; inset: auto 5% 4%; height: 56%; }
.school-roof { position: absolute; left: 2%; right: 2%; top: 1%; height: 20%; background: #171716; clip-path: polygon(0 100%, 16% 0, 80% 0, 100% 100%); }
.school-body { position: absolute; inset: 18% 5% 0; background: linear-gradient(#252522, #0f0f0e); border-top: 4px solid #0b0b0a; }
.school-door { position: absolute; width: 20%; height: 37%; left: 40%; bottom: 0; background: #080808; border: 3px solid #32322d; }
.school-window { position: absolute; width: 18%; height: 21%; bottom: 14%; background: #080808; border: 3px solid #36362f; }
.school-window.one { left: 13%; }
.school-window.two { right: 13%; }
.school-sign { position: absolute; left: 50%; top: 30%; transform: translateX(-50%); padding: 6px 12px; background: #c5baa3; color: #161616; font: 600 12px/1.15 var(--condensed); text-align: center; letter-spacing: .05em; border: 1px solid #2c2c29; }
.stamp { position: absolute; z-index: 5; left: 15%; top: 25%; transform: rotate(-13deg); padding: 7px 13px; color: #921810; border: 4px double #921810; font: 600 clamp(18px, 2.1vw, 33px)/1 var(--condensed); letter-spacing: .04em; opacity: .88; mix-blend-mode: multiply; }
.dossier-logo-sticker {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  width: 145px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(249,246,240,.98), rgba(224,218,206,.96));
  box-shadow: 0 10px 28px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.6);
  transform: rotate(-7deg);
}
.dossier-logo-sticker img {
  display: block;
  width: 100%;
  height: auto;
}
.paper-lines { display: grid; gap: 10px; margin-top: 25px; opacity: .3; }
.paper-lines i { height: 1px; background: linear-gradient(90deg, #beb7a7 65%, transparent); }
.paper-lines i:nth-child(2) { width: 84%; }.paper-lines i:nth-child(3) { width: 92%; }.paper-lines i:nth-child(4) { width: 71%; }
.investigation-index { display: grid; gap: 10px; padding-right: 16px; }
.investigation-index a { min-height: 78px; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 12px; padding: 11px 8px; border-bottom: 1px solid var(--line); transition: .2s; }
.investigation-index a:hover { background: rgba(255,255,255,.025); transform: translateX(3px); }
.investigation-index svg { color: var(--red); font-size: 23px; }
.investigation-index b { display: block; margin-bottom: 5px; color: #d4d0c8; font: 500 17px/1 var(--serif); }
.investigation-index small { color: #686965; font-size: 10px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-block: 20px 34px; border-bottom: 1px solid var(--line); }
.stat-card { min-height: 122px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 18px; padding: 22px; background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); border: 1px solid var(--line); border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,.02); }
.stat-card > svg { color: var(--red); font-size: 40px; }
.stat-card strong { display: block; margin-bottom: 5px; color: #dfdcd5; font: 500 35px/1 var(--serif); }
.stat-card .date-value { font-size: 22px; letter-spacing: -.02em; }
.stat-card span { display: block; color: #b3b1aa; font: 500 11px/1.2 var(--condensed); letter-spacing: .07em; text-transform: uppercase; }
.stat-card small { display: block; margin-top: 5px; color: #595a57; font-size: 10px; }

.content-section, .documents-section, .testimonials-section { display: grid; grid-template-columns: 250px 1fr; gap: 50px; padding-block: 48px; border-bottom: 1px solid var(--line); }
.section-intro { align-self: start; }
.section-label { margin: 0 0 11px; color: #dad7d0; font: 500 25px/1.12 var(--serif); }
.section-intro h2 { margin: 0; font: 600 44px/.98 var(--serif); letter-spacing: -.035em; }
.section-intro > p:not(.section-label) { color: #747571; font-size: 12px; line-height: 1.65; }
.outline-link { min-height: 40px; display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; padding: 0 14px; border: 1px solid var(--line-strong); color: #aaa9a3; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.outline-link:hover { color: white; border-color: #555; }
.outline-link svg { font-size: 15px; }

.timeline { min-width: 0; display: grid; grid-template-columns: repeat(5, 1fr); position: relative; padding: 21px 0 5px; }
.timeline-line { position: absolute; left: 2%; right: 2%; top: 43px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.45), rgba(255,255,255,.12)); }
.timeline article { position: relative; padding: 0 25px 15px 14px; }
.timeline article:first-of-type { padding-left: 0; }
.timeline time { display: block; margin-bottom: 39px; color: var(--red); font: 600 14px/1 var(--condensed); letter-spacing: .05em; }
.timeline-dot { position: absolute; top: 17px; left: 13px; width: 8px; height: 8px; border: 2px solid #aaa9a5; border-radius: 50%; background: var(--bg); }
.timeline article:first-of-type .timeline-dot { left: 0; }
.timeline h3 { margin: 0 0 10px; color: #c6c3bc; font: 500 16px/1.15 var(--serif); }
.timeline p { margin: 0; color: #676864; font-size: 11px; line-height: 1.6; }

.documents-section { padding-top: 46px; }
.document-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.doc-filter { padding: 8px 10px; border: 1px solid var(--line); background: transparent; color: #797a76; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.doc-filter:hover, .doc-filter.active { color: white; border-color: rgba(212,44,37,.75); background: rgba(212,44,37,.12); }
.document-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.document-card { min-width: 0; position: relative; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, #111211, #090a0a); transition: transform .25s, border-color .25s; }
.document-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.25); }
.document-card.hidden { display: none; }
.doc-art { height: 137px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: #171815; }
.doc-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.6)); }
.doc-official { padding: 22px 25px; background: linear-gradient(145deg,#a39b88,#45433b); filter: sepia(.35) grayscale(.5); transform-origin: center; }
.doc-official .crest { display: grid; place-items: center; width: 34px; height: 34px; margin: 0 auto 14px; border: 2px solid #222; border-radius: 50%; color: #222; font: 600 12px var(--serif); }
.doc-official i { display: block; height: 2px; margin: 7px auto; width: 82%; background: #252521; opacity: .55; }
.doc-archive { display: flex; align-items: end; gap: 5px; padding: 26px 16px 0; background: linear-gradient(#1c1b18, #070808); }
.doc-archive b { flex: 1; height: 92px; background: linear-gradient(90deg,#2b2c29,#111210); border: 1px solid #484844; box-shadow: 5px 0 12px rgba(0,0,0,.45); }
.doc-archive b::after { content: ""; display: block; height: 9px; margin: 11px 5px; background: #817d6e; opacity: .45; }
.doc-chat { padding: 25px 13px; background: linear-gradient(135deg,#17211a,#060907); }
.doc-chat i { display: block; width: 78%; height: 21px; margin: 6px 0 6px auto; border-radius: 8px 8px 2px 8px; background: #334b37; opacity: .85; }
.doc-chat i:nth-child(2) { width: 62%; margin-left: 0; background: #282b28; }
.doc-chat i:nth-child(3) { width: 70%; }
.doc-receipt { background: linear-gradient(145deg,#6c675a,#22221e); }
.doc-receipt i { position: absolute; width: 48%; height: 114px; top: 10px; background: #bcb39d; box-shadow: 0 6px 20px rgba(0,0,0,.45); }
.doc-receipt i:nth-child(1) { left: 3%; transform: rotate(-11deg); }.doc-receipt i:nth-child(2) { right: 4%; transform: rotate(8deg); }.doc-receipt i:nth-child(3) { left: 23%; transform: rotate(-2deg); }.doc-receipt i:nth-child(4) { width: 80%; height: 2px; left: 10%; top: 44px; background: #383832; box-shadow: 0 12px 0 #383832, 0 24px 0 #383832, 0 36px 0 #383832; }
.doc-audio { display: flex; align-items: center; justify-content: center; gap: 5px; background: radial-gradient(circle, rgba(212,44,37,.13), transparent 50%), #080909; }
.doc-audio span { width: 3px; background: var(--red); box-shadow: 0 0 9px rgba(212,44,37,.6); }
.doc-audio span:nth-child(1), .doc-audio span:nth-child(7) { height: 20px; }.doc-audio span:nth-child(2), .doc-audio span:nth-child(6) { height: 52px; }.doc-audio span:nth-child(3), .doc-audio span:nth-child(5) { height: 31px; }.doc-audio span:nth-child(4) { height: 74px; }
.doc-card-copy { padding: 16px 13px 19px; }
.doc-card-copy h3 { margin: 0 0 9px; min-height: 38px; color: #d7d3ca; font: 500 16px/1.12 var(--serif); }
.doc-card-copy p { min-height: 55px; margin: 0 0 14px; color: #70716d; font-size: 10px; line-height: 1.55; }
.doc-card-copy span { display: flex; align-items: center; gap: 6px; color: #555652; font-size: 9px; }
.card-open { position: absolute; inset: 0; border: 0; background: transparent; color: transparent; cursor: pointer; }

.verification { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding-block: 18px 34px; border-bottom: 1px solid var(--line); }
.verification-box { min-height: 250px; padding: 25px 27px 20px; border: 1px solid; background: linear-gradient(135deg, rgba(255,255,255,.022), transparent); }
.verification-box.verified { border-color: rgba(76,171,89,.54); box-shadow: inset 0 0 50px rgba(17,73,23,.09); }
.verification-box.reports { border-color: rgba(212,44,37,.65); box-shadow: inset 0 0 50px rgba(105,14,10,.10); }
.verification-box header { display: flex; gap: 16px; align-items: flex-start; }
.verification-box header > svg { flex: 0 0 auto; font-size: 38px; }
.verified header > svg { color: var(--green); }.reports header > svg { color: var(--red); }
.verification-box h2 { margin: 3px 0 4px; font: 600 18px/1.15 var(--condensed); letter-spacing: .05em; text-transform: uppercase; }
.verified h2 { color: #c9d7c7; }.reports h2 { color: #ee4941; }
.verification-box header p { margin: 0; color: #71726f; font-size: 11px; }
.verification-box ul { display: grid; gap: 10px; margin: 19px 0 16px; padding: 0; list-style: none; }
.verification-box li { position: relative; padding-left: 21px; color: #9a9994; font-size: 11px; line-height: 1.45; }
.verification-box li::before { content: ""; position: absolute; left: 0; top: .48em; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.verified li::before { color: var(--green); }.reports li::before { color: var(--red); }
.verification-box small { color: #555652; font-size: 9px; }

.testimonials-section { padding-block: 39px 27px; }
.testimonial-slider { min-width: 0; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.testimonial-track blockquote { flex: 0 0 33.333%; min-height: 175px; margin: 0; padding: 25px 27px 20px; border-left: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.026), rgba(255,255,255,.008)); }
.quote-mark { float: left; margin: -5px 9px -4px 0; color: var(--red); font: 600 44px/.8 var(--serif); }
.testimonial-track p { margin: 0; color: #b3b0a9; font: italic 500 16px/1.55 var(--serif); }
.testimonial-track footer { margin-top: 20px; color: #666762; font-size: 9px; }
.slider-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.slider-dots { display: flex; gap: 7px; }
.slider-dots button { width: 6px; height: 6px; padding: 0; border-radius: 50%; border: 1px solid #666; background: transparent; cursor: pointer; }
.slider-dots button.active { border-color: var(--red); background: var(--red); box-shadow: 0 0 8px rgba(212,44,37,.55); }
.slider-arrows { display: flex; }
.slider-arrows button { width: 40px; height: 31px; border: 0; border-left: 1px solid var(--line); background: transparent; color: #686965; cursor: pointer; }
.slider-arrows button:hover { color: white; }

.legal-reply { display: grid; grid-template-columns: 1fr 1.5fr auto; align-items: center; gap: 38px; padding-block: 23px; border-bottom: 1px solid rgba(212,44,37,.42); }
.legal-title { display: flex; gap: 18px; align-items: flex-start; }
.legal-title span { color: var(--red); font: 500 12px var(--condensed); }
.legal-title h2 { margin: 0; font: 500 27px/1.05 var(--serif); }
.legal-copy { color: #737470; font-size: 10px; line-height: 1.6; }
.legal-copy p { margin: 3px 0; }
.legal-button { white-space: nowrap; }

.contact-section { position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(77,9,7,.24), rgba(7,7,7,.95) 35%), #070707; border-bottom: 1px solid var(--line); }
.contact-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 50%, rgba(212,44,37,.13), transparent 30%); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding-block: 34px; position: relative; }
.contact-copy h2 { max-width: 470px; margin: 0 0 14px; font: 600 37px/1.02 var(--serif); color: #e0ddd5; }
.contact-copy > p:not(.section-label) { max-width: 470px; color: #777873; font-size: 11px; line-height: 1.65; }
.privacy-note { display: flex; align-items: center; gap: 13px; margin-top: 25px; color: var(--amber); }
.privacy-note > svg { font-size: 29px; }
.privacy-note b, .privacy-note small { display: block; }.privacy-note b { font-size: 11px; }.privacy-note small { margin-top: 4px; color: #77736c; font-size: 9px; }
.contact-form { display: grid; grid-template-columns: 1fr 190px; gap: 10px; }
.contact-form > label:not(.upload-box):not(.consent), .form-row { grid-column: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form label { color: #777873; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 6px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 2px; outline: 0; background: rgba(255,255,255,.035); color: #c9c7c1; font-size: 11px; text-transform: none; letter-spacing: normal; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(212,44,37,.7); box-shadow: 0 0 0 2px rgba(212,44,37,.08); }
.contact-form textarea { resize: vertical; min-height: 83px; }
.contact-form select option { background: #111; }
.upload-box { grid-column: 2; grid-row: 1 / 4; min-height: 205px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; padding: 15px; border: 1px dashed rgba(212,44,37,.68); background: rgba(212,44,37,.025); color: var(--red)!important; cursor: pointer; text-align: center; }
.upload-box:hover { background: rgba(212,44,37,.06); }
.upload-box > svg { font-size: 32px; }
.upload-box b, .upload-box small { display: block; text-transform: none; }.upload-box b { color: #b7b3ab; font-size: 10px; }.upload-box small { margin-top: 5px; color: #575854; font-size: 8px; line-height: 1.45; }
.upload-box input { display: none; }
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 15px 1fr; gap: 9px; align-items: start; text-transform: none!important; letter-spacing: 0!important; line-height: 1.4; }
.consent input { width: 15px; height: 15px; margin: 0; }
.submit-button { grid-column: 2; width: 100%; }
.form-status { grid-column: 1; align-self: center; margin: 0; color: #585955; font-size: 8px; }

.footer { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 35px; align-items: center; color: #575854; font-size: 9px; }
.footer-brand .brand-logo-shell { width: 52px; height: 38px; padding: 4px 6px; }
.footer-brand .brand-case, .footer-brand .brand-name { font-size: 16px; }
.footer nav { display: flex; gap: 22px; }
.footer a:hover { color: white; }

.document-modal { width: min(560px, calc(100% - 30px)); padding: 33px; border: 1px solid #2e2f2d; background: #0d0e0e; color: var(--text); box-shadow: 0 30px 100px rgba(0,0,0,.75); }
.document-modal::backdrop { background: rgba(0,0,0,.83); backdrop-filter: blur(6px); }
.document-modal h2 { margin: 20px 0 12px; font: 600 35px/1 var(--serif); }
.document-modal > p { color: #858681; font-size: 13px; line-height: 1.7; }
.modal-close { position: absolute; top: 13px; right: 13px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.modal-close:hover { color: var(--red); border-color: var(--red); }
.modal-warning { display: flex; gap: 11px; margin-top: 22px; padding: 13px; border: 1px solid rgba(212,44,37,.35); background: rgba(212,44,37,.055); color: #9b9a95; font-size: 10px; line-height: 1.5; }
.modal-warning svg { flex: 0 0 auto; color: var(--red); font-size: 20px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1220px) {
  .topbar { grid-template-columns: auto auto 1fr; }
  .nav { position: fixed; inset: 82px 0 auto; display: none; padding: 24px 28px; background: #070707; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .nav.open { display: flex; }
  .nav a::after { bottom: -5px; }
  .nav-toggle { justify-self: end; width: 42px; height: 42px; display: grid; place-items: center; gap: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .nav-toggle span { grid-area: 1/1; width: 18px; height: 1px; background: #aaa; transition: .25s; }
  .nav-toggle span:first-child { transform: translateY(-4px); }.nav-toggle span:last-child { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }.nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .header-cta { justify-self: end; }
  .hero { grid-template-columns: minmax(0, .8fr) minmax(510px, 1.2fr); gap: 35px; }
  .hero-investigation { grid-template-columns: minmax(290px, 1fr) 190px; }
  .document-grid { grid-template-columns: repeat(3, 1fr); }
  .document-card:nth-child(4), .document-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 950px) {
  .section-shell { width: min(100% - 34px, var(--max)); }
  .topbar { padding-inline: 18px; }
  .header-cta { display: none; }
  .topbar { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-investigation { width: 100%; max-width: 760px; margin-inline: auto; grid-template-columns: minmax(330px, 1fr) 220px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .content-section, .documents-section, .testimonials-section { grid-template-columns: 1fr; }
  .timeline { overflow-x: auto; padding-bottom: 18px; }
  .timeline article { min-width: 180px; }
  .document-grid { grid-template-columns: repeat(2, 1fr); }
  .verification { grid-template-columns: 1fr; }
  .testimonial-track blockquote { flex-basis: 50%; }
  .legal-reply { grid-template-columns: 1fr; gap: 17px; }
  .legal-button { justify-self: start; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer nav { justify-self: end; }
}

@media (max-width: 620px) {
  .brand { gap: 10px; }
  .brand-logo-shell { width: 58px; height: 42px; padding: 4px 6px; }
  .dossier-logo-sticker { width: 120px; right: 14px; bottom: 14px; }
  .topbar { height: 70px; }
  .nav { top: 70px; }
  .brand-case, .brand-name { font-size: 18px; }
  .hero { padding-block: 45px 32px; }
  .hero-description { font-size: 13px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-investigation { min-height: 660px; grid-template-columns: 1fr; gap: 16px; }
  .dossier-wrap { width: min(390px, 91%); margin: 25px auto 0; }
  .investigation-index { grid-template-columns: 1fr 1fr; padding: 0 12px 13px; }
  .investigation-index a { min-height: 70px; }
  .case-code { top: 10px; }
  .stats { grid-template-columns: 1fr; }
  .stat-card { min-height: 105px; }
  .content-section, .documents-section, .testimonials-section { padding-block: 37px; gap: 25px; }
  .timeline { grid-template-columns: repeat(5, 175px); }
  .document-grid { grid-template-columns: 1fr; }
  .doc-art { height: 180px; }
  .testimonial-track blockquote { flex-basis: 100%; border: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form > label:not(.upload-box):not(.consent), .form-row, .upload-box, .consent, .submit-button, .form-status { grid-column: 1; }
  .upload-box { grid-row: auto; min-height: 145px; }
  .legal-title h2 { font-size: 23px; }
  .footer { grid-template-columns: 1fr; gap: 11px; padding-block: 25px; }
  .footer nav { justify-self: start; flex-wrap: wrap; gap: 12px; }
}
