:root {
  --bg: #0a0a0b;
  --bg-soft: #111113;
  --panel: #171719;
  --panel-2: #1e1e21;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --text: #f6f4f2;
  --muted: #a9a5a4;
  --red: #f80128;
  --red-deep: #8f030b;
  --red-soft: rgba(248,1,40,.12);
  --cream: #ece7e1;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection { background: var(--red); color: white; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section--muted { background: var(--bg-soft); border-block: 1px solid var(--line); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.noise { position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: .025; 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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }

.topbar { background: var(--red); color: #fff; font-size: 12px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; gap: 14px; }
.topbar__inner a { font-variant-numeric: tabular-nums; }
.topbar__status { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; }
.topbar__status i { width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,11,.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header__inner { min-height: 78px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 900; letter-spacing: .15em; }
.brand__mark { width: 32px; height: 32px; display: grid; place-items: center; color: var(--red); }
.brand__mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 650; color: #d6d2d0; }
.main-nav a { position: relative; transition: color .2s ease; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--red); transition: right .25s ease; }
.main-nav a:hover { color: white; }
.main-nav a:hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: white; }

.button { border: 1px solid var(--red); background: var(--red); color: white; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 24px; border-radius: 999px; font-weight: 760; font-size: 14px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(248,1,40,.2); }
.button--sm { min-height: 42px; padding-inline: 19px; font-size: 12px; }
.button--ghost { background: transparent; border-color: var(--line-strong); }
.button--ghost:hover { background: white; color: #111; border-color: white; box-shadow: none; }
.button--wide { width: 100%; }
.button--light { background: white; color: #111; border-color: white; }

.hero { min-height: calc(100vh - 112px); display: grid; align-items: center; overflow: hidden; padding: 100px 0 110px; }
.hero__grid, .cta-section__grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .28; }
.hero__orb--one { width: 460px; height: 460px; right: -120px; top: 20px; background: radial-gradient(circle, rgba(248,1,40,.6), transparent 65%); }
.hero__orb--two { width: 340px; height: 340px; left: 25%; bottom: -220px; background: radial-gradient(circle, rgba(143,3,11,.5), transparent 70%); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 66px; }
.rating { display: flex; align-items: center; gap: 12px; color: #c8c4c1; font-size: 13px; }
.rating__stars { color: var(--red); letter-spacing: 2px; }
.eyebrow { margin: 22px 0 15px; color: var(--red); font-size: 12px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(48px, 6.1vw, 86px); line-height: .98; letter-spacing: -.055em; font-weight: 850; }
h2 { margin-bottom: 22px; font-size: clamp(38px, 4vw, 61px); line-height: 1.02; letter-spacing: -.045em; font-weight: 820; }
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero__lead { max-width: 690px; margin-bottom: 34px; color: #c0bcba; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero__badges span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #a9a5a4; font-size: 10px; letter-spacing: .04em; }
.scanner-card { position: relative; min-height: 580px; padding: 22px; border-radius: 24px; background: linear-gradient(160deg, rgba(32,32,35,.95), rgba(15,15,17,.94)); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06); overflow: hidden; }
.scanner-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(130deg, rgba(248,1,40,.24), transparent 35%); pointer-events: none; }
.scanner-card__head { position: relative; display: flex; justify-content: space-between; align-items: center; color: #9d9997; font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.scanner-card__head span { display: flex; align-items: center; gap: 8px; }
.scanner-card__head i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 14px var(--red); animation: pulse 1.4s infinite; }
.radar { position: relative; width: min(360px, 90%); aspect-ratio: 1; margin: 22px auto 14px; border: 1px solid rgba(248,1,40,.2); border-radius: 50%; background: radial-gradient(circle, rgba(248,1,40,.055), transparent 64%); overflow: hidden; }
.radar__ring { position: absolute; inset: 16%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.radar__ring--2 { inset: 32%; }
.radar__ring--3 { inset: 47%; }
.radar__cross { position: absolute; background: rgba(255,255,255,.1); }
.radar__cross--x { left: 0; right: 0; top: 50%; height: 1px; }
.radar__cross--y { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar__beam { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(248,1,40,.02), rgba(248,1,40,.32) 8%, transparent 25%); animation: spin 4.6s linear infinite; }
.radar__dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); }
.radar__dot--1 { top: 30%; left: 65%; }.radar__dot--2 { top: 65%; left: 35%; }.radar__dot--3 { top: 43%; left: 24%; }
.scanner-card__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; position: relative; }
.scanner-card__metrics div { padding: 13px; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: 10px; }
.scanner-card__metrics small, .scanner-card__metrics span { display: block; color: #787573; font-size: 9px; }
.scanner-card__metrics strong { display: block; margin: 4px 0; font: 800 22px/1 ui-monospace, monospace; }
.terminal { position: relative; margin-top: 10px; padding: 14px; border-radius: 10px; background: #080809; border: 1px solid var(--line); color: #9f9b98; font: 500 10px/1.5 ui-monospace, monospace; }
.terminal p { margin: 0; }.terminal span { color: var(--red); }.terminal__ok { color: #b9d5bf; }.terminal__warn { color: #e4b99b; }.terminal__cursor { color: var(--red); animation: blink .8s infinite; }

.logos-strip { overflow: hidden; border-block: 1px solid var(--line); background: #0d0d0f; }
.logos-strip__track { width: max-content; display: flex; animation: marquee 26s linear infinite; }
.logos-strip span { min-width: 180px; padding: 24px 28px; color: #5c5958; font-size: 12px; font-weight: 850; letter-spacing: .14em; text-align: center; border-right: 1px solid var(--line); }
.section-heading { max-width: 800px; margin-bottom: 58px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.section-heading--split > p { padding-bottom: 8px; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 390px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden; }
.feature-card::after { content: ""; position: absolute; inset: auto -80px -120px auto; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(248,1,40,.16), transparent 68%); transition: transform .4s ease; }
.feature-card:hover::after { transform: scale(1.3); }
.feature-card__number { color: #555250; font: 700 11px/1 ui-monospace, monospace; }
.feature-card__icon { width: 60px; height: 60px; margin: 54px 0 24px; display: grid; place-items: center; border: 1px solid rgba(248,1,40,.3); border-radius: 50%; color: var(--red); font-size: 30px; background: var(--red-soft); }
.feature-card h3 { margin-bottom: 13px; font-size: 24px; }
.feature-card p { color: var(--muted); }
.mini-stat { position: absolute; left: 32px; bottom: 29px; z-index: 2; display: flex; align-items: baseline; gap: 10px; }
.mini-stat strong { color: var(--red); font: 850 22px/1 ui-monospace, monospace; }.mini-stat span { color: #777370; font-size: 11px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 26px; background: #151517; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-card--featured { background: linear-gradient(165deg, rgba(248,1,40,.16), #171719 34%); border-color: rgba(248,1,40,.6); transform: translateY(-14px); box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.price-card__ribbon { position: absolute; top: 0; left: 0; right: 0; padding: 7px; background: var(--red); text-align: center; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.price-card--featured .price-card__top { margin-top: 18px; }
.price-card__top { display: flex; justify-content: space-between; gap: 16px; }
.price-card__top h3 { margin: 6px 0 3px; font-size: 26px; }.price-card__top p { color: #85817f; font-size: 12px; }
.tag { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.price-card__index { color: #4f4c4a; font: 700 11px/1 ui-monospace, monospace; }
.price-card img { width: 100%; height: 125px; margin: 18px 0 22px; object-fit: cover; object-position: center; border-radius: 8px; border: 1px solid var(--line); background: #1e1e1e; }
.price-card ul { padding: 0; margin: 0 0 28px; list-style: none; flex: 1; }
.price-card li { position: relative; padding: 10px 0 10px 23px; color: #b7b3b0; border-bottom: 1px solid rgba(255,255,255,.055); font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.process-section { overflow: hidden; }
.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 72px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.assurance-grid div { padding: 28px; border-right: 1px solid var(--line); }.assurance-grid div:last-child { border: 0; }
.assurance-grid span { color: var(--red); font: 800 11px/1 ui-monospace, monospace; }.assurance-grid h3 { margin: 14px 0 8px; font-size: 18px; }.assurance-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.timeline::before { content: ""; position: absolute; top: 28px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.timeline__item { position: relative; padding: 0 22px; text-align: center; }
.timeline__item > span { position: relative; z-index: 2; width: 56px; height: 56px; margin: 0 auto 25px; display: grid; place-items: center; border: 1px solid rgba(248,1,40,.55); border-radius: 50%; background: #0a0a0b; color: var(--red); font: 800 12px/1 ui-monospace, monospace; box-shadow: 0 0 0 8px #0a0a0b; }
.timeline__item h3 { font-size: 17px; }.timeline__item p { color: var(--muted); font-size: 13px; }

.section--team { background: var(--cream); color: #161616; }
.team-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.team-photo { position: relative; max-width: 455px; }
.team-photo::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(0,0,0,.18); border-radius: 22px; }
.team-photo img { position: relative; z-index: 1; width: 100%; border-radius: 22px; background: #ddd; box-shadow: 0 30px 70px rgba(0,0,0,.16); }
.team-photo__caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 17px 20px; display: flex; justify-content: space-between; align-items: center; border-radius: 12px; background: rgba(16,16,17,.88); color: white; backdrop-filter: blur(15px); }
.team-photo__caption span { color: #aaa; font-size: 12px; }
.team-copy .eyebrow { color: var(--red-deep); }.team-copy > p:not(.eyebrow) { color: #5e5b59; font-size: 17px; }
.team-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 32px 0; }
.team-points div { padding: 20px; border: 1px solid rgba(0,0,0,.14); border-radius: 12px; }
.team-points span { display: block; color: var(--red); font: 850 26px/1 ui-monospace, monospace; }.team-points p { margin: 8px 0 0; color: #5a5755; font-size: 11px; }
.check-list { margin: 0 0 30px; padding: 0; list-style: none; }.check-list li { padding: 8px 0; color: #494644; }.check-list li::before { content: "✓"; margin-right: 12px; color: var(--red); font-weight: 900; }
.team-copy .button--ghost { border-color: rgba(0,0,0,.24); }.team-copy .button--ghost:hover { background: #111; color: white; border-color: #111; }

.workspace-section { background: radial-gradient(circle at 90% 0, rgba(248,1,40,.13), transparent 32%); }
.workspace-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.workspace-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.workspace-kpis { display: grid; grid-template-columns: repeat(3,1fr); margin: 36px 0; border-block: 1px solid var(--line); }
.workspace-kpis div { padding: 20px 10px 20px 0; }.workspace-kpis strong { display: block; color: var(--red); font: 850 22px/1 ui-monospace, monospace; }.workspace-kpis span { display: block; margin-top: 8px; color: #85817f; font-size: 10px; }
.dashboard { padding: 14px; border: 1px solid var(--line-strong); border-radius: 18px; background: #111113; box-shadow: var(--shadow); transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); }
.dashboard__bar { padding: 9px 12px 16px; display: flex; justify-content: space-between; color: #777; font: 700 10px/1 ui-monospace, monospace; }
.dashboard__bar b { color: #ddd; }.dashboard__bar span { letter-spacing: 5px; color: var(--red); }
.dashboard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dashboard__panel { min-height: 185px; padding: 17px; border: 1px solid var(--line); border-radius: 11px; background: #19191c; }
.dashboard__panel small { display: block; margin-bottom: 15px; color: #75716f; font: 700 8px/1 ui-monospace, monospace; letter-spacing: .1em; }
.task { display: flex; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #b9b5b2; font-size: 10px; }.task i { width: 7px; height: 7px; border-radius: 50%; }.task .critical { background: #f80128; }.task .medium { background: #e59b31; }.task .low { background: #50a66c; }.task span { flex: 1; }.task em { color: #777; font-style: normal; }
.dashboard__panel--chart img { width: 100%; height: 130px; object-fit: cover; border-radius: 6px; }
.dashboard__panel--findings div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #bbb; font-size: 11px; }.dashboard__panel--findings b { color: var(--red); }
.dashboard__panel--report { display: flex; flex-direction: column; }.dashboard__panel--report strong { font-size: 43px; line-height: 1; }.dashboard__panel--report span { margin: 10px 0 auto; color: #777; font-size: 10px; }.dashboard__panel--report button { align-self: flex-start; padding: 7px 0; border: 0; background: none; color: var(--red); font-size: 10px; cursor: pointer; }

.method-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-grid article { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-grid span { color: var(--red); font: 800 10px/1 ui-monospace, monospace; }.method-grid h3 { margin: 45px 0 12px; font-size: 18px; }.method-grid p { color: var(--muted); font-size: 13px; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { cursor: pointer; list-style: none; padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; font-size: 18px; font-weight: 700; }.accordion summary::-webkit-details-marker { display: none; }.accordion summary span { color: var(--red); font-size: 24px; font-weight: 300; transition: transform .2s; }.accordion details[open] summary span { transform: rotate(45deg); }.accordion details p { padding: 0 60px 26px 0; color: var(--muted); }
.testimonials-section { background: #0d0d0e; border-block: 1px solid var(--line); }
.rating--large { margin-top: 25px; font-size: 15px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonials-grid blockquote { margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #151517; }.testimonials-grid blockquote > p { min-height: 150px; color: #d7d3d0; font-size: 18px; line-height: 1.7; }.testimonials-grid footer { display: flex; flex-direction: column; padding-top: 18px; border-top: 1px solid var(--line); }.testimonials-grid footer span { color: #777; font-size: 11px; }
.compliance-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.compliance-grid article { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(255,255,255,.035), transparent); }.compliance-grid h3 { margin: 28px 0 10px; font-size: 23px; }.compliance-grid p { color: var(--muted); }
.seal { width: 82px; height: 82px; display: grid; place-content: center; text-align: center; border: 2px solid var(--red); outline: 1px solid rgba(248,1,40,.4); outline-offset: 5px; border-radius: 50%; color: #cfcac7; font: 800 10px/1.2 ui-monospace, monospace; }.seal b { color: var(--red); font-size: 14px; }
.sovereignty { margin: 28px 0 0; padding: 20px; border: 1px solid rgba(248,1,40,.25); border-radius: 12px; background: var(--red-soft); color: #c7c2bf; text-align: center; }.sovereignty span { margin-right: 10px; color: var(--red); }
.cta-section { position: relative; overflow: hidden; padding: 120px 0; background: var(--red); color: white; text-align: center; }
.cta-section::after { content: ""; position: absolute; width: 500px; height: 500px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.035), 0 0 0 160px rgba(255,255,255,.025); }
.cta-section__inner { position: relative; z-index: 2; max-width: 900px; }.cta-section .eyebrow, .cta-section h2 em { color: white; }.cta-section p:not(.eyebrow) { max-width: 670px; margin: 0 auto 30px; color: rgba(255,255,255,.78); font-size: 18px; }
.newsletter-section { padding: 80px 0; border-bottom: 1px solid var(--line); background: #101012; }
.newsletter-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 80px; }.newsletter-grid h2 { margin: 0; font-size: clamp(30px,3.2vw,44px); }.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 10px; }.newsletter input { min-width: 0; height: 52px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: 999px; background: #09090a; color: white; outline: none; }.newsletter input:focus { border-color: var(--red); }.form-message { grid-column: 1/-1; margin: 2px 0 0 15px; color: #9bc2a5; font-size: 12px; }
.site-footer { padding: 76px 0 24px; background: #09090a; }.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3,1fr); gap: 55px; }.footer-grid h3 { margin: 4px 0 20px; color: #777; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 0 0 12px; color: #aaa6a3; font-size: 13px; }.footer-grid a:hover { color: white; }.footer-brand p { margin-top: 26px; color: #85817f; }.footer-bottom { margin-top: 60px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #575452; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal--delay { transition-delay: .12s; }.reveal--delay-2 { transition-delay: .24s; }.reveal.is-visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .35; box-shadow: 0 0 3px var(--red); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1020px) {
  .header__cta { display: none; }.main-nav { gap: 18px; }
  .hero__inner { grid-template-columns: 1fr; }.hero__copy { max-width: 780px; }.hero__visual { max-width: 670px; width: 100%; margin-inline: auto; }
  .impact-grid, .pricing-grid, .testimonials-grid, .compliance-grid { grid-template-columns: 1fr 1fr; }.price-card--featured { transform: none; }.pricing-grid .price-card:last-child { grid-column: 1/-1; }
  .timeline { grid-template-columns: 1fr; gap: 0; }.timeline::before { top: 0; bottom: 0; left: 27px; right: auto; width: 1px; height: auto; }.timeline__item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; text-align: left; padding: 0 0 32px; }.timeline__item > span { margin: 0; }
  .team-grid, .workspace-grid { gap: 48px; }.method-grid { grid-template-columns: repeat(2,1fr); }.faq-grid { gap: 55px; }.newsletter-grid { gap: 40px; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 680px); }.section { padding: 88px 0; }
  .topbar__status { display: none; }.header__inner { min-height: 68px; }.nav-toggle { display: block; margin-left: auto; }.main-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 1px); padding: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #111113; border: 1px solid var(--line); border-radius: 0 0 14px 14px; box-shadow: var(--shadow); }.main-nav.is-open { display: flex; }.main-nav a { padding: 13px; border-bottom: 1px solid var(--line); }.main-nav a:last-child { border: 0; }
  .hero { padding-top: 75px; }.hero__inner { gap: 50px; }.hero__badges { margin-top: 32px; }.scanner-card { min-height: 520px; }.scanner-card__metrics { grid-template-columns: 1fr; }.scanner-card__metrics div { display: grid; grid-template-columns: 1fr auto; align-items: center; }.scanner-card__metrics strong { grid-column: 2; grid-row: 1/3; }.radar { width: 270px; }
  .section-heading--split, .team-grid, .workspace-grid, .faq-grid, .newsletter-grid { grid-template-columns: 1fr; gap: 30px; }.faq-intro { position: static; }.section-heading--split { align-items: start; }.section-heading { margin-bottom: 42px; }
  .impact-grid, .pricing-grid, .testimonials-grid, .compliance-grid { grid-template-columns: 1fr; }.pricing-grid .price-card:last-child { grid-column: auto; }
  .assurance-grid { grid-template-columns: 1fr; }.assurance-grid div { border-right: 0; border-bottom: 1px solid var(--line); }.assurance-grid div:last-child { border: 0; }
  .team-photo { max-width: 520px; }.method-grid { grid-template-columns: 1fr; }.dashboard { transform: none; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1/-1; }
}

@media (max-width: 520px) {
  h1 { font-size: 46px; }.hero__actions .button { width: 100%; }.scanner-card { padding: 14px; }.scanner-card__head b { display: none; }.radar { width: 235px; }
  .impact-grid { gap: 12px; }.feature-card { min-height: 370px; }.price-card { padding: 21px; }.team-points { grid-template-columns: 1fr; }.workspace-kpis { grid-template-columns: 1fr; }.workspace-kpis div { border-bottom: 1px solid var(--line); }.dashboard__grid { grid-template-columns: 1fr; }.newsletter { grid-template-columns: 1fr; }.newsletter .button { width: 100%; }.footer-grid { grid-template-columns: 1fr; }.footer-brand { grid-column: auto; }.footer-bottom { gap: 15px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Liens officiels et footer enrichi */
.team-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.team-actions .button { margin-top: 0; }
.linkedin-button { min-height: 50px; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: 999px; color: #d8d5d2; font-size: 13px; font-weight: 750; transition: border-color .2s, color .2s, background .2s, transform .2s; }
.linkedin-button svg { width: 18px; height: 18px; fill: currentColor; }
.linkedin-button:hover { border-color: #d8d5d2; background: rgba(255,255,255,.04); color: #fff; transform: translateY(-1px); }
.footer-grid { grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr)); gap: 42px; }
.footer-social { width: fit-content; display: inline-flex !important; align-items: center; gap: 9px; margin-top: 8px !important; color: #d2cfcc !important; }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-social:hover { color: #fff !important; }
.footer-bottom a { color: #777370; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1120px) {
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; grid-row: auto; }
}

@media (max-width: 520px) {
  .team-actions { align-items: stretch; }
  .team-actions .button, .linkedin-button { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}


/* Pages internes du miroir */
.main-nav a[aria-current="page"] { color: #fff; }
.main-nav a[aria-current="page"]::after { right: 0; }
.page-hero { position: relative; overflow: hidden; min-height: 430px; display: grid; align-items: end; padding: 100px 0 72px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 30%, rgba(248,1,40,.17), transparent 30%), #0b0b0c; }
.page-hero__inner { position: relative; z-index: 2; max-width: 980px; margin-left: max(0px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2)); }
.page-hero h1 { max-width: 920px; margin-bottom: 18px; font-size: clamp(48px, 7vw, 88px); }
.page-hero__inner > p:last-child { max-width: 760px; color: #c3bfbd; font-size: 19px; }
.page-content { background: linear-gradient(180deg, #0a0a0b, #0e0e10); }
.content-layout { display: grid; grid-template-columns: 220px minmax(0, 820px); justify-content: center; gap: 80px; align-items: start; }
.content-sidebar { position: sticky; top: 125px; display: grid; gap: 7px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #111113; }
.content-sidebar a { padding: 10px 12px; border-radius: 8px; color: #aaa6a3; font-size: 13px; }
.content-sidebar a:hover { color: #fff; background: rgba(255,255,255,.05); }
.prose { min-width: 0; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 56px 0 18px; padding-top: 8px; font-size: clamp(28px, 3vw, 39px); line-height: 1.15; letter-spacing: -.035em; }
.prose h3 { margin: 32px 0 12px; font-size: 21px; }
.prose p, .prose li { color: #b9b5b2; font-size: 16px; line-height: 1.8; }
.prose strong { color: #f2efed; }
.prose a { color: #ff4a66; text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 10px; }
.page-updated { width: fit-content; padding: 8px 12px; border: 1px solid rgba(248,1,40,.35); border-radius: 999px; color: #ff6b82 !important; background: rgba(248,1,40,.08); font-size: 12px !important; font-weight: 750; }
.info-card { margin: 28px 0 42px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #141416; }
.info-card p { margin-bottom: 8px; }
.info-card p:last-child { margin-bottom: 0; }
.check-list-simple { list-style: none; padding-left: 0 !important; }
.check-list-simple li::before { content: "✓"; margin-right: 10px; color: var(--red); font-weight: 900; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journal-card { min-height: 390px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.journal-card .tag { width: fit-content; }
.journal-card h3 { margin: 25px 0 16px; font-size: 24px; line-height: 1.2; }
.journal-card p { color: var(--muted); }
.journal-card .journal-meta { margin: 16px 0 -10px; color: #6f6b69; font: 700 11px/1.4 ui-monospace, monospace; text-transform: uppercase; }
.journal-card a { margin-top: auto; padding-top: 24px; color: #ff4a66; font-weight: 750; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-panel { position: sticky; top: 125px; }
.contact-panel h2 { font-size: clamp(36px, 4vw, 55px); }
.contact-panel > p:not(.eyebrow) { max-width: 540px; color: var(--muted); font-size: 18px; }
.contact-details { margin-top: 42px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-details p { display: grid; grid-template-columns: 105px 1fr; gap: 16px; margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); color: #aaa6a3; }
.contact-details strong { color: #fff; }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #141416; }
.contact-form > label:not(.consent) { display: block; margin: 0 0 8px; color: #e3dfdc; font-size: 13px; font-weight: 750; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; margin-bottom: 22px; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 10px; background: #09090a; color: #fff; outline: none; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; color: #918d8a; font-size: 12px; }
.contact-form .consent input { margin-top: 4px; accent-color: var(--red); }
.contact-form .form-message { margin: 14px 0 0; }
@media (max-width: 1020px) {
  .content-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 45px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 40px; }
}
@media (max-width: 780px) {
  .page-hero { min-height: 360px; padding: 70px 0 55px; }
  .page-hero__inner { width: var(--container); margin-inline: auto; }
  .content-layout, .contact-grid { grid-template-columns: 1fr; }
  .content-sidebar, .contact-panel { position: static; }
  .content-sidebar { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .contact-details p { grid-template-columns: 1fr; gap: 4px; }
}


/* Espace client local */
.client-space-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: center; }
.client-login { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #141416; }
.client-login h2 { font-size: clamp(34px, 4vw, 50px); }
.client-login label { display: block; margin: 0 0 8px; color: #e3dfdc; font-size: 13px; font-weight: 750; }
.client-login input { width: 100%; margin-bottom: 20px; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 10px; background: #09090a; color: #fff; outline: none; }
.client-login input:focus { border-color: var(--red); }
.client-note { margin: 18px 0 0; color: #777370; font-size: 12px; }
@media (max-width: 900px) { .client-space-grid { grid-template-columns: 1fr; } }
