/*!
     Hackal Standard Stylesheet, June 2026
     © 2026 Hackal, LLC. All rights reserved.

     Body background switcher options via data-bg on <body>: mesh (default), dots, contour, none
*/

@font-face {
     font-family: "Hackal-Regular";
     src: url("/static/fonts/hackal-regular.woff2") format("woff2");
     font-display: swap;
}
@font-face {
     font-family: "Hackal-Light";
     src: url("/static/fonts/hackal-light.woff2") format("woff2");
     font-display: swap;
}

:root {
     --ink: #0a0a0b;
     --ink-2: #0d0d10;
     --panel: #131317;
     --panel-2: #17171c;
     --panel-3: #1c1c22;
     --line: rgba(255, 255, 255, 0.08);
     --line-2: rgba(255, 255, 255, 0.14);
     --red: #e32227;
     --red-bright: #ff3a40;
     --red-deep: #8f1418;
     --red-soft: rgba(227, 34, 39, 0.14);
     --red-glow: rgba(227, 34, 39, 0.42);
     --text: #f5f5f6;
     --muted: #a6a6ae;
     --muted-2: #76767f;
     --white: #ffffff;
     --font-display: "Hackal-Regular", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
     --font-light: "Hackal-Light", "Hackal-Regular", ui-sans-serif, system-ui, sans-serif;
     --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", "Fira Code", Menlo, Consolas, "Liberation Mono", monospace;
     --maxw: 1180px;
     --r: 3px;
     --r-sm: 3px;
     --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
     --nav-h: 72px;

     --mesh-tile: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96.9948' viewBox='0 0 56 96.9948'%3E%3Cg fill='none' stroke-width='1'%3E%3Cpath d='M0 0H56M0 48.4974H56M0 96.9948H56M56 0L0 96.9948' stroke='%23ffffff' stroke-opacity='0.05'/%3E%3Cpath d='M0 0L56 96.9948' stroke='%23ff3a40' stroke-opacity='0.16'/%3E%3C/g%3E%3C/svg%3E");
     --mesh-size: 56px 96.9948px;
}

*, *::before, *::after {
     box-sizing: border-box;
}

html {
     -webkit-text-size-adjust: 100%;
     scroll-behavior: smooth;
}

body {
     margin: 0;
     background: var(--ink);
     color: var(--text);
     font-family: var(--font-display);
     font-size: 1rem;
     line-height: 1.6;
     font-weight: 500;
     letter-spacing: 0.005em;
     -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
     overflow-x: hidden;
}

body::before {
     content: "";
     position: fixed;
     inset: 0;
     z-index: -2;
     pointer-events: none;
     opacity: 0.85;
     background-color: transparent;
     background-position: 0 0;
     -webkit-mask-image: radial-gradient(140% 120% at 50% 0%, #000 55%, transparent 100%);
     mask-image: radial-gradient(140% 120% at 50% 0%, #000 55%, transparent 100%);

     background-repeat: no-repeat, no-repeat, repeat;
     background-size: auto, auto, var(--mesh-size);
     background-image:
          radial-gradient(900px 600px at 82% -8%, rgba(227, 34, 39, 0.16), transparent 60%),
          radial-gradient(1000px 700px at 8% 108%, rgba(227, 34, 39, 0.08), transparent 60%),
          var(--mesh-tile);
}

body[data-bg="mesh"]::before {
     background-repeat: no-repeat, no-repeat, repeat;
     background-size: auto, auto, var(--mesh-size);
     background-image:
          radial-gradient(900px 600px at 82% -8%, rgba(227, 34, 39, 0.16), transparent 60%),
          radial-gradient(1000px 700px at 8% 108%, rgba(227, 34, 39, 0.08), transparent 60%),
          var(--mesh-tile);
}

body[data-bg="dots"]::before {
     background-image:
          radial-gradient(900px 600px at 82% -8%, rgba(227, 34, 39, 0.16), transparent 60%),
          radial-gradient(1000px 700px at 8% 108%, rgba(227, 34, 39, 0.08), transparent 60%),
          radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1.7px);
     background-size: 100% 100%, 100% 100%, 24px 24px;
}

body[data-bg="contour"]::before {
     background-size: auto;
     background-image:
          radial-gradient(900px 600px at 82% -8%, rgba(227, 34, 39, 0.16), transparent 60%),
          radial-gradient(1000px 700px at 8% 108%, rgba(227, 34, 39, 0.08), transparent 60%),
          repeating-radial-gradient(circle at 100% 0%, transparent 0 46px, rgba(255, 255, 255, 0.05) 46px 47px);
}

body[data-bg="none"]::before {
     background-image:
          radial-gradient(900px 600px at 82% -8%, rgba(227, 34, 39, 0.16), transparent 60%),
          radial-gradient(1000px 700px at 8% 108%, rgba(227, 34, 39, 0.08), transparent 60%);
}

body::after {
     content: "";
     position: fixed;
     inset: 0;
     z-index: -1;
     pointer-events: none;
     opacity: 0.035;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg {
     display: block;
     max-width: 100%;
}

a {
     color: var(--red);
     text-decoration: none;
}

::selection {
     background: var(--red);
     color: #fff;
}

:focus-visible {
     outline: 2px solid var(--red-bright);
     outline-offset: 3px;
     border-radius: 3px;
}

.wrap {
     width: 100%;
     max-width: var(--maxw);
     margin-inline: auto;
     padding-inline: 24px;
}

.section {
     position: relative;
     padding-block: clamp(64px, 9vw, 128px);
     scroll-margin-top: calc(var(--nav-h) + 12px);
}

.section-divider {
     border: 0;
     height: 1px;
     margin: 0;
     background: linear-gradient(90deg, transparent, var(--line-2) 30%, var(--line-2) 70%, transparent);
}

.eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-family: var(--font-mono);
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--muted);
     margin: 0 0 22px;
}

.eyebrow .reticle {
     width: 13px;
     height: 13px;
     flex: none;
     color: var(--red);
}

.eyebrow.on-light {
     color: #5a5a62;
}

h1, h2, h3, h4 {
     font-family: var(--font-display);
     font-weight: 600;
     line-height: 1.04;
     letter-spacing: -0.018em;
     margin: 0;
}

.h-hero {
     font-size: clamp(2.5rem, 6.6vw, 4.7rem);
     line-height: 0.98;
}

.h-xl {
     font-size: clamp(2rem, 4.6vw, 3.25rem);
}

.h-lg {
     font-size: clamp(1.7rem, 3.4vw, 2.55rem);
}

.h-md {
     font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.lead {
     font-size: clamp(1.05rem, 1.5vw, 1.28rem);
     line-height: 1.6;
     color: var(--muted);
     font-weight: 400;
}

.light {
     font-family: var(--font-light);
     font-weight: 400;
}

.red {
     color: var(--red);
}

.nowrap {
     white-space: nowrap;
}

.mono {
     font-family: var(--font-mono);
}

.measure {
     max-width: 60ch;
}

.btn {
     --btn-bg: var(--red);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 15px 26px;
     border: 1px solid transparent;
     border-radius: var(--r-sm);
     font-family: var(--font-display);
     font-size: 1.02rem;
     font-weight: 600;
     letter-spacing: 0.01em;
     line-height: 1;
     cursor: pointer;
     white-space: nowrap;
     transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn svg {
     width: 18px;
     height: 18px;
     transition: transform 0.25s var(--ease);
}

.btn-primary {
     background: linear-gradient(180deg, var(--red-bright), var(--red));
     color: #fff;
     box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 14px 34px -12px var(--red-glow);
}

.btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset, 0 20px 44px -12px var(--red-glow);
}

.btn-primary:hover svg {
     transform: translateX(4px);
}

.btn-ghost {
     background: rgba(255, 255, 255, 0.02);
     border-color: var(--line-2);
     color: var(--text);
}

.btn-ghost:hover {
     border-color: var(--red);
     color: #fff;
     transform: translateY(-2px);
}

.btn-block {
     width: 100%;
}

.chips {
     display: flex;
     flex-wrap: wrap;
     gap: 9px;
}

.chip {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 7px 13px;
     border: 1px solid var(--line);
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.02);
     font-family: var(--font-mono);
     font-size: 0.74rem;
     letter-spacing: 0.04em;
     color: var(--muted);
}

.chip::before {
     content: "";
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--red);
     box-shadow: 0 0 8px var(--red);
     flex: none;
}

#nav {
     position: fixed;
     inset: 0 0 auto 0;
     z-index: 100;
     height: var(--nav-h);
     display: flex;
     align-items: center;
     background: rgba(10, 10, 11, 0.55);
     -webkit-backdrop-filter: saturate(150%) blur(14px);
     backdrop-filter: saturate(150%) blur(14px);
     border-bottom: 1px solid transparent;
     transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#nav.scrolled {
     background: rgba(10, 10, 11, 0.92);
     border-bottom-color: var(--line);
     box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}

.nav-inner {
     width: 100%;
     max-width: var(--maxw);
     margin-inline: auto;
     padding-inline: 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 18px;
}

.nav-brand {
     display: inline-flex;
     align-items: center;
}

.nav-brand img {
     height: 48px;
     width: auto;
}

.nav-menu {
     display: flex;
     align-items: center;
     gap: 4px;
     list-style: none;
     margin: 0;
     padding: 0;
}

.nav-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 10px 14px;
     border-radius: 3px;
     color: var(--muted);
     font-size: 0.95rem;
     font-weight: 500;
     background: none;
     border: 0;
     cursor: pointer;
     font-family: inherit;
     transition: color 0.18s var(--ease), background 0.18s var(--ease);
}

.nav-link:hover {
     color: var(--text);
}

.nav-link .caret {
     width: 11px;
     height: 11px;
     opacity: 0.7;
     transition: transform 0.2s var(--ease);
}

.nav-item {
     position: relative;
}

.nav-item.open .caret {
     transform: rotate(180deg);
}

.dropdown {
     --dd-gap: 10px;
     position: absolute;
     top: calc(100% + var(--dd-gap));
     left: 0;
     min-width: 248px;
     padding: 8px;
     border: 1px solid var(--line);
     border-radius: 3px;
     background: rgba(17, 17, 21, 0.97);
     -webkit-backdrop-filter: blur(16px);
     backdrop-filter: blur(16px);
     box-shadow: 0 28px 60px -22px rgba(0, 0, 0, 0.85);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-6px);
     transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}

.dropdown::before {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     top: calc(-1 * var(--dd-gap));
     height: var(--dd-gap);
}

.nav-item:hover > .dropdown,
.nav-item.open > .dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}

.dropdown a {
     display: block;
     padding: 9px 12px;
     border-radius: 3px;
     color: var(--muted);
     font-size: 0.92rem;
     transition: color 0.16s var(--ease), background 0.16s var(--ease);
}

.dropdown a:hover {
     color: #fff;
     background: rgba(255, 255, 255, 0.05);
}

.dropdown hr {
     border: 0;
     border-top: 1px solid var(--line);
     margin: 7px 6px;
}

.nav-cta {
     display: flex;
     align-items: center;
     gap: 12px;
}

.nav-cta .btn {
     padding: 11px 18px;
     font-size: 0.92rem;
}

.nav-toggle {
     display: none;
     width: 44px;
     height: 40px;
     border: 1px solid var(--line-2);
     border-radius: 3px;
     background: rgba(255, 255, 255, 0.02);
     color: var(--text);
     cursor: pointer;
     align-items: center;
     justify-content: center;
}

.nav-toggle svg {
     width: 20px;
     height: 20px;
}

.nav-mobile {
     display: none;
}

.hero {
     position: relative;
     isolation: isolate;
     padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 92px));
     padding-bottom: clamp(56px, 8vw, 104px);
     overflow: hidden;
}

.hero::before {
     content: "";
     position: absolute;
     inset: 0;
     z-index: 0;
     pointer-events: none;
     background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.25) 46%, transparent 66%);
}

.hero .wrap {
     position: relative;
     z-index: 1;
}

.hero-grid {
     display: grid;
     grid-template-columns: 1.08fr 0.92fr;
     gap: clamp(32px, 5vw, 72px);
     align-items: center;
}

.hero-copy .eyebrow {
     margin-bottom: 26px;
}

.hero h1 {
     margin-bottom: 24px;
}

.hero h1 .strike-line {
     display: block;
}

.hero-sub {
     max-width: 38ch;
     margin: 0 0 30px;
}

.hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
     margin-bottom: 22px;
}

.hero-micro {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 8px 16px;
     font-family: var(--font-mono);
     font-size: 0.78rem;
     color: var(--muted-2);
     margin-bottom: 30px;
}

.hero-micro b {
     color: var(--muted);
     font-weight: 600;
}

.hero-micro .dot {
     color: var(--red);
}

.scope {
     position: relative;
     width: 100%;
     max-width: 460px;
     margin-inline: auto;
     aspect-ratio: 1 / 1;
     display: grid;
     place-items: center;
}

.scope-glow {
     position: absolute;
     inset: -12%;
     background: radial-gradient(circle at 50% 50%, var(--red-soft), transparent 62%);
     filter: blur(8px);
}

.scope-disc {
     position: relative;
     width: 86%;
     aspect-ratio: 1 / 1;
     border-radius: 50%;
     overflow: hidden;
     background:
          radial-gradient(circle at 50% 50%, rgba(227, 34, 39, 0.05), transparent 70%),
          radial-gradient(circle at 50% 50%, #101014, #0a0a0c 72%);
     border: 1px solid var(--line-2);
     box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7), 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}

.scope-rings {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
}

.scope-sweep {
     position: absolute;
     inset: 0;
     border-radius: 50%;
     background: conic-gradient(from 0deg, rgba(227, 34, 39, 0) 0deg, rgba(227, 34, 39, 0) 286deg, rgba(227, 34, 39, 0.05) 320deg, rgba(227, 34, 39, 0.32) 352deg, rgba(255, 90, 95, 0.7) 360deg);
     transform-origin: 50% 50%;
}

.scope-core {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 12px;
     height: 12px;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     background: var(--red);
     box-shadow: 0 0 16px var(--red), 0 0 36px var(--red-glow);
}

.ping {
     position: absolute;
     width: 9px;
     height: 9px;
     border-radius: 50%;
     background: var(--red-bright);
     box-shadow: 0 0 10px var(--red);
     transform: translate(-50%, -50%);
}

.ping::after {
     content: "";
     position: absolute;
     inset: -4px;
     border-radius: 50%;
     border: 1px solid var(--red);
     opacity: 0;
}

.ping.p1 { top: 30%; left: 64%; }
.ping.p2 { top: 66%; left: 38%; }
.ping.p3 { top: 58%; left: 70%; }

.scope-tag {
     position: absolute;
     transform: translate(-50%, -50%);
     font-family: var(--font-mono);
     font-size: 0.6rem;
     letter-spacing: 0.06em;
     color: var(--red-bright);
     background: rgba(10, 10, 12, 0.82);
     border: 1px solid rgba(227, 34, 39, 0.4);
     border-radius: 3px;
     padding: 3px 7px;
     white-space: nowrap;
}

.scope-tag.t1 { top: 22%; left: 66%; }
.scope-tag.t2 { top: 74%; left: 36%; }
.scope-tag.t3 { top: 50%; left: 72%; }

.hero-scope {
     position: absolute;
     top: 50%;
     left: 58%;
     width: min(960px, 116%);
     aspect-ratio: 1 / 1;
     transform: translate(-50%, -50%);
     z-index: 0;
     pointer-events: none;
     background:
          radial-gradient(circle at 50% 50%, rgba(227, 34, 39, 0.16), transparent 56%),
          repeating-radial-gradient(circle at 50% 50%, transparent 0 40px, rgba(255, 255, 255, 0.04) 40px 41px);
     -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 54%, transparent 80%);
     mask-image: radial-gradient(circle at 50% 50%, #000 54%, transparent 80%);
}

.hero-scope::after {
     content: "";
     position: absolute;
     inset: 0;
     border-radius: 50%;
     transform: rotate(45deg);
     background: conic-gradient(from 0deg, rgba(227, 34, 39, 0) 0deg, rgba(227, 34, 39, 0) 288deg, rgba(227, 34, 39, 0.05) 322deg, rgba(227, 34, 39, 0.24) 352deg, rgba(255, 90, 95, 0.55) 360deg);
     -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 54%, transparent 80%);
     mask-image: radial-gradient(circle at 50% 50%, #000 54%, transparent 80%);
}

.hero-visual {
     position: relative;
}

.hero-shot {
     width: auto;
     height: auto;
     max-width: 100%;
     max-height: 680px;
     margin-inline: auto;
     border-radius: var(--r);
     filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.75));
}

.brandmark {
     position: relative;
     overflow: hidden;
     border-block: 1px solid var(--line);
     background: radial-gradient(120% 130% at 50% 50%, rgba(227, 34, 39, 0.08), transparent 62%);
     text-align: center;
}

.brandmark-inner {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: clamp(18px, 2.4vw, 28px);
}

.brandmark-img {
     width: 100%;
     max-width: min(760px, 100%);
     height: auto;
     aspect-ratio: 2000 / 1350;
     max-height: clamp(240px, 38vh, 460px);
     object-fit: contain;
     filter: drop-shadow(0 14px 40px rgba(227, 34, 39, 0.16));
}

.brandmark-cap {
     max-width: 54ch;
     margin: 0;
     color: var(--muted);
     font-size: 1.02rem;
     line-height: 1.65;
}

.problem {
     background:
          radial-gradient(120% 80% at 50% 0%, rgba(227, 34, 39, 0.07), transparent 60%),
          linear-gradient(180deg, #0a0a0b, #050506);
     border-top: 1px solid var(--line);
     border-bottom: 1px solid var(--line);
}

.problem-head {
     max-width: 760px;
}

.problem-head .lead {
     margin-top: 22px;
}

.stat-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 18px;
     margin: clamp(40px, 6vw, 64px) 0;
}

.stat {
     position: relative;
     padding: 26px 18px;
     border: 1px solid var(--line);
     border-radius: var(--r);
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
     overflow: hidden;
}

.stat::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, var(--red), transparent);
}

.stat .num {
     font-family: var(--font-display);
     font-weight: 700;
     font-size: clamp(1.9rem, 3.4vw, 2.7rem);
     line-height: 1;
     color: var(--red);
     letter-spacing: -0.02em;
}

.stat .label {
     margin-top: 12px;
     font-size: 0.92rem;
     line-height: 1.45;
     color: var(--muted);
     font-weight: 400;
}

.problem-close {
     max-width: 820px;
     margin-top: 8px;
}

.pillars {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: clamp(36px, 5vw, 56px);
}

.pillar {
     padding: 30px 26px;
     border: 1px solid var(--line);
     border-radius: var(--r);
     background: linear-gradient(180deg, var(--panel), var(--ink-2));
     transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.pillar:hover {
     border-color: var(--line-2);
     transform: translateY(-4px);
}

.pillar .p-icon {
     width: 40px;
     height: 40px;
     display: grid;
     place-items: center;
     border-radius: 3px;
     color: var(--red);
     background: var(--red-soft);
     border: 1px solid rgba(227, 34, 39, 0.28);
     margin-bottom: 18px;
}

.pillar .p-icon svg {
     width: 21px;
     height: 21px;
}

.pillar h3 {
     font-size: 1.18rem;
     margin-bottom: 10px;
}

.pillar p {
     margin: 0;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.97rem;
}

.steps {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
     margin-top: 26px;
     counter-reset: step;
}

.step {
     position: relative;
     padding: 26px 24px;
     border: 1px solid var(--line);
     border-radius: var(--r);
     background: rgba(255, 255, 255, 0.015);
}

.step::before {
     counter-increment: step;
     content: counter(step, decimal-leading-zero);
     font-family: var(--font-mono);
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     color: var(--red);
}

.step h3 {
     font-size: 1.3rem;
     margin: 12px 0 8px;
}

.step p {
     margin: 0;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.95rem;
}

.features-head {
     display: flex;
     flex-wrap: wrap;
     align-items: flex-end;
     justify-content: space-between;
     gap: 20px;
     margin-bottom: clamp(36px, 5vw, 54px);
}

.features-head .lead {
     max-width: 36ch;
}

.feature-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
}

.feature {
     position: relative;
     display: flex;
     flex-direction: column;
     padding: 30px 28px;
     border: 1px solid var(--line);
     border-radius: var(--r);
     background: linear-gradient(180deg, var(--panel), var(--ink-2));
     color: inherit;
     overflow: hidden;
     transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature::after {
     content: "";
     position: absolute;
     inset: 0;
     border-radius: var(--r);
     background: radial-gradient(140% 120% at 100% 0%, rgba(227, 34, 39, 0.1), transparent 45%);
     opacity: 0;
     transition: opacity 0.3s var(--ease);
     pointer-events: none;
}

.feature:hover {
     transform: translateY(-6px);
     border-color: rgba(227, 34, 39, 0.45);
     box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.9);
}

.feature:hover::after {
     opacity: 1;
}

.f-icon {
     position: relative;
     width: 52px;
     height: 52px;
     display: grid;
     place-items: center;
     margin-bottom: 20px;
     color: var(--red);
}

.f-icon .reticle-ring {
     position: absolute;
     inset: 0;
     color: rgba(227, 34, 39, 0.35);
}

.f-icon .f-glyph {
     width: 24px;
     height: 24px;
     position: relative;
}

.feature h3 {
     font-size: 1.22rem;
     margin-bottom: 10px;
}

.feature p {
     margin: 0 0 20px;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.96rem;
     flex: 1;
}

.f-link {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     font-family: var(--font-mono);
     font-size: 0.78rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--text);
}

.f-link svg {
     width: 14px;
     height: 14px;
     color: var(--red);
     transition: transform 0.25s var(--ease);
}

.feature:hover .f-link svg {
     transform: translateX(4px);
}

.cmp-head {
     max-width: 820px;
     margin-bottom: clamp(34px, 5vw, 50px);
}

.cmp-points {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 30px;
}

.cmp-point h3 {
     font-size: 1.05rem;
     color: var(--red);
     margin-bottom: 9px;
}

.cmp-point p {
     margin: 0;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.95rem;
}

.cmp-table-wrap {
     margin-top: clamp(40px, 5vw, 56px);
     border: 1px solid var(--line);
     border-radius: var(--r);
     overflow: hidden;
     background: var(--panel);
}

.cmp-table {
     width: 100%;
     border-collapse: collapse;
     table-layout: fixed;
}

.cmp-table th,
.cmp-table td {
     padding: clamp(12px, 1.8vw, 20px);
     text-align: center;
     font-size: clamp(0.74rem, 1.4vw, 0.95rem);
     border-bottom: 1px solid var(--line);
     vertical-align: middle;
}

.cmp-table thead th {
     background: rgba(255, 255, 255, 0.02);
     font-weight: 600;
     color: var(--muted);
     letter-spacing: 0.02em;
}

.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td {
     border-bottom: 0;
}

.cmp-row-label {
     text-align: left !important;
     font-weight: 600;
     color: var(--text);
     width: 26%;
}

.cmp-bad {
     color: var(--muted-2);
}

.cmp-neutral {
     color: var(--muted);
}

.cmp-hi {
     position: relative;
     background: rgba(227, 34, 39, 0.06);
}

.cmp-table thead .cmp-hi {
     background: linear-gradient(180deg, var(--red), var(--red-deep));
     color: #fff;
}

.cmp-good {
     color: #fff;
     font-weight: 600;
}

.cmp-hi-mark {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     justify-content: center;
}

.cmp-hi-mark svg {
     width: 15px;
     height: 15px;
     color: var(--red-bright);
     flex: none;
}

.roi {
     background:
          radial-gradient(110% 80% at 50% 100%, rgba(227, 34, 39, 0.08), transparent 60%),
          linear-gradient(180deg, #050506, #0a0a0b);
     border-top: 1px solid var(--line);
     border-bottom: 1px solid var(--line);
}

.roi-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-top: clamp(34px, 5vw, 50px);
}

.roi-col {
     padding: 34px 30px;
     border: 1px solid var(--line);
     border-radius: var(--r);
}

.roi-col.without {
     background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.roi-col.with {
     background: linear-gradient(180deg, rgba(227, 34, 39, 0.1), rgba(227, 34, 39, 0.02));
     border-color: rgba(227, 34, 39, 0.4);
     box-shadow: 0 30px 70px -38px var(--red-glow);
}

.roi-col h3 {
     font-size: 1.5rem;
     margin-bottom: 22px;
     display: flex;
     align-items: center;
     gap: 11px;
}

.roi-col h3 svg {
     width: 22px;
     height: 22px;
}

.roi-col.without h3 svg { color: var(--muted-2); }
.roi-col.with h3 svg { color: var(--red); }

.roi-list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: grid;
     gap: 16px;
}

.roi-list li {
     display: flex;
     gap: 13px;
     align-items: flex-start;
     color: var(--muted);
     font-weight: 400;
     font-size: 1.02rem;
}

.roi-list li svg {
     width: 19px;
     height: 19px;
     flex: none;
     margin-top: 2px;
}

.roi-col.without .roi-list li svg { color: var(--muted-2); }
.roi-col.with .roi-list li svg { color: var(--red); }

.roi-list b {
     color: var(--text);
     font-weight: 600;
}

.roi-col.with .roi-list b {
     color: #fff;
}

.pricing-head {
     text-align: center;
     max-width: 660px;
     margin-inline: auto;
}

.pricing-head .eyebrow {
     justify-content: center;
}

.toggle {
     display: inline-flex;
     align-items: center;
     gap: 16px;
     margin: 30px auto 40px;
     justify-content: center;
     width: 100%;
}

.toggle span {
     font-family: var(--font-mono);
     font-size: 0.82rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--muted-2);
     transition: color 0.2s var(--ease);
}

.toggle span.on {
     color: var(--text);
}

.switch {
     position: relative;
     width: 56px;
     height: 30px;
     flex: none;
}

.switch input {
     position: absolute;
     opacity: 0;
     width: 100%;
     height: 100%;
     margin: 0;
     cursor: pointer;
}

.switch .track {
     position: absolute;
     inset: 0;
     border-radius: 999px;
     background: var(--panel-3);
     border: 1px solid var(--line-2);
     transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.switch .knob {
     position: absolute;
     top: 3px;
     left: 3px;
     width: 22px;
     height: 22px;
     border-radius: 50%;
     background: var(--muted);
     transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.switch input:checked + .track {
     background: linear-gradient(180deg, var(--red-bright), var(--red));
     border-color: transparent;
}

.switch input:checked + .track + .knob {
     transform: translateX(26px);
     background: #fff;
}

.plan {
     position: relative;
     max-width: 600px;
     margin-inline: auto;
     border: 1px solid rgba(227, 34, 39, 0.42);
     border-radius: 3px;
     background: linear-gradient(180deg, var(--panel-2), var(--ink-2));
     box-shadow: 0 40px 90px -40px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
     overflow: hidden;
}

.plan::before {
     content: "";
     position: absolute;
     inset: 0;
     background: radial-gradient(120% 90% at 50% 0%, rgba(227, 34, 39, 0.14), transparent 55%);
     pointer-events: none;
}

.plan-head {
     position: relative;
     padding: 36px 34px 30px;
     border-bottom: 1px solid var(--line);
}

.plan-flag {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-family: var(--font-mono);
     font-size: 0.7rem;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: var(--red-bright);
     margin-bottom: 18px;
}

.price {
     display: flex;
     align-items: flex-start;
     gap: 4px;
     line-height: 1;
}

.price .cur {
     font-size: 1.6rem;
     font-weight: 600;
     margin-top: 8px;
     color: var(--text);
}

.price .amt {
     font-size: clamp(3.6rem, 8vw, 5rem);
     font-weight: 700;
     letter-spacing: -0.03em;
     color: #fff;
     font-variant-numeric: tabular-nums;
}

.price .per {
     align-self: flex-end;
     margin-bottom: 12px;
     color: var(--muted);
     font-size: 0.98rem;
     font-weight: 400;
}

.price .per .tag {
     display: block;
     font-family: var(--font-mono);
     font-size: 0.68rem;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--red-bright);
}

.plan-head h3 {
     font-size: 1.45rem;
     margin: 22px 0 10px;
}

.plan-head p {
     margin: 0;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.97rem;
}

.plan-head p + p {
     margin-top: 12px;
}

.plan-body {
     position: relative;
     padding: 32px 34px 36px;
}

.includes {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 13px 22px;
     list-style: none;
     margin: 0 0 30px;
     padding: 0;
}

.includes li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 0.95rem;
     color: var(--text);
     font-weight: 400;
}

.includes li svg {
     width: 17px;
     height: 17px;
     color: var(--red);
     flex: none;
     margin-top: 3px;
}

.includes a {
     color: var(--text);
     border-bottom: 1px solid transparent;
     transition: color 0.16s var(--ease), border-color 0.16s var(--ease);
}

.includes a:hover {
     color: var(--red-bright);
     border-bottom-color: var(--red);
}

.plan-note {
     text-align: center;
     margin: 22px auto 0;
     max-width: 540px;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.92rem;
}

.cred {
     background: linear-gradient(180deg, #0a0a0b, #060607);
     border-top: 1px solid var(--line);
}

.cred-grid {
     display: grid;
     grid-template-columns: 1fr 0.92fr;
     gap: clamp(36px, 6vw, 72px);
     align-items: center;
}

.cred h2 {
     margin-bottom: 26px;
}

.cred-photo {
     display: flex;
     justify-content: center;
     align-items: center;
}

.cred-img {
     width: 100%;
     max-width: min(920px, 100%);
     height: auto;
     aspect-ratio: 1200 / 777;
     object-fit: contain;
}

.cred-list {
     list-style: none;
     margin: 26px 0 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 16px;
}

.cred-list li {
     position: relative;
     padding-left: 20px;
     color: var(--muted);
     font-weight: 400;
     font-size: 1.04rem;
     line-height: 1.55;
}

.cred-list li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0.5em;
     width: 0;
     height: 0;
     border-left: 8px solid var(--red);
     border-top: 5px solid transparent;
     border-bottom: 5px solid transparent;
}

.cred-list strong {
     color: var(--text);
     font-weight: 600;
}

.faq-head {
     text-align: center;
     margin-bottom: clamp(34px, 5vw, 52px);
}

.faq-head .eyebrow {
     justify-content: center;
}

.acc {
     max-width: 860px;
     margin-inline: auto;
     display: grid;
     gap: 12px;
}

.acc-item {
     border: 1px solid var(--line);
     border-radius: var(--r);
     background: var(--panel);
     overflow: hidden;
     scroll-margin-top: calc(var(--nav-h) + 16px);
     transition: border-color 0.2s var(--ease);
}

.acc-item.open {
     border-color: rgba(227, 34, 39, 0.4);
}

.acc-q {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 18px;
     padding: 20px 24px;
     background: none;
     border: 0;
     cursor: pointer;
     text-align: left;
     color: var(--text);
     font-family: var(--font-display);
     font-size: 1.06rem;
     font-weight: 600;
     line-height: 1.3;
}

.acc-q:hover {
     color: var(--white);
}

.acc-icon {
     position: relative;
     width: 18px;
     height: 18px;
     flex: none;
}

.acc-icon::before,
.acc-icon::after {
     content: "";
     position: absolute;
     background: var(--red);
     border-radius: 2px;
     transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.acc-icon::before {
     top: 50%;
     left: 0;
     width: 100%;
     height: 2px;
     transform: translateY(-50%);
}

.acc-icon::after {
     left: 50%;
     top: 0;
     width: 2px;
     height: 100%;
     transform: translateX(-50%);
}

.acc-item.open .acc-icon::after {
     transform: translateX(-50%) scaleY(0);
     opacity: 0;
}

.acc-panel {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.34s var(--ease);
}

.acc-body {
     padding: 0 24px 22px;
     color: var(--muted);
     font-weight: 400;
     font-size: 0.98rem;
     line-height: 1.6;
}

.acc-body b {
     color: var(--text);
     font-weight: 600;
}

.acc-body a {
     color: var(--red-bright);
}

.acc-body ul {
     margin: 12px 0 0;
     padding-left: 20px;
}

.acc-body li {
     margin-bottom: 6px;
}

.cta {
     position: relative;
     overflow: hidden;

     background:
          radial-gradient(90% 120% at 50% 0%, rgba(227, 34, 39, 0.5), transparent 55%),
          linear-gradient(180deg, rgba(26, 6, 8, 0.74), rgba(6, 6, 7, 0.82) 70%);
     border-top: 1px solid var(--line);
}

.cta-inner {
     position: relative;
     display: grid;
     grid-template-columns: 1fr 0.95fr;
     gap: clamp(36px, 6vw, 72px);
     align-items: center;
}

.cta h2 {
     margin-bottom: 18px;
}

.cta-sub {
     color: rgba(255, 255, 255, 0.78);
     font-weight: 400;
     max-width: 44ch;
}

.cta-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 10px 22px;
     margin-top: 26px;
     font-family: var(--font-mono);
     font-size: 0.8rem;
     letter-spacing: 0.06em;
     color: rgba(255, 255, 255, 0.72);
}

.cta-meta ul {
     list-style: none;
     margin: 0;
     padding: 0;
}

.cta-meta li {
     list-style: none;
     margin: 0;
     padding: 0;
}

.cta-meta span {
     display: inline-flex;
     align-items: center;
     gap: 8px;
}

.cta-meta svg {
     width: 15px;
     height: 15px;
     color: #fff;
}

.form-card {
     border: 1px solid rgba(255, 255, 255, 0.16);
     border-radius: 3px;
     background: rgba(10, 10, 12, 0.72);
     -webkit-backdrop-filter: blur(14px);
     backdrop-filter: blur(14px);
     padding: 30px;
     box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}

.form-card h3 {
     font-size: 1.2rem;
     margin-bottom: 6px;
}

.form-card .fc-sub {
     color: var(--muted);
     font-weight: 400;
     font-size: 0.92rem;
     margin: 0 0 22px;
}

.field {
     margin-bottom: 14px;
}

.field input[type="email"],
.field input[type="text"] {
     width: 100%;
     padding: 14px 16px;
     border: 1px solid var(--line-2);
     border-radius: var(--r-sm);
     background: rgba(255, 255, 255, 0.04);
     color: var(--text);
     font-family: var(--font-display);
     font-size: 1rem;
     transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.field input::placeholder {
     color: var(--muted-2);
}

.field input:focus {
     outline: none;
     border-color: var(--red);
     background: rgba(255, 255, 255, 0.06);
}

.opts {
     display: grid;
     gap: 10px;
     margin: 18px 0;
}

.opt {
     display: flex;
     align-items: center;
     gap: 11px;
     font-size: 0.92rem;
     color: var(--muted);
     cursor: pointer;
}

.opt input {
     appearance: none;
     -webkit-appearance: none;
     width: 19px;
     height: 19px;
     flex: none;
     border: 1px solid var(--line-2);
     border-radius: 3px;
     background: rgba(255, 255, 255, 0.04);
     cursor: pointer;
     position: relative;
     transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}

.opt input:checked {
     background: var(--red);
     border-color: var(--red);
}

.opt input:checked::after {
     content: "";
     position: absolute;
     left: 6px;
     top: 2px;
     width: 5px;
     height: 10px;
     border: solid #fff;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
}

.form-card altcha-widget {
     display: block;
     margin: 16px 0 6px;
     --altcha-border-width: 1px;
     --altcha-border-radius: 3px;
     --altcha-color-base: rgba(255, 255, 255, 0.04);
     --altcha-color-border: var(--line-2);
     --altcha-color-text: var(--text);
}

.privacy {
     max-width: 620px;
     margin: 34px auto 0;
     color: rgba(255, 255, 255, 0.55);
     font-weight: 400;
     font-size: 0.86rem;
}

.privacy b {
     color: rgba(255, 255, 255, 0.78);
}

.footer {
     background: #060607;
     border-top: 1px solid var(--line);
     padding-block: 56px;
}

.footer-top {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding-bottom: 28px;
     border-bottom: 1px solid var(--line);
}

.footer-brand {
     display: flex;
     align-items: center;
     gap: 14px;
}

.footer-brand img {
     height: 48px;
}

.footer-brand .tagline {
     /*font-family: var(--font-mono);*/
     font-size: 0.74rem;
     letter-spacing: 0.1em;
     color: var(--muted-2);
     padding-left: 14px;
     border-left: 1px solid var(--line);
}

.footer-links {
     display: flex;
     flex-wrap: wrap;
     gap: 8px 20px;
}

.footer-links a {
     color: var(--muted);
     font-size: 0.92rem;
     transition: color 0.16s var(--ease);
}

.footer-links a:hover {
     color: var(--text);
}

.footer-bottom {
     padding-top: 24px;
     font-size: 0.84rem;
     color: var(--muted-2);
}

[data-reveal] {
     opacity: 0;
     transform: translateY(26px);
     transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
     will-change: opacity, transform;
}

[data-reveal].in {
     opacity: 1;
     transform: none;
}

@media (prefers-reduced-motion: no-preference) {
     .scope-sweep {
          animation: sweep 6s linear infinite;
     }
     .ping::after {
          animation: pingpulse 2.6s var(--ease) infinite;
     }
     .ping.p2::after { animation-delay: 0.9s; }
     .ping.p3::after { animation-delay: 1.7s; }
}

@keyframes sweep {
     to { transform: rotate(360deg); }
}

@keyframes pingpulse {
     0% { transform: scale(0.6); opacity: 0.9; }
     70% { transform: scale(2.6); opacity: 0; }
     100% { transform: scale(2.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
     html { scroll-behavior: auto; }
     [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1080px) {
     .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
     .nav-menu, .nav-cta .btn-text-hide { display: none; }
     .nav-toggle { display: inline-flex; }
     #nav.menu-open {
          background: rgba(10, 10, 11, 0.98);
          border-bottom-color: var(--line);
     }
     .nav-mobile {
          position: fixed;
          inset: var(--nav-h) 0 auto 0;
          background: rgba(8, 8, 9, 0.99);
          -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
          border-bottom: 1px solid var(--line);
          padding: 14px 24px 26px;
          display: none;
          max-height: calc(100dvh - var(--nav-h));
          overflow-y: auto;
     }
     .nav-mobile.show { display: block; }
     .nav-mobile .m-group { border-bottom: 1px solid var(--line); padding: 6px 0; }
     .nav-mobile .m-label {
          font-family: var(--font-mono);
          font-size: 0.72rem;
          letter-spacing: 0.16em;
          text-transform: uppercase;
          color: var(--muted-2);
          padding: 12px 4px 6px;
     }
     .nav-mobile a {
          display: block;
          padding: 11px 4px;
          color: var(--muted);
          font-size: 1rem;
     }
     .nav-mobile a:hover { color: var(--text); }
     .nav-mobile .btn { margin-top: 18px; }
     .hero-grid { grid-template-columns: 1fr; }
     .hero-copy { text-align: center; order: -1; }
     .hero-copy .eyebrow, .hero-actions, .hero-micro, .chips { justify-content: center; }
     .hero-sub { margin-inline: auto; }
     .hero::before {
          background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 16%, rgba(0, 0, 0, 0.28) 42%, transparent 68%);
     }
     .scope { max-width: 380px; }
     .cred-grid, .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
     .pillars, .steps, .feature-grid, .cmp-points, .roi-grid, .includes { grid-template-columns: 1fr; }
     .features-head { display: block; }
     .features-head .lead { margin-top: 16px; }
     .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
     .stat:last-child { grid-column: 1 / -1; }
     .cmp-table-wrap { overflow-x: auto; }
     .cmp-table { min-width: 540px; }
     .price .amt { font-size: clamp(3rem, 16vw, 4rem); }
}

@media (max-width: 460px) {
     .wrap, .nav-inner { padding-inline: 18px; }
     .plan-head, .plan-body { padding-inline: 22px; }
     .form-card { padding: 22px; }
}

.skip-link {
     position: absolute;
     left: 14px;
     top: -64px;
     z-index: 200;
     padding: 11px 16px;
     border-radius: var(--r-sm);
     background: var(--red);
     color: #fff;
     font-family: var(--font-mono);
     font-size: 0.82rem;
     letter-spacing: 0.04em;
     transition: top 0.2s var(--ease);
}

.skip-link:focus {
     top: 14px;
}

.visually-hidden {
     position: absolute;
     width: 1px;
     height: 1px;
     margin: -1px;
     padding: 0;
     border: 0;
     clip: rect(0 0 0 0);
     clip-path: inset(50%);
     overflow: hidden;
     white-space: nowrap;
}

.scope .pv-glyph {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 42%;
     height: 42%;
     transform: translate(-50%, -50%);
     color: var(--red-bright);
     filter: drop-shadow(0 0 18px var(--red-glow));
}

.platform-points {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: clamp(16px, 1.6vw, 22px);
     margin-top: clamp(34px, 4vw, 52px);
}

.point {
     position: relative;
     padding: clamp(22px, 2.2vw, 30px);
     border: 1px solid var(--line);
     border-radius: 3px;
     background:
          radial-gradient(120% 140% at 0% 0%, rgba(227, 34, 39, 0.05), transparent 55%),
          rgba(255, 255, 255, 0.02);
}

.point h3 {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin: 0 0 10px;
     font-size: 1.12rem;
     font-weight: 600;
     line-height: 1.3;
     color: var(--text);
}

.point h3 .reticle {
     flex: none;
     width: 18px;
     height: 18px;
     margin-top: 2px;
     color: var(--red-bright);
}

.point p {
     margin: 0;
     color: var(--muted);
     font-size: 0.97rem;
     line-height: 1.62;
}

.page-cta {
     position: relative;
     overflow: hidden;
     text-align: center;
     border-block: 1px solid var(--line);
     background:
          radial-gradient(90% 120% at 50% 0%, rgba(227, 34, 39, 0.5), transparent 55%),
          linear-gradient(180deg, rgba(26, 6, 8, 0.74), rgba(6, 6, 7, 0.82) 70%);
}

.page-cta-inner {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: clamp(18px, 2vw, 26px);
}

.page-cta .lead {
     max-width: 52ch;
     margin-inline: auto;
}

.page-narrow {
     max-width: 720px;
     margin-inline: auto;
     text-align: center;
}

.page-narrow .lead {
     margin-inline: auto;
}

.page-narrow .eyebrow {
     justify-content: center;
}

.page-narrow .hero-actions {
     justify-content: center;
}

@media (max-width: 760px) {
     .platform-points { grid-template-columns: 1fr; }
}