:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --panel: rgba(18, 18, 18, 0.9);
  --panel-solid: #121212;
  --panel-raised: #1a1a1a;
  --stroke: #333333;
  --stroke-bright: #555555;
  --text: #f7f7f7;
  --muted: #999999;
  --muted-bright: #c7c7c7;
  --purple: #d00000;
  --purple-bright: #ff3030;
  --green: #ff3030;
  --cyan: #ff4a4a;
  --amber: #ff6868;
  --max-width: 1160px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.ambient,
.grid-overlay {
  position: fixed;
  z-index: -2;
  pointer-events: none;
}

.ambient {
  border-radius: 50%;
  filter: blur(8px);
}

.ambient-one {
  top: -330px;
  left: -260px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.2), transparent 68%);
}

.ambient-two {
  right: -260px;
  top: 420px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(120, 0, 0, 0.18), transparent 70%);
}

.grid-overlay {
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(80, 80, 80, 0.45);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 48, 48, 0.68);
  border-radius: 13px;
  background: #050505;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 10px 24px rgba(210, 0, 0, 0.25);
  color: #ff1717;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.055em;
}

.brand-copy em {
  color: var(--purple-bright);
  font-style: normal;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: var(--muted-bright);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

.nav > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
.checksum-heading button:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 3px;
}

.button-primary {
  border-color: #ff4d4d;
  background: linear-gradient(135deg, #b00000, #ff2020);
  box-shadow: 0 14px 34px rgba(210, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.16);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 20, 20, 0.4), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-ghost {
  border-color: var(--stroke);
  background: rgba(24, 24, 24, 0.78);
  color: var(--text);
}

.button-ghost:hover {
  border-color: var(--stroke-bright);
  background: #242424;
}

.button-small {
  min-height: 39px;
  border-radius: 11px;
  padding-inline: 17px;
  font-size: 12px;
}

.download-icon {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 690px;
  gap: 66px;
  padding-block: 72px 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(100deg, #ff5a5a, #d00000 70%);
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: #b5b5b5;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  color: #d0d0d0;
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.text-link:hover {
  color: white;
}

.text-link span {
  margin-left: 5px;
  color: var(--purple-bright);
}

.release-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: #888888;
  font-size: 11px;
}

.release-line strong {
  color: #d4d4d4;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 14px rgba(255, 30, 30, 0.65);
}

.release-divider {
  width: 1px;
  height: 11px;
  background: #444444;
}

.launcher-stage {
  position: relative;
  perspective: 1200px;
}

.window-glow {
  position: absolute;
  inset: 11% 8% -4%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.24), transparent 69%);
  filter: blur(28px);
}

.launcher-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #3b3b3b;
  border-radius: 20px;
  background: linear-gradient(145deg, #151515, #080808 55%, #170000);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.035);
  transform: rotateY(-4deg) rotateX(1.5deg);
}

.launcher-card::before {
  position: absolute;
  inset: -220px auto auto -210px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 0, 0, 0.19), transparent 70%);
  content: "";
}

.launcher-card-screenshot {
  margin: 0;
  line-height: 0;
}

.launcher-card-screenshot::before {
  content: none;
}

.launcher-preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.window-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  border-bottom: 1px solid #2d2d2d;
  padding: 0 18px;
  background: rgba(14, 14, 14, 0.78);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.window-brand b {
  color: #ff4a4a;
}

.mini-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid #ff3030;
  background: #050505;
  color: #ff2020;
  font-size: 13px;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #444444;
}

.window-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  padding: 28px;
}

.window-hero > span {
  color: #ff4040;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.window-hero h2 {
  margin: 10px 0 9px;
  color: white;
  font-size: 26px;
  line-height: 1.04;
}

.window-hero > p {
  margin: 0;
  color: #999999;
  font-size: 8px;
}

.mini-features {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-features li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-features li > b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 48, 48, 0.4);
  border-radius: 7px;
  background: rgba(190, 0, 0, 0.16);
  color: #ff5a5a;
  font-size: 7px;
}

.mini-features li span {
  display: flex;
  flex-direction: column;
}

.mini-features strong {
  font-size: 8px;
}

.mini-features small {
  margin-top: 2px;
  color: #808080;
  font-size: 6px;
}

.play-panel {
  align-self: center;
  border: 1px solid #383838;
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.95);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  padding: 15px;
}

.panel-heading,
.account-row,
.memory-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-heading > span,
.account-row > span,
.memory-row > span {
  display: flex;
  flex-direction: column;
}

.panel-heading strong {
  font-size: 10px;
}

.panel-heading small,
.memory-row small {
  margin-top: 2px;
  color: #888888;
  font-size: 6px;
}

.panel-heading em {
  border: 1px solid rgba(255, 48, 48, 0.38);
  border-radius: 6px;
  background: rgba(190, 0, 0, 0.18);
  color: #ff5a5a;
  padding: 4px 6px;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.account-row {
  justify-content: flex-start;
  gap: 9px;
  margin: 14px 0 12px;
  border: 1px solid #363636;
  border-radius: 9px;
  background: #191919;
  padding: 8px;
}

.account-mark {
  display: grid !important;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #292929;
  color: #ff4040;
  font-size: 9px;
  font-weight: 800;
}

.account-row small {
  color: #808080;
  font-size: 5px;
}

.account-row strong {
  margin-top: 2px;
  font-size: 7px;
}

.memory-row {
  margin-bottom: 12px;
}

.memory-row strong {
  font-size: 7px;
}

.memory-row b {
  border-radius: 6px;
  background: #f2f3f7;
  color: #171a24;
  padding: 5px 10px;
  font-size: 7px;
}

.ready-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  border: 1px solid #363636;
  border-radius: 8px;
  background: #191919;
  color: #e5e5e5;
  padding: 7px 8px;
  font-size: 7px;
}

.mock-play {
  border: 1px solid #ff4d4d;
  border-radius: 8px;
  background: linear-gradient(135deg, #b00000, #ff2020);
  box-shadow: 0 10px 18px rgba(210, 0, 0, 0.24);
  padding: 8px;
  text-align: center;
  font-size: 7px;
  font-weight: 900;
}

.mock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}

.mock-actions span {
  border: 1px solid #383838;
  border-radius: 7px;
  background: #1a1a1a;
  padding: 6px;
  text-align: center;
  font-size: 5px;
  font-weight: 700;
}

.trust-strip {
  border-block: 1px solid rgba(60, 60, 60, 0.72);
  background: rgba(12, 12, 12, 0.78);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 21px;
}

.trust-strip-inner > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.strip-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 48, 48, 0.36);
  border-radius: 9px;
  background: rgba(190, 0, 0, 0.14);
  color: #ff4a4a;
  font-size: 12px;
}

.trust-strip-inner div > span:last-child {
  display: flex;
  flex-direction: column;
}

.trust-strip-inner strong {
  font-size: 11px;
}

.trust-strip-inner small {
  margin-top: 2px;
  color: #858585;
  font-size: 9px;
}

.section {
  padding-block: 120px;
}

.section-heading {
  max-width: 640px;
}

.section-heading h2,
.security-copy h2,
.final-cta h2 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.3vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p,
.security-copy p,
.final-cta p {
  margin: 0;
  color: #a6a6a6;
  font-size: 15px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feature-card {
  min-height: 220px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.92), rgba(12, 12, 12, 0.9));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #5a3030;
  background: linear-gradient(145deg, rgba(31, 20, 20, 0.96), rgba(17, 17, 17, 0.94));
}

.feature-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) minmax(270px, 0.8fr);
  align-items: center;
  min-height: 190px;
  gap: 22px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 900;
}

.feature-wide .feature-icon {
  margin: 0;
}

.feature-icon.purple {
  border-color: rgba(255, 48, 48, 0.45);
  background: rgba(200, 0, 0, 0.16);
  color: #ff5a5a;
}

.feature-icon.green {
  border-color: rgba(255, 48, 48, 0.4);
  background: rgba(200, 0, 0, 0.13);
  color: #ff5a5a;
}

.feature-icon.blue {
  border-color: rgba(255, 48, 48, 0.4);
  background: rgba(200, 0, 0, 0.13);
  color: #ff5a5a;
}

.feature-icon.amber {
  border-color: rgba(255, 48, 48, 0.4);
  background: rgba(200, 0, 0, 0.13);
  color: #ff5a5a;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: #999999;
  font-size: 13px;
  line-height: 1.65;
}

.profile-visual {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border: 1px solid #383838;
  border-radius: 13px;
  background: #121212;
  padding: 14px;
}

.profile-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.62);
}

.profile-visual > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.profile-visual small {
  color: #787878;
  font-size: 7px;
  font-weight: 700;
}

.profile-visual strong {
  margin-top: 3px;
  font-size: 10px;
}

.profile-visual em {
  color: #ff5a5a;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.install-section {
  border-block: 1px solid rgba(60, 60, 60, 0.7);
  background:
    radial-gradient(circle at 15% 30%, rgba(210, 0, 0, 0.14), transparent 34%),
    rgba(12, 12, 12, 0.78);
}

.install-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.install-layout .button {
  margin-top: 28px;
}

.steps {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: 38px;
  bottom: 38px;
  left: 29px;
  width: 1px;
  background: linear-gradient(var(--purple), rgba(208, 0, 0, 0.06));
  content: "";
}

.steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--stroke);
  border-radius: 17px;
  background: rgba(18, 18, 18, 0.94);
  padding: 18px;
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 48, 48, 0.42);
  border-radius: 13px;
  background: #210b0b;
  color: #ff5a5a;
  font-size: 10px;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 3px;
  font-size: 14px;
}

.steps p {
  margin: 0;
  color: #979797;
  font-size: 11px;
  line-height: 1.55;
}

.security-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid #3d3d3d;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(210, 0, 0, 0.17), transparent 34%),
    linear-gradient(145deg, #1b1b1b, #0d0d0d);
  box-shadow: var(--shadow);
  padding: 48px;
}

.security-copy h2 {
  font-size: clamp(30px, 3.5vw, 44px);
}

.checksum-panel {
  min-width: 0;
  border: 1px solid #3d3d3d;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.86);
  padding: 18px;
}

.checksum-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #7f7f7f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.checksum-heading button {
  border: 1px solid #494949;
  border-radius: 8px;
  background: #202020;
  color: #e1e1e1;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
}

.checksum-heading button:hover {
  border-color: #6a4040;
  background: #2a1d1d;
}

.checksum-panel code {
  display: block;
  overflow-wrap: anywhere;
  color: #ff7777;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  line-height: 1.7;
}

.checksum-panel > small {
  display: block;
  margin-top: 13px;
  color: #797979;
  font-size: 9px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 42px 120px;
}

.final-cta h2 {
  margin-bottom: 7px;
  font-size: clamp(30px, 4vw, 46px);
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  border-top: 1px solid rgba(60, 60, 60, 0.66);
  background: #050505;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  gap: 24px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  font-size: 20px;
}

.footer-inner p {
  margin: 0;
  color: #707070;
  font-size: 9px;
}

.footer-inner p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 86px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .launcher-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .launcher-card {
    transform: none;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .install-layout,
  .security-card {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-hero {
    display: none;
  }

  .launcher-card {
    max-width: 390px;
    margin-inline: auto;
  }

  .trust-strip-inner,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-wide .feature-icon {
    margin-bottom: 2px;
  }

  .section {
    padding-block: 88px;
  }

  .security-card {
    padding: 28px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 88px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 30px;
    text-align: center;
  }

  .footer-brand,
  .footer-inner p:last-child {
    justify-self: center;
  }
}

@media (max-width: 460px) {
  .nav > .button {
    min-height: 36px;
    padding-inline: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .button-primary {
    width: 100%;
  }

  .release-line {
    gap: 8px;
  }

  .trust-strip-inner {
    gap: 18px;
  }

  .security-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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