:root {
  --page-bg: #0a0711;
  --page-bg-soft: #100a1b;
  --surface: rgba(24, 16, 38, 0.78);
  --surface-solid: #171020;
  --surface-raised: #21152f;
  --text: #f8f5fc;
  --text-soft: #c2b8ce;
  --text-muted: #8f849c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(187, 134, 252, 0.34);
  --primary: #a855f7;
  --primary-bright: #c084fc;
  --primary-dark: #7e22ce;
  --secondary: #39d98a;
  --danger: #fb7185;
  --header-bg: rgba(10, 7, 17, 0.78);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --container: 1200px;
}

html[data-theme="light"] {
  --page-bg: #f7f4fb;
  --page-bg-soft: #eee8f5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-raised: #f3edf8;
  --text: #1d1428;
  --text-soft: #4d4259;
  --text-muted: #74697f;
  --line: rgba(58, 35, 77, 0.12);
  --line-strong: rgba(126, 34, 206, 0.28);
  --primary: #8d32df;
  --primary-bright: #9f46e8;
  --primary-dark: #6b1eb3;
  --secondary: #168d59;
  --header-bg: rgba(247, 244, 251, 0.82);
  --shadow: 0 28px 80px rgba(67, 37, 90, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.25s ease, color 0.25s ease;
}

button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
p { color: var(--text-soft); }

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--surface-solid);
  color: var(--text);
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: none; }

.site-atmosphere { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.atmosphere-orb { position: absolute; border-radius: 999px; filter: blur(90px); opacity: 0.44; }
.atmosphere-orb-one { width: 520px; height: 520px; top: -260px; left: -130px; background: rgba(147, 51, 234, 0.55); }
.atmosphere-orb-two { width: 470px; height: 470px; top: 370px; right: -260px; background: rgba(79, 70, 229, 0.24); }
.atmosphere-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
}

.site-container { width: calc(100% - 48px); max-width: var(--container); margin-right: auto; margin-left: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: var(--header-bg); box-shadow: 0 12px 35px rgba(0,0,0,.12); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--primary-bright), var(--primary-dark));
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(147, 51, 234, .28);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { letter-spacing: .14em; font-size: 15px; }
.brand-copy small { margin-top: 4px; color: var(--text-muted); font-size: 9px; letter-spacing: .035em; }
.desktop-navigation { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-navigation a { position: relative; color: var(--text-soft); font-size: 13px; font-weight: 650; }
.desktop-navigation a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; transform: scaleX(0); border-radius: 999px; background: var(--primary); transition: transform .2s ease; }
.desktop-navigation a:hover, .desktop-navigation a:focus-visible { color: var(--text); }
.desktop-navigation a:hover::after, .desktop-navigation a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid rgba(168, 85, 247, .42); outline-offset: 3px; }
.button-primary { background: linear-gradient(115deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 14px 28px rgba(126, 34, 206, .22); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(126, 34, 206, .34); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-secondary:hover { border-color: var(--line-strong); background: var(--surface-raised); }
.button-large { min-height: 52px; padding-inline: 24px; border-radius: 14px; }

.theme-toggle {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 11px;
  cursor: pointer;
}
.theme-toggle-track { width: 28px; height: 16px; padding: 2px; display: flex; align-items: center; border-radius: 999px; background: var(--surface-raised); }
.theme-toggle-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--primary-bright); transition: transform .2s ease; }
html[data-theme="light"] .theme-toggle-dot { transform: translateX(12px); }
.mobile-menu-button { width: 42px; height: 42px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); cursor: pointer; }
.mobile-menu-button span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 3px 0; border-radius: 99px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-navigation { padding: 10px 24px 24px; border-top: 1px solid var(--line); background: var(--header-bg); backdrop-filter: blur(18px); }
.mobile-navigation a:not(.button) { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text-soft); }
.mobile-navigation .button { width: 100%; margin-top: 16px; }

.hero-section { position: relative; padding: 108px 0 86px; }
.hero-layout { display: grid; grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr); align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--primary-bright); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 5px rgba(57, 217, 138, .13); }
.hero-copy h1 { max-width: 720px; margin: 24px 0 22px; font-size: clamp(43px, 5.2vw, 72px); font-weight: 780; }
.hero-copy h1 span { color: transparent; background: linear-gradient(105deg, var(--primary-bright), #e9d5ff 55%, var(--secondary)); background-clip: text; -webkit-background-clip: text; }
html[data-theme="light"] .hero-copy h1 span { background: linear-gradient(105deg, var(--primary-dark), var(--primary) 55%, var(--secondary)); background-clip: text; -webkit-background-clip: text; }
.hero-description { max-width: 650px; margin-bottom: 0; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 35px; }
.hero-assurances span { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 11px; font-weight: 650; }
.hero-assurances i { width: 24px; height: 24px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: var(--primary-bright); font-size: 8px; font-style: normal; }

.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 12% 5%; z-index: -1; border-radius: 40%; background: rgba(168, 85, 247, .18); filter: blur(55px); }
.visual-frame { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 25px; background: var(--surface-solid); box-shadow: var(--shadow); }
.visual-topbar { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 19px; border-bottom: 1px solid var(--line); }
.visual-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.mini-mark { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(145deg, var(--primary-bright), var(--primary-dark)); color: #fff; font-weight: 800; }
.live-status { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 10px; }
.live-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 5px rgba(57, 217, 138, .12); }
.flow-map { position: relative; min-height: 435px; overflow: hidden; }
.flow-map::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: radial-gradient(circle, var(--line-strong) 1px, transparent 1.2px); background-size: 24px 24px; }
.flow-core { position: absolute; top: 50%; left: 50%; z-index: 5; width: 104px; height: 104px; transform: translate(-50%, -50%); display: grid; place-content: center; text-align: center; border: 1px solid var(--line-strong); border-radius: 31px; background: linear-gradient(145deg, var(--surface-raised), var(--surface-solid)); box-shadow: 0 0 0 13px rgba(168, 85, 247, .07), 0 20px 50px rgba(0,0,0,.3); }
.flow-core span { font-size: 34px; font-weight: 800; color: var(--primary-bright); }
.flow-core small { margin-top: -6px; color: var(--text-muted); font-size: 8px; letter-spacing: .14em; }
.flow-card { position: absolute; z-index: 4; width: 190px; display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-solid); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.flow-card-scan { top: 48px; left: 28px; }
.flow-card-search { top: 55px; right: 24px; }
.flow-card-work { bottom: 51px; left: 39px; }
.flow-card-delivery { right: 32px; bottom: 43px; }
.flow-index { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(168, 85, 247, .15); color: var(--primary-bright); font-size: 9px; font-weight: 800; }
.flow-card small, .flow-card strong, .flow-card p { display: block; }
.flow-card small { color: var(--text-muted); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.flow-card strong { margin-top: 2px; font-size: 11px; }
.flow-card p { margin: 3px 0 0; color: var(--text-muted); font-size: 9px; line-height: 1.35; }
.flow-line { position: absolute; z-index: 2; height: 1px; transform-origin: left; background: linear-gradient(90deg, transparent, var(--primary-bright), transparent); opacity: .55; }
.flow-line-one { top: 126px; left: 177px; width: 225px; transform: rotate(26deg); }
.flow-line-two { top: 220px; left: 147px; width: 298px; transform: rotate(-1deg); }
.flow-line-three { right: 154px; bottom: 109px; width: 230px; transform: rotate(-25deg); }
.visual-footer { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.visual-footer span { padding: 14px 15px; color: var(--text-muted); font-size: 8px; }
.visual-footer span + span { border-left: 1px solid var(--line); }
.visual-footer b { display: block; margin-bottom: 3px; color: var(--text); font-size: 9px; }

.section { padding: 92px 0; }
.section-intro { border-top: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 110px; align-items: end; }
.section-heading h2 { max-width: 770px; margin: 18px 0 0; font-size: clamp(34px, 4vw, 52px); }
.intro-copy p { margin: 0; font-size: 17px; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--primary-bright); font-size: 13px; font-weight: 750; }

.capabilities-section { padding-top: 20px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-card { min-height: 270px; padding: 34px 26px; }
.capability-card + .capability-card { border-left: 1px solid var(--line); }
.capability-number { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-bright); font-size: 10px; font-weight: 800; }
.capability-number::after { content: ""; width: 38px; height: 1px; background: var(--line-strong); }
.capability-card h3 { margin: 62px 0 13px; font-size: 20px; }
.capability-card p { margin: 0; font-size: 13px; line-height: 1.7; }

.modules-section { background: linear-gradient(180deg, transparent, rgba(168, 85, 247, .05), transparent); }
.section-heading-centered { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading-centered h2 { margin-inline: auto; }
.section-heading-centered p { max-width: 620px; margin: 16px auto 0; font-size: 15px; }
.module-stage { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--surface-solid); box-shadow: var(--shadow); }
.module-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.module-item { min-height: 86px; display: flex; align-items: center; gap: 13px; padding: 17px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; }
.module-item:nth-child(4n) { border-right: 0; }
.module-item:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
.module-item-active { background: rgba(168, 85, 247, .09); box-shadow: inset 0 3px var(--primary); }
.module-item > span { color: var(--primary-bright); font-size: 9px; font-weight: 800; }
.module-item small, .module-item strong { display: block; }
.module-item small { color: var(--text-muted); font-size: 8px; }
.module-item strong { margin-top: 2px; font-size: 11px; }
.module-focus { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; min-height: 420px; padding: 54px; }
.focus-tag { display: inline-block; padding: 6px 9px; border-radius: 8px; background: rgba(168, 85, 247, .13); color: var(--primary-bright); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.focus-copy h3 { max-width: 560px; margin: 18px 0 15px; font-size: 34px; }
.focus-copy p { margin-bottom: 20px; }
.focus-copy ul { margin: 0; padding: 0; list-style: none; }
.focus-copy li { position: relative; padding: 7px 0 7px 24px; color: var(--text-soft); font-size: 13px; }
.focus-copy li::before { content: ""; position: absolute; top: 15px; left: 1px; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(57, 217, 138, .12); }
.focus-result { padding: 25px; border: 1px solid var(--line-strong); border-left: 4px solid var(--secondary); border-radius: 19px; background: var(--surface-raised); }
.result-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; color: var(--text-muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.result-heading b { padding: 6px 8px; border-radius: 99px; background: rgba(57, 217, 138, .12); color: var(--secondary); font-size: 8px; }
.focus-result > strong { display: block; font-size: 25px; }
.focus-result > p { margin: 3px 0 20px; font-size: 11px; }
.result-location { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--page-bg-soft); }
.result-location small, .result-location span { display: block; }
.result-location small { color: var(--text-muted); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.result-location span { margin-top: 5px; font-size: 12px; font-weight: 700; }
.result-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.result-meta span { padding: 10px; border-radius: 10px; background: var(--page-bg-soft); }
.result-meta small, .result-meta b { display: block; }
.result-meta small { color: var(--text-muted); font-size: 7px; text-transform: uppercase; letter-spacing: .06em; }
.result-meta b { margin-top: 4px; font-size: 10px; }

.security-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(168, 85, 247, .04); }
.security-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }
.security-copy h2 { margin: 18px 0; font-size: clamp(34px, 4vw, 51px); }
.security-copy p { max-width: 570px; margin-bottom: 27px; font-size: 15px; line-height: 1.8; }
.security-list { display: grid; grid-template-columns: repeat(2, 1fr); }
.security-list article { min-height: 180px; display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 25px; border: 1px solid var(--line); }
.security-list article:nth-child(even) { border-left: 0; }
.security-list article:nth-child(n+3) { border-top: 0; }
.security-list article > span { color: var(--primary-bright); font-size: 9px; font-weight: 800; }
.security-list h3 { margin: 0 0 10px; font-size: 17px; }
.security-list p { margin: 0; font-size: 12px; line-height: 1.65; }

.final-cta-section { padding-bottom: 110px; }
.final-cta { position: relative; overflow: hidden; min-height: 250px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px 54px; border: 1px solid var(--line-strong); border-radius: 25px; background: linear-gradient(120deg, var(--surface-raised), var(--surface-solid)); box-shadow: var(--shadow); }
.final-cta::after { content: "T"; position: absolute; right: 170px; color: rgba(168, 85, 247, .07); font-size: 230px; font-weight: 900; line-height: 1; transform: rotate(8deg); pointer-events: none; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { margin: 15px 0 10px; font-size: clamp(32px, 4vw, 48px); }
.final-cta p { margin-bottom: 0; }
.final-cta .button { flex: 0 0 auto; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 128px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-inner p, .footer-inner > span { margin: 0; color: var(--text-muted); font-size: 10px; }
.footer-inner > span { justify-self: end; }

.reveal-item { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-navigation { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: 100%; max-width: 720px; margin-right: auto; margin-left: auto; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .capability-card:nth-child(4) { border-top: 1px solid var(--line); }
  .module-focus { gap: 40px; padding: 42px; }
  .security-layout { gap: 50px; }
}

@media (max-width: 820px) {
  .site-container { width: calc(100% - 32px); max-width: var(--container); }
  .desktop-navigation, .header-panel-button, .theme-toggle > span:last-child { display: none; }
  .mobile-menu-button { display: block; }
  .header-inner { min-height: 72px; }
  .theme-toggle { width: 42px; height: 42px; justify-content: center; padding: 0; }
  .hero-section { padding: 76px 0 70px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .module-rail { grid-template-columns: repeat(2, 1fr); }
  .module-item:nth-child(2n) { border-right: 0; }
  .module-item:nth-child(3), .module-item:nth-child(4), .module-item:nth-child(5), .module-item:nth-child(6) { border-bottom: 1px solid var(--line); }
  .module-focus { grid-template-columns: 1fr; }
  .security-layout { grid-template-columns: 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .final-cta::after { right: 10px; bottom: -20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 15px; padding: 32px 0; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-inner > span { justify-self: center; }
}

@media (max-width: 620px) {
  .brand-copy small { display: none; }
  .hero-copy h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-description { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { display: grid; grid-template-columns: 1fr; }
  .visual-frame { border-radius: 19px; }
  .flow-map { min-height: 500px; }
  .flow-core { width: 88px; height: 88px; }
  .flow-card { width: calc(50% - 22px); min-width: 0; grid-template-columns: 1fr; }
  .flow-card-scan { top: 34px; left: 14px; }
  .flow-card-search { top: 34px; right: 14px; }
  .flow-card-work { bottom: 36px; left: 14px; }
  .flow-card-delivery { right: 14px; bottom: 36px; }
  .flow-card p { display: none; }
  .flow-line { display: none; }
  .visual-footer { grid-template-columns: 1fr; }
  .visual-footer span + span { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 72px 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 220px; }
  .capability-card + .capability-card { border-top: 1px solid var(--line); border-left: 0; }
  .capability-card h3 { margin-top: 40px; }
  .module-stage { border-radius: 18px; }
  .module-item { min-height: 78px; padding: 13px; }
  .module-focus { padding: 28px 20px; }
  .focus-copy h3 { font-size: 29px; }
  .result-meta { grid-template-columns: 1fr; }
  .security-list { grid-template-columns: 1fr; }
  .security-list article:nth-child(even) { border-left: 1px solid var(--line); }
  .security-list article:nth-child(n+2) { border-top: 0; }
  .final-cta { padding: 36px 26px; }
  .final-cta .button { width: 100%; }
}

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