:root {
  --black: #07090b;
  --black-soft: #0c0f12;
  --panel: #11151a;
  --panel-light: #171c22;
  --paper: #f2f0ea;
  --paper-deep: #e7e4dc;
  --white: #ffffff;
  --ink: #15181c;
  --muted: #9aa2ad;
  --muted-dark: #626871;
  --red: #ff3b45;
  --red-deep: #d51f2c;
  --red-soft: rgba(255, 59, 69, 0.12);
  --green: #8dff9a;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(13, 16, 20, 0.13);
  --radius: 20px;
  --radius-small: 12px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --container: min(1160px, calc(100vw - 40px));
  --heading: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed",
    sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

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

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

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

.site-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  height: 88px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 59, 69, 0.4);
  border-radius: 50%;
  background: rgba(255, 59, 69, 0.08);
  box-shadow: inset 0 0 22px rgba(255, 59, 69, 0.1);
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
}

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

.brand-copy strong {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-stretch: condensed;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  gap: 30px;
  color: #b8bec5;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topnav a {
  transition: color 180ms ease;
}

.topnav a:hover {
  color: var(--white);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #d7dbe0;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 59, 69, 0.5);
  background: rgba(255, 59, 69, 0.1);
  color: var(--white);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.social-icon:first-child svg {
  stroke: none;
}

.social-icon:last-child svg {
  fill: none;
}

.social-icon:last-child svg path {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.social-icon:focus-visible,
.access-card:focus-visible,
.text-link:focus-visible,
.mobile-cta:focus-visible,
.topnav a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(255, 59, 69, 0.55);
  outline-offset: 4px;
}

.button--compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.7rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
}

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(255, 59, 69, 0.18);
}

.button--primary:hover {
  background: #ff5059;
  box-shadow: 0 17px 40px rgba(255, 59, 69, 0.25);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.075);
}

.button--outline {
  border-color: var(--line-dark);
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 73% 43%, rgba(255, 59, 69, 0.07), transparent 31%),
    linear-gradient(180deg, #080a0d, #090b0e 70%, #0b0d10);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 54%,
    rgba(255, 59, 69, 0.025) 54.1%,
    transparent 54.3%
  );
  content: "";
  pointer-events: none;
}

.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow--one {
  right: 4%;
  top: 20%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 59, 69, 0.06);
  box-shadow:
    inset 0 0 90px rgba(255, 59, 69, 0.025),
    0 0 90px rgba(255, 59, 69, 0.02);
}

.hero-glow--two {
  right: 16%;
  top: 35%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.035);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.82fr);
  gap: 80px;
  align-items: center;
}

.hero-copy {
  padding-top: 8px;
}

.eyebrow,
.section-label,
.panel-kicker {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7cbd0;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(141, 255, 154, 0.65);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(141, 255, 154, 0.4);
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s infinite;
}

.eyebrow-separator {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.hero h1 {
  max-width: 780px;
  margin: 25px 0 24px;
  font-family: var(--heading);
  font-size: clamp(3.8rem, 6.4vw, 6.6rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: #adb4bc;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  color: #bfc4ca;
  font-size: 0.78rem;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks svg {
  width: 15px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.command-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 35%),
    rgba(14, 17, 21, 0.94);
  box-shadow:
    var(--shadow),
    inset 0 1px rgba(255, 255, 255, 0.04);
}

.command-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 45%, rgba(255, 59, 69, 0.04), transparent 60%);
  content: "";
  pointer-events: none;
}

.panel-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.panel-topline > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.panel-topline strong {
  font-family: var(--heading);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.panel-kicker {
  font-size: 0.58rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(141, 255, 154, 0.2);
  border-radius: 100px;
  background: rgba(141, 255, 154, 0.06);
  color: #bdf7c4;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(141, 255, 154, 0.7);
}

.radar {
  position: relative;
  display: grid;
  overflow: hidden;
  width: min(330px, 80%);
  aspect-ratio: 1;
  margin: 27px auto 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 59, 69, 0.08), transparent 54%),
    #0b0e11;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(255, 59, 69, 0.035);
}

.radar-rings {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.radar-rings::before,
.radar-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: inherit;
  content: "";
}

.radar-rings::before {
  inset: 18%;
}

.radar-rings::after {
  inset: 37%;
}

.radar-axis {
  position: absolute;
  background: rgba(255, 255, 255, 0.055);
}

.radar-axis--x {
  width: 100%;
  height: 1px;
}

.radar-axis--y {
  width: 1px;
  height: 100%;
}

.radar-sweep {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 0;
  transform-origin: 0 100%;
  background: conic-gradient(from 180deg at 0 100%, rgba(255, 59, 69, 0.34), transparent 31%);
  animation: sweep 5.5s linear infinite;
}

.radar-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #ffafb3;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 15px var(--red);
}

.radar-point::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 59, 69, 0.35);
  border-radius: 50%;
  content: "";
}

.radar-point--one {
  left: 28%;
  top: 39%;
}

.radar-point--two {
  right: 22%;
  top: 31%;
}

.radar-point--three {
  right: 34%;
  bottom: 21%;
}

.radar-center {
  position: relative;
  z-index: 3;
  display: flex;
  width: 75px;
  height: 75px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 59, 69, 0.4);
  border-radius: 50%;
  background: rgba(10, 12, 15, 0.92);
  box-shadow: 0 0 35px rgba(255, 59, 69, 0.15);
}

.radar-center span {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.radar-center small {
  color: var(--red);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.signal-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.signal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.signal-icon--red {
  border-color: rgba(255, 59, 69, 0.25);
  background: rgba(255, 59, 69, 0.08);
}

.signal-icon svg {
  width: 17px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.signal-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.signal-row small {
  color: #6f7781;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-row strong {
  font-size: 0.75rem;
  font-weight: 650;
}

.signal-row em {
  color: #bdc2c8;
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: #545b64;
  font-family: monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0d10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 100px;
  padding: 22px 34px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid span {
  color: var(--red);
  font-family: monospace;
  font-size: 0.65rem;
}

.trust-grid p {
  margin: 0;
  color: #9299a2;
  font-size: 0.8rem;
  line-height: 1.55;
}

.trust-grid strong {
  display: block;
  color: #e8e9ea;
  font-weight: 700;
}

.section {
  padding: 120px 0;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--dark {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 70%, rgba(255, 59, 69, 0.08), transparent 27%),
    var(--black-soft);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.premium-copy h2,
.benefits-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 18px 0 0;
  font-family: var(--heading);
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.75;
}

.section-heading--on-dark > p {
  color: var(--muted);
}

.section-label {
  color: var(--red-deep);
}

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

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 68px;
}

.method-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
}

.method-card--dark {
  border-color: #191e24;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(12, 14, 17, 0.16);
}

.method-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #9ca0a5;
  font-family: monospace;
  font-size: 0.62rem;
}

.method-card--dark .method-number {
  color: #5f6670;
}

.method-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 55px;
  place-items: center;
  border: 1px solid rgba(213, 31, 44, 0.22);
  border-radius: 50%;
  background: rgba(213, 31, 44, 0.05);
}

.method-card--dark .method-icon {
  border-color: rgba(255, 59, 69, 0.25);
  background: rgba(255, 59, 69, 0.08);
}

.method-icon svg {
  width: 25px;
  fill: none;
  stroke: var(--red-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.method-card--dark .method-icon svg {
  stroke: var(--red);
}

.method-card h3 {
  margin: 0 0 13px;
  font-family: var(--heading);
  font-size: 1.65rem;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.method-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.7;
}

.method-card--dark p {
  color: var(--muted);
}

.premium-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 45%, rgba(255, 59, 69, 0.12), transparent 30%),
    #090b0e;
}

.premium-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.premium-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.premium-copy h2 {
  max-width: 520px;
  margin: 18px 0 25px;
  font-family: var(--heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.premium-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.premium-copy > p strong {
  color: var(--white);
}

.premium-points {
  display: grid;
  gap: 0;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
}

.premium-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #c4c8cd;
  font-size: 0.86rem;
  line-height: 1.55;
}

.premium-points li:first-child {
  border-top: 1px solid var(--line);
}

.premium-points span {
  color: var(--red);
  font-family: monospace;
  font-size: 0.62rem;
}

.personal-console {
  padding: 28px;
  border: 1px solid rgba(255, 59, 69, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 35%),
    rgba(14, 17, 21, 0.96);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.personal-console__top,
.personal-console__identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.personal-console__top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #69717a;
  font-family: monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.personal-console__top i {
  padding: 6px 9px;
  border: 1px solid rgba(141, 255, 154, 0.22);
  border-radius: 99px;
  color: #bdf7c4;
  font-style: normal;
}

.personal-console__identity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  padding: 26px 0;
}

.personal-console__identity > div {
  display: grid;
  gap: 4px;
}

.personal-console__identity small {
  color: var(--red);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.personal-console__identity strong {
  font-family: var(--heading);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.personal-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 59, 69, 0.38);
  border-radius: 50%;
  background: rgba(255, 59, 69, 0.1);
  color: var(--red);
  font-family: var(--heading);
  font-weight: 800;
}

.personal-online {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.personal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.personal-stats article {
  display: grid;
  min-height: 128px;
  align-content: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.personal-stats small,
.personal-stats span {
  color: #69717a;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.personal-stats strong {
  margin: 7px 0 5px;
  font-family: var(--heading);
  font-size: 1.8rem;
}

.personal-stats .positive {
  color: var(--green);
}

.personal-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.personal-actions span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 59, 69, 0.18);
  border-radius: 10px;
  background: rgba(255, 59, 69, 0.055);
  color: #d5d8dc;
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
}

.personal-console > p {
  margin: 18px 0 0;
  color: #666d76;
  font-size: 0.63rem;
  text-align: center;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.benefits-copy {
  position: sticky;
  top: 40px;
}

.benefits-copy h2 {
  max-width: 460px;
}

.benefits-copy > p {
  max-width: 440px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 59, 69, 0.4);
  color: #e8e9eb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
}

.benefit-list {
  display: grid;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:first-child {
  padding-top: 0;
}

.benefit-list article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 59, 69, 0.24);
  border-radius: 50%;
  color: var(--red);
  font-family: monospace;
  font-size: 0.62rem;
}

.benefit-list h3 {
  margin: 0 0 8px;
  font-family: var(--heading);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.section-heading--center {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}

.steps-grid::before {
  position: absolute;
  top: 28px;
  right: 14%;
  left: 14%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(213, 31, 44, 0.3) 0,
    rgba(213, 31, 44, 0.3) 8px,
    transparent 8px,
    transparent 15px
  );
  content: "";
}

.steps-grid article {
  position: relative;
  z-index: 1;
  padding: 0 26px;
  text-align: center;
}

.step-index {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid rgba(213, 31, 44, 0.28);
  border-radius: 50%;
  background: var(--paper);
  color: var(--red-deep);
  font-family: monospace;
  font-size: 0.7rem;
  box-shadow: 0 0 0 8px var(--paper);
}

.steps-grid h3 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.steps-grid p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.65;
}

.access-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 59, 69, 0.08), transparent 24%),
    #090b0e;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 64px;
}

.access-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  min-height: 190px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.access-card:hover {
  z-index: 2;
  transform: translateY(-3px);
  border-color: rgba(255, 59, 69, 0.4);
  background: rgba(255, 59, 69, 0.035);
}

.access-card--featured {
  grid-column: 1 / -1;
  min-height: 230px;
  border-color: rgba(255, 59, 69, 0.38);
  background:
    linear-gradient(100deg, rgba(255, 59, 69, 0.12), rgba(255, 59, 69, 0.02) 60%),
    rgba(255, 255, 255, 0.025);
}

.access-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--red);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.access-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 59, 69, 0.26);
  border-radius: 13px;
  background: rgba(255, 59, 69, 0.08);
}

.access-icon svg {
  width: 25px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.access-card small {
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-card h3 {
  margin: 5px 0 9px;
  font-family: var(--heading);
  font-size: 1.7rem;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.access-card--featured h3 {
  font-size: 2.25rem;
}

.access-card p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.access-arrow {
  color: #68717b;
  font-size: 1.2rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.access-card:hover .access-arrow {
  transform: translate(2px, -2px);
  color: var(--red);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 40px;
}

.faq-heading > p {
  max-width: 350px;
  margin: 22px 0 28px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(213, 31, 44, 0.24);
  border-radius: 50%;
  color: var(--red-deep);
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 0 28px;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.72;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  border-top: 1px solid rgba(255, 59, 69, 0.22);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 50%, rgba(255, 59, 69, 0.16), transparent 27%),
    #0a0c0f;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  font-size: clamp(3rem, 5.5vw, 5.3rem);
}

.final-cta p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer {
  padding: 70px 0 28px;
  background: #07090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 100px;
}

.brand--footer .brand-copy strong {
  font-size: 1rem;
}

.footer-note {
  max-width: 340px;
  margin: 22px 0 0;
  color: #666e77;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  min-width: 135px;
  flex-direction: column;
  gap: 12px;
}

.footer-links > span {
  margin-bottom: 5px;
  color: #656d76;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: #b2b8bf;
  font-size: 0.75rem;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #555d66;
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

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

@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topnav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr 400px;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 5.2rem);
  }

  .section-heading--split {
    gap: 45px;
  }

  .benefits-layout,
  .premium-layout,
  .faq-layout {
    gap: 65px;
  }

  .footer-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .topbar {
    height: 78px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-checks {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .command-panel {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    min-height: 82px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading--split,
  .benefits-layout,
  .premium-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 22px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 280px;
  }

  .method-icon {
    margin-bottom: 38px;
  }

  .benefits-copy,
  .faq-heading {
    position: static;
  }

  .premium-copy {
    text-align: center;
  }

  .premium-copy > p {
    margin-inline: auto;
  }

  .premium-points {
    text-align: left;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .steps-grid::before {
    top: 4%;
    bottom: 4%;
    left: 50%;
    width: 1px;
    height: auto;
    background: repeating-linear-gradient(
      180deg,
      rgba(213, 31, 44, 0.3) 0,
      rgba(213, 31, 44, 0.3) 8px,
      transparent 8px,
      transparent 15px
    );
  }

  .steps-grid article {
    padding: 0;
    background: var(--paper);
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-card--featured {
    grid-column: auto;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
    --radius: 16px;
  }

  body {
    padding-bottom: 76px;
  }

  .topbar {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    height: 72px;
  }

  .brand {
    gap: 9px;
  }

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

  .brand-mark svg {
    width: 26px;
  }

  .brand-copy strong {
    max-width: 120px;
    font-size: 0.86rem;
    line-height: 0.95;
  }

  .topbar-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .topbar-actions > .button:not(.header-login) {
    display: none;
  }

  .header-login {
    display: inline-flex !important;
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.6rem;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 112px;
  }

  .eyebrow {
    gap: 7px;
    font-size: 0.55rem;
  }

  .eyebrow-separator,
  .eyebrow span:last-child {
    display: none;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .button--large {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 0.69rem;
  }

  .hero-checks {
    display: grid;
    gap: 10px;
    width: max-content;
    margin-inline: auto;
    text-align: left;
  }

  .command-panel {
    padding: 18px;
  }

  .panel-topline strong {
    font-size: 1.1rem;
  }

  .radar {
    width: 86%;
  }

  .signal-row {
    gap: 9px;
    padding: 9px;
  }

  .signal-row strong {
    font-size: 0.68rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .premium-copy h2,
  .benefits-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  .section-heading > p {
    font-size: 0.9rem;
  }

  .method-grid {
    margin-top: 45px;
  }

  .method-card {
    min-height: 260px;
    padding: 27px;
  }

  .benefits-layout,
  .premium-layout,
  .faq-layout {
    gap: 55px;
  }

  .personal-console {
    padding: 18px;
  }

  .personal-stats,
  .personal-actions {
    grid-template-columns: 1fr;
  }

  .personal-stats article {
    min-height: 96px;
  }

  .benefit-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .access-grid {
    margin-top: 44px;
  }

  .access-card,
  .access-card--featured {
    grid-template-columns: auto 1fr;
    min-height: auto;
    padding: 25px 22px;
  }

  .access-icon {
    width: 48px;
    height: 48px;
  }

  .access-card h3,
  .access-card--featured h3 {
    font-size: 1.35rem;
  }

  .access-card p {
    grid-column: 1 / -1;
  }

  .access-arrow {
    display: none;
  }

  .access-tag {
    top: 12px;
    right: 12px;
    font-size: 0.46rem;
  }

  .faq-list summary {
    font-size: 1.1rem;
  }

  .final-cta {
    padding: 72px 0;
  }

  .footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 45px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 13px 10px 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    background: rgba(222, 31, 43, 0.96);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
  }

  .mobile-cta span {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-cta small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .mobile-cta b {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: var(--white);
    color: var(--red-deep);
    font-size: 1rem;
  }
}

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