/* ============================================================
   TOXIC 2.0 — Dynamic layer: animations, demos, new components
   Loaded AFTER toxic.css on every page.
   ============================================================ */

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--rd, 0ms); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(36px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--rd, 0ms); }
.reveal-x.in { opacity: 1; transform: none; }
.reveal-l { transform: translateX(-36px); }

/* hero entrance on load */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.rise { opacity: 0; animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--rd, 0ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x, .rise { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* floating chips: gentle bob */
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.float-chip { animation: bob 5.5s ease-in-out infinite; }
.float-chip:nth-of-type(2) { animation-delay: -2.6s; }

/* live ping dot */
.ping { position: relative; }
.ping::after { content: ""; position: absolute; inset: -5px; border-radius: 999px; border: 2px solid currentColor; opacity: .55; animation: ping 1.8s cubic-bezier(0,.2,.4,1) infinite; }
@keyframes ping { 0% { transform: scale(.7); opacity: .6; } 80%,100% { transform: scale(1.9); opacity: 0; } }

/* ---------- section eyebrow shared ---------- */
.sec-head .lbl { display: inline-flex; }

/* ============================================================
   INTERACTIVE REDACTION EDITOR (lavoratore)
   ============================================================ */
.rx { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh-lg); overflow: hidden; }
.rx-top { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid #f0eef2; background: #faf9fb; }
.rx-dots { display: flex; gap: 6px; }
.rx-dots i { width: 11px; height: 11px; border-radius: 999px; background: #e1dfe6; display: block; }
.rx-dots i:nth-child(1) { background: #ff5f57; } .rx-dots i:nth-child(2) { background: #febc2e; } .rx-dots i:nth-child(3) { background: #28c840; }
.rx-title { font-size: 12.5px; font-weight: 700; color: var(--mute); margin-left: 4px; }
.rx-pill { margin-left: auto; }
.rx-tools { display: flex; align-items: center; gap: 8px; padding: 14px 18px 4px; }
.rx-tool { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 13px; border-radius: 11px; border: 0; background: var(--bg); color: var(--ink-2); font-family: var(--font); font-weight: 700; font-size: 12.5px; cursor: pointer; transition: background .15s ease, color .15s ease, transform .12s ease; }
.rx-tool:hover { transform: translateY(-1px); }
.rx-tool.on { background: var(--ink); color: #fff; }
.rx-tool.on .kbd { background: rgba(255,255,255,.16); color: #fff; }
.rx-hint { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--lbl); }
.rx-body { padding: 14px 18px 6px; }
.rx-doc { font-size: 17px; line-height: 1.75; color: var(--ink-2); font-weight: 500; user-select: none; }
.rx-doc .w { border-radius: 4px; padding: 0 1px; cursor: pointer; transition: background .12s ease; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.rx-doc.armed .w:hover { background: rgba(14,15,18,.1); }
.rx-doc .w.red { background: var(--ink); color: transparent; }
.rx-doc .w.red::selection { background: transparent; }
.rx-foot { display: flex; align-items: center; gap: 12px; padding: 14px 18px 18px; }
.rx-count { display: inline-flex; align-items: center; gap: 8px; background: var(--peri-soft); color: var(--peri-d); border-radius: 10px; padding: 9px 13px; font-size: 12.5px; font-weight: 800; }
.rx-send { margin-left: auto; }
.rx-sent { display: flex; align-items: center; gap: 10px; padding: 16px 18px; background: var(--up-soft); color: #0c7a4e; font-weight: 700; font-size: 13.5px; border-top: 1px solid #d6efe2; }
.rx-sent svg { color: var(--up); }
.kbd { font: 700 10.5px var(--font); background: rgba(0,0,0,.07); border-radius: 5px; padding: 2px 5px; letter-spacing: .02em; }

/* ============================================================
   HORIZONTAL TIMELINE — "cosa succede dopo"
   ============================================================ */
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.flow::before { content: ""; position: absolute; left: 7%; right: 7%; top: 27px; height: 3px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px); z-index: 0; }
.flow-step { position: relative; z-index: 1; text-align: center; }
.flow-step .node { width: 54px; height: 54px; border-radius: 17px; margin: 0 auto 16px; display: grid; place-items: center; background: #fff; box-shadow: var(--sh); position: relative; }
.flow-step .node .num { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 999px; background: var(--peri); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.flow-step h4 { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 6px; }
.flow-step p { font-size: 13px; line-height: 1.5; color: var(--mute); font-weight: 500; margin: 0; }
.flow-step .t { font-size: 11px; font-weight: 800; color: var(--peri-d); letter-spacing: .04em; margin-top: 8px; }

/* ---------- empathetic guarantee block ---------- */
.guard { background: linear-gradient(160deg, var(--peri-soft), #fff 70%); border-radius: var(--r-card); padding: 40px 44px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; box-shadow: var(--sh-sm); }
.guard .seal { width: 72px; height: 72px; border-radius: 20px; background: var(--ink); color: var(--lime); display: grid; place-items: center; flex-shrink: 0; }
.guard h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px; }
.guard p { font-size: 16px; line-height: 1.65; color: var(--ink-2); font-weight: 500; margin: 0 0 12px; max-width: 52em; }
.guard p:last-child { margin-bottom: 0; }
.guard strong { font-weight: 800; color: var(--ink); }

/* ============================================================
   HR CONSOLE DEMO (hr)
   ============================================================ */
.console { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh-lg); overflow: hidden; }
.console-chrome { display: flex; align-items: center; gap: 10px; padding: 13px 18px; background: var(--ink); }
.console-chrome .rx-dots i { background: rgba(255,255,255,.22); }
.console-chrome .rx-dots i:nth-child(1) { background: #ff5f57; } .console-chrome .rx-dots i:nth-child(2) { background: #febc2e; } .console-chrome .rx-dots i:nth-child(3) { background: #28c840; }
.console-chrome .addr { margin-left: 8px; flex: 1; background: rgba(255,255,255,.08); border-radius: 8px; padding: 6px 12px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); }
.console-chrome .live { color: var(--lime); }
.console-grid { display: grid; grid-template-columns: 320px 1fr; min-height: 480px; }
.console-list { border-right: 1px solid #f0eef2; padding: 16px; background: #faf9fb; overflow: hidden; }
.console-list .lh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.console-list .lh .t { font-weight: 800; font-size: 14px; }
.case { display: block; width: 100%; text-align: left; border: 0; background: #fff; border-radius: 14px; box-shadow: var(--sh-sm); padding: 14px; margin-bottom: 10px; cursor: pointer; transition: transform .14s ease, box-shadow .14s ease; border-left: 3px solid transparent; }
.case:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.case.active { border-left-color: var(--peri); box-shadow: var(--sh); }
.case .cr1 { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.case .cid { font-size: 11px; font-weight: 800; color: var(--lbl); letter-spacing: .03em; }
.case .ct { font-weight: 800; font-size: 14px; letter-spacing: -.01em; margin: 0 0 4px; }
.case .cm { font-size: 12px; color: var(--mute); font-weight: 500; line-height: 1.45; margin: 0; }
.console-detail { padding: 22px 24px; display: flex; flex-direction: column; }
.cd-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.cd-head .av { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; background: var(--peri-soft); color: var(--peri-d); }
.cd-head h3 { font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 3px; }
.cd-head .sub { font-size: 12.5px; font-weight: 600; color: var(--mute); }
.cd-tags { display: flex; gap: 7px; margin-bottom: 16px; flex-wrap: wrap; }
.cd-report { background: var(--bg); border-radius: 16px; padding: 18px; font-size: 14.5px; line-height: 1.7; color: var(--ink-2); font-weight: 500; margin-bottom: 16px; }
.cd-report .redact { background: var(--ink); color: transparent; border-radius: 4px; padding: 0 4px; transition: color .25s ease, background .25s ease; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.cd-report.revealed .redact { background: var(--amber-soft); color: #b45309; }
.cd-actions { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }
.cd-unlock { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px; border: 0; border-radius: 12px; background: var(--ink); color: #fff; font-family: var(--font); font-weight: 700; font-size: 13px; cursor: pointer; transition: transform .12s ease, background .15s ease; }
.cd-unlock:hover { transform: translateY(-1px); }
.cd-unlock.done { background: var(--up); }
.cd-audit { font-size: 11.5px; font-weight: 700; color: var(--lbl); display: inline-flex; align-items: center; gap: 6px; }
.cd-audit b { color: var(--up); }

/* ---------- audit export block ---------- */
.audit { background: var(--ink); color: #fff; border-radius: var(--r-card); padding: 36px 40px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.audit h3 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 10px 0 10px; }
.audit p { color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.6; font-weight: 500; margin: 0 0 18px; max-width: 34em; }
.audit .lbl { color: var(--lime); }
.audit-log { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 16px 18px; width: 320px; font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.audit-log .ln { display: flex; gap: 9px; align-items: baseline; font-size: 11.5px; color: rgba(255,255,255,.5); padding: 4px 0; }
.audit-log .ln .ts { color: var(--lime); flex-shrink: 0; }
.audit-log .ln b { color: #fff; font-weight: 600; }
.audit-dl { display: inline-flex; align-items: center; gap: 9px; height: 46px; padding: 0 20px; border: 0; border-radius: 12px; background: var(--lime); color: var(--ink); font-family: var(--font); font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .12s ease; }
.audit-dl:hover { transform: translateY(-2px); }
.audit-dl.done { background: #fff; }

/* ---------- coming soon integration cards ---------- */
.soon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.soon { background: #fff; border-radius: 18px; box-shadow: var(--sh-sm); padding: 22px; position: relative; opacity: .96; }
.soon .logo { width: 46px; height: 46px; border-radius: 13px; background: var(--bg); display: grid; place-items: center; font-weight: 900; font-size: 17px; color: var(--ink); margin-bottom: 14px; }
.soon h4 { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 5px; }
.soon p { font-size: 12.5px; color: var(--mute); font-weight: 500; margin: 0; line-height: 1.5; }
.soon .tag { position: absolute; top: 16px; right: 16px; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--peri-d); background: var(--peri-soft); border-radius: 999px; padding: 4px 9px; }

/* ============================================================
   PRICING — comparison table, enterprise, billing faq
   ============================================================ */
.cmp { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh); overflow: hidden; }
.cmp table { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 17px 22px; text-align: left; font-size: 14.5px; }
.cmp thead th { font-size: 12px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--lbl); border-bottom: 1px solid var(--line); }
.cmp thead th.toxic { color: var(--peri-d); }
.cmp tbody td { border-bottom: 1px solid #f4f1ec; font-weight: 600; color: var(--ink-2); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td.feat-name { font-weight: 700; color: var(--ink); }
.cmp .col-toxic { background: linear-gradient(180deg, rgba(0,0,224,.06), rgba(0,0,224,.03)); }
.cmp th.toxic { background: var(--peri-soft); }
.cmp .yes { color: var(--up); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.cmp .no { color: var(--dn); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; opacity: .85; }
.cmp .partial { color: var(--amber); font-weight: 700; }
.cmp td .small { font-size: 12px; color: var(--mute); font-weight: 500; display: block; margin-top: 2px; }

.ent { background: var(--ink); color: #fff; border-radius: var(--r-card); padding: 44px 46px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; position: relative; overflow: hidden; }
.ent .glow { position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 999px; background: radial-gradient(circle, rgba(0,0,224,.5), transparent 70%); pointer-events: none; }
.ent .lbl { color: var(--lime); }
.ent h3 { font-size: 32px; font-weight: 800; letter-spacing: -.025em; line-height: 1.05; margin: 12px 0 14px; }
.ent p { color: rgba(255,255,255,.68); font-size: 15.5px; line-height: 1.6; font-weight: 500; margin: 0 0 24px; max-width: 30em; }
.ent-feats { display: grid; gap: 14px; position: relative; }
.ent-feats .ef { display: flex; align-items: flex-start; gap: 13px; background: rgba(255,255,255,.05); border-radius: 14px; padding: 15px 17px; }
.ent-feats .ef .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--lime); display: grid; place-items: center; flex-shrink: 0; }
.ent-feats .ef .tt { font-weight: 800; font-size: 14.5px; margin-bottom: 2px; }
.ent-feats .ef .ss { font-size: 12.5px; color: rgba(255,255,255,.6); font-weight: 500; line-height: 1.45; }

/* ============================================================
   SECURITY — data flow diagram, infra, pentest
   ============================================================ */
.dataflow { background: #fff; border-radius: var(--r-card); box-shadow: var(--sh); padding: 38px 32px; }
.df-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: stretch; }
.df-node { position: relative; text-align: center; padding: 0 10px; }
.df-node .box { background: var(--bg); border: 2px solid var(--ink); border-radius: 16px; padding: 18px 14px; transition: transform .2s ease; }
.df-node.dark .box { background: var(--ink); color: #fff; }
.df-node .ic { width: 44px; height: 44px; border-radius: 12px; background: #fff; display: grid; place-items: center; margin: 0 auto 11px; color: var(--ink); }
.df-node.dark .ic { background: rgba(255,255,255,.1); color: var(--lime); }
.df-node h5 { font-size: 14px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 5px; }
.df-node p { font-size: 11.5px; line-height: 1.45; font-weight: 600; color: var(--mute); margin: 0; }
.df-node.dark p { color: rgba(255,255,255,.6); }
.df-node .arr { position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 999px; background: var(--peri); color: #fff; display: grid; place-items: center; z-index: 3; box-shadow: 0 4px 12px rgba(0,0,224,.4); }
.df-node:last-child .arr { display: none; }
.df-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.df-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--peri-soft); color: var(--peri-d); border-radius: 999px; padding: 8px 14px; font-size: 12px; font-weight: 800; }
.df-tag.lime { background: var(--ink); color: var(--lime); }

.infra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.infra { background: #fff; border-radius: 20px; box-shadow: var(--sh-sm); padding: 26px; }
.infra .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--peri-soft); color: var(--peri-d); display: grid; place-items: center; margin-bottom: 16px; }
.infra h4 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 8px; }
.infra .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; font-weight: 600; color: var(--peri-d); background: var(--peri-soft); border-radius: 7px; padding: 3px 8px; display: inline-block; margin-bottom: 10px; }
.infra p { font-size: 13.5px; line-height: 1.55; color: var(--mute); font-weight: 500; margin: 0; }
.infra .geo { display: flex; gap: 8px; margin-top: 12px; }
.infra .geo span { font-size: 12px; font-weight: 700; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.infra .geo i { width: 8px; height: 8px; border-radius: 999px; background: var(--up); display: inline-block; }

.pentest { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pentest .pt { background: #fff; border-radius: 20px; box-shadow: var(--sh-sm); padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start; }
.pentest .pt .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; flex-shrink: 0; }
.pentest .pt h4 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin: 2px 0 7px; }
.pentest .pt p { font-size: 13.5px; line-height: 1.55; color: var(--mute); font-weight: 500; margin: 0 0 12px; }
.pentest .pt .meta { display: flex; gap: 16px; }
.pentest .pt .meta .m .v { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.pentest .pt .meta .m .t { font-size: 11px; font-weight: 700; color: var(--lbl); }

/* ============================================================
   COMPLIANCE — advisory, checklist, case studies
   ============================================================ */
.advisory { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; background: #fff; border-radius: var(--r-card); box-shadow: var(--sh-sm); padding: 32px 36px; border-left: 4px solid var(--peri); }
.advisory .quote-mark { font-size: 80px; line-height: .6; font-weight: 900; color: var(--peri-soft); font-family: Georgia, serif; }
.advisory blockquote { margin: 0; font-size: 19px; line-height: 1.55; font-weight: 600; color: var(--ink-2); letter-spacing: -.01em; }
.advisory blockquote strong { color: var(--peri-d); }
.advisory .by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.advisory .by .ph { width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.advisory .by .nm { font-weight: 800; font-size: 14px; }
.advisory .by .rl { font-size: 12px; color: var(--mute); font-weight: 600; }

.lead { background: var(--lime); border-radius: var(--r-card); padding: 40px 44px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.lead h3 { font-size: 28px; font-weight: 800; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 10px; color: var(--ink); }
.lead p { font-size: 15px; font-weight: 600; color: rgba(14,15,18,.7); margin: 0; max-width: 32em; }
.lead-card { background: var(--ink); color: #fff; border-radius: 18px; padding: 22px; width: 280px; }
.lead-card .ck { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.lead-card .ck svg { color: var(--lime); flex-shrink: 0; }
.lead-form { display: flex; gap: 8px; margin-top: 14px; }
.lead-form input { flex: 1; min-width: 0; border: 0; border-radius: 11px; background: rgba(255,255,255,.1); color: #fff; font-family: var(--font); font-size: 13.5px; font-weight: 500; padding: 12px 14px; outline: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.lead-form input::placeholder { color: rgba(255,255,255,.55); }
.lead-form button { border: 0; border-radius: 11px; background: var(--lime); color: var(--ink); font-family: var(--font); font-weight: 800; font-size: 13px; padding: 0 16px; cursor: pointer; white-space: nowrap; transition: transform .12s ease; }
.lead-form button:hover { transform: translateY(-1px); }
.lead-note { font-size: 11px; color: rgba(255,255,255,.5); margin: 10px 0 0; font-weight: 500; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-study { background: #fff; border-radius: 20px; box-shadow: var(--sh-sm); padding: 26px; display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease; }
.case-study:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.case-study .cs-top { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.case-study .cs-ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; }
.case-study .cs-k { font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--lbl); }
.case-study h4 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 9px; }
.case-study p { font-size: 13.5px; line-height: 1.55; color: var(--mute); font-weight: 500; margin: 0 0 16px; }
.case-study .cs-flow { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.case-study .cs-flow .cf { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--ink-2); }
.case-study .cs-flow .cf .n { width: 20px; height: 20px; border-radius: 7px; background: var(--bg); display: grid; place-items: center; font-size: 10.5px; font-weight: 800; color: var(--peri-d); flex-shrink: 0; }

/* ---------- mini stat counters helper ---------- */
.count-up { font-variant-numeric: tabular-nums; }

/* ---------- footer company transparency ---------- */
.foot-company { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--line); font-size: 12px; color: var(--mute); font-weight: 500; }
.foot-company .dev { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink-2); transition: color .16s ease; }
.foot-company .dev:hover { color: var(--peri-d); }
.foot-company .dev .nv-logo { width: 34px; height: 34px; border-radius: 8px; background: var(--ink); padding: 5px; display: block; object-fit: contain; box-sizing: border-box; }
.foot-company .dev .nv { width: 24px; height: 24px; border-radius: 7px; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-weight: 900; font-size: 12px; }
.foot-company .fiscal { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-company .fiscal span { white-space: nowrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .flow { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .flow::before { display: none; }
  .console-grid { grid-template-columns: 1fr; }
  .console-list { border-right: 0; border-bottom: 1px solid #f0eef2; max-height: 280px; overflow-y: auto; }
  .audit { grid-template-columns: 1fr; gap: 22px; }
  .audit-log { width: 100%; }
  .soon-grid { grid-template-columns: 1fr 1fr; }
  .ent { grid-template-columns: 1fr; gap: 30px; padding: 34px 28px; }
  .df-track { grid-template-columns: 1fr 1fr; gap: 30px 12px; }
  .df-node .arr { display: none; }
  .infra-grid { grid-template-columns: 1fr; }
  .pentest { grid-template-columns: 1fr; }
  .lead { grid-template-columns: 1fr; gap: 24px; }
  .lead-card { width: 100%; }
  .cases { grid-template-columns: 1fr; }
  .guard { grid-template-columns: 1fr; gap: 18px; padding: 30px 26px; }
  .advisory { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
  .advisory .quote-mark { display: none; }
}
@media (max-width: 680px) {
  .flow { grid-template-columns: 1fr; }
  .soon-grid { grid-template-columns: 1fr; }
  .df-track { grid-template-columns: 1fr; }
  .cmp { overflow-x: auto; }
  .cmp table { min-width: 540px; }
}

/* ============================================================
   LAYOUT VARIETY — break uniform white-box repetition
   ============================================================ */

/* compliance strip → outlined chips, not boxed cards */
.strip { gap: 14px; }
.strip .item {
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 14px;
}
.strip .item:nth-child(2) { background: #fff; border-color: transparent; box-shadow: var(--sh-sm); }
.strip .item:nth-child(2) .ic { background: var(--ink); color: var(--lime); }
.strip .item:nth-child(3) .ic { background: var(--up-soft); color: var(--up); }

/* teasers → colored top stripe + flat border, not uniform shadow boxes */
.teasers { gap: 18px; align-items: stretch; }
.teaser {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: none;
  overflow: hidden;
  padding-top: 32px;
}
.teaser::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--peri);
}
.teaser:nth-child(2)::before { background: var(--ink); }
.teaser:nth-child(3)::before { background: var(--up); }
.teaser:hover { border-color: transparent; box-shadow: var(--sh); }

/* steps → timeline with connector behind icons, no boxed chrome */
.steps { position: relative; gap: 28px; }
.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 25px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: transparent;
  box-shadow: none;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}
.step .ic {
  background: #fff !important;
  border: 2px solid var(--ink);
  color: var(--ink) !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  margin-bottom: 18px;
}
.step:nth-child(2) .ic { border-color: var(--peri); color: var(--peri-d) !important; }
.step:nth-child(3) .ic { border-color: var(--up); color: var(--up) !important; }
.step .n { color: var(--mute); font-size: 11px; margin-bottom: 10px; }
.step .arrow { display: none; }

/* lawcard → accent left border, no uniform shadow */
.law-grid { gap: 14px; }
.lawcard {
  box-shadow: none;
  border: 1px solid var(--line);
  border-left: 4px solid var(--peri);
  border-radius: 14px;
}
.lawcard:nth-child(4n+2) { border-left-color: var(--amber); }
.lawcard:nth-child(4n+3) { border-left-color: var(--up); }
.lawcard:nth-child(4n+4) { border-left-color: var(--ink); }
.lawcard:hover { border-color: var(--line); box-shadow: var(--sh-sm); transform: translateY(-2px); }

/* feat-grid (fcards) → no card chrome, use divider grid */
.feat-grid { gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.fcard {
  border-radius: 0;
  box-shadow: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 24px;
}

/* infra-grid → minimal stacked tiles with top accent */
.infra {
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
}
.infra::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: var(--peri);
  border-radius: 0 0 3px 3px;
}
.infra:nth-child(2)::before { background: var(--ink); }
.infra:nth-child(3)::before { background: var(--up); }

/* cases → first card gets dark inverted treatment, others outlined */
.cases { gap: 16px; }
.case-study {
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.case-study:first-child {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.case-study:first-child .cs-k,
.case-study:first-child p { color: rgba(255,255,255,.68); }
.case-study:first-child h4 { color: #fff; }
.case-study:first-child .cs-flow .cf { color: rgba(255,255,255,.9); }
.case-study:first-child .cs-flow .cf .n { background: rgba(255,255,255,.1); color: var(--lime); }

/* pentest → 1st card highlighted, 2nd outlined */
.pentest .pt { box-shadow: none; border: 1px solid var(--line); }
.pentest .pt:first-child { background: var(--peri-soft); border-color: transparent; }

/* soon → first card highlighted */
.soon { border: 1px solid var(--line); box-shadow: none; }
.soon:first-child { background: var(--peri); color: #fff; border-color: transparent; }
.soon:first-child .logo { background: rgba(255,255,255,.18); color: #fff; }
.soon:first-child p { color: rgba(255,255,255,.78); }
.soon:first-child .tag { background: rgba(255,255,255,.18); color: #fff; }

/* faq → flatter, no shadow stack */
.faq details { box-shadow: none; border: 1px solid var(--line); }
.faq details[open] { box-shadow: none; border-color: var(--peri); }

/* ============================================================
   MOBILE — tighter paddings, smaller radii, better stacking
   ============================================================ */
@media (max-width: 920px) {
  section { padding: 64px 0; }
  .sec-head { margin-bottom: 32px; }
  .steps::before { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .fcard:nth-child(2n) { border-right: 0; }
}

@media (max-width: 680px) {
  :root { --r-card: 18px; }
  .wrap { padding: 0 18px; }
  section { padding: 44px 0; }
  .sec-head { margin-bottom: 26px; }
  .sec-head h2 { font-size: clamp(26px, 7vw, 34px); }
  .sec-head p.k { font-size: 15.5px; }

  .hero { padding: 30px 0 40px; }
  .hero-grid { gap: 32px; }
  .hero-body { font-size: 16px; }
  .hero-cta { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 12px; margin-top: 18px; }
  .float-chip { display: none; }
  .hero-visual .report { margin: 0; }

  .strip { gap: 10px; }
  .strip .item { padding: 14px 16px; }

  .teasers, .feat-grid { grid-template-columns: 1fr; }
  .feat-grid { border-left: 0; border-top: 0; background: transparent; border-radius: 0; }
  .fcard { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; }

  .teaser { padding: 24px 22px 22px; padding-top: 28px; }
  .step .n { width: 48px; height: 48px; font-size: 12px; margin-bottom: 14px; }

  .statband { padding: 28px 22px; gap: 22px; border-radius: 22px; }
  .statband .s .v { font-size: 38px; }

  .cta, .band { padding: 36px 22px; border-radius: 22px; }
  .cta h2 { font-size: clamp(26px, 7vw, 34px); }
  .cta p.l { font-size: 15px; }
  .cta .hero-cta { max-width: 320px; margin: 0 auto; }

  .faq summary { font-size: 15px; padding: 16px 0; }
  .faq .ans { font-size: 14px; }
  .faq details { padding: 0 18px; }

  .lawcard { padding: 20px; }
  .infra { padding: 22px; }
  .case-study { padding: 22px; }
  .guard { padding: 24px 22px; }
  .advisory { padding: 22px; }

  .page-hero { padding: 36px 0 8px; }

  .foot-top { padding-bottom: 26px; }
  .foot-company .fiscal { gap: 8px 14px; }
  .foot-inner { gap: 12px; }
}

/* hero eyebrows + platforms + free-trial subline */
.hero-eyebrows { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pill--lime { background: var(--lime); color: var(--ink); }
.pill--lime .dot { background: var(--ink); }
.hero-cta-sub { font-size: 12.5px; font-weight: 700; color: var(--mute); margin-top: 14px; letter-spacing: .01em; }
.hero-platforms { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-platforms .hp-l { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); margin-right: 4px; }
.hero-platforms .hp { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: #fff; box-shadow: var(--sh-sm); font-size: 12.5px; font-weight: 800; color: var(--ink); transition: transform .14s ease, box-shadow .14s ease; }
.hero-platforms .hp:hover { transform: translateY(-1px); box-shadow: var(--sh); }
.hero-platforms .hp.soon { opacity: .55; }
.hero-platforms .hp.soon::after { content: "soon"; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--peri-d); margin-left: 2px; }
@media (max-width: 680px) {
  .hero-platforms { gap: 6px; padding-top: 18px; }
  .hero-platforms .hp { padding: 6px 10px; font-size: 11.5px; }
}

/* home downloads block */
.home-dl { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; }
.hdl { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 10px; position: relative; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.hdl:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: transparent; }
.hdl-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--bg); color: var(--ink); display: grid; place-items: center; }
.hdl-plat { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.hdl-h { font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.hdl-go { margin-top: auto; font-size: 13px; font-weight: 800; color: var(--peri-d); }
.hdl-badge { position: absolute; top: 14px; right: 14px; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--peri-d); background: var(--peri-soft); border-radius: 999px; padding: 4px 9px; }
.hdl--main { background: var(--ink); color: #fff; border-color: transparent; }
.hdl--main .hdl-ic { background: rgba(255,255,255,.08); color: var(--lime); }
.hdl--main .hdl-plat { color: rgba(255,255,255,.55); }
.hdl--main .hdl-h { color: #fff; }
.hdl--main .hdl-go { color: var(--lime); }
@media (max-width: 920px) {
  .home-dl { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .home-dl { grid-template-columns: 1fr; }
}

/* brand logo glyph — SVG mask over ink box, lime fill */
.brand .mark {
  font-size: 0;
  color: transparent;
  position: relative;
}
.brand .mark::before {
  content: "";
  position: absolute;
  inset: 6px 9px;
  background: var(--lime);
  -webkit-mask: url(logo.svg) center/contain no-repeat;
          mask: url(logo.svg) center/contain no-repeat;
}

@media (max-width: 420px) {
  .brand .name { font-size: 17px; }
  .brand .name small { display: none; }
  h1.hero-h { font-size: clamp(30px, 9vw, 40px); }
  .pill { font-size: 11px; padding: 4px 10px; }
  .statband { grid-template-columns: 1fr; padding: 24px 20px; }
  .statband .s .v { font-size: 34px; }
}
