:root {
  --bg: #060914;
  --bg-soft: #0a1020;
  --panel: rgba(11, 17, 34, 0.88);
  --panel-muted: rgba(13, 18, 30, 0.86);
  --line: rgba(255, 76, 54, 0.28);
  --text: #f3f5fb;
  --text-soft: #c1c8dd;
  --text-muted: #95a1c2;
  --accent: #ff4c36;
  --accent-soft: #ff7a54;
  --accent-cold: #3fd2ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --clip: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 36px 100%, 0 calc(100% - 36px));
  --font-display: "Orbitron", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Rajdhani", "Trebuchet MS", "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  background:
    radial-gradient(circle at 18% 0%, rgba(63, 210, 255, 0.09), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(255, 76, 54, 0.16), transparent 26%),
    linear-gradient(180deg, #05070e 0%, #060914 46%, #090f1d 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.65), transparent 82%);
  opacity: 0.35;
  animation: gridDrift 24s linear infinite;
}

body::after {
  background:
    radial-gradient(circle at 20% 12%, rgba(63, 210, 255, 0.1), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 76, 54, 0.12), transparent 30%),
    linear-gradient(180deg, transparent, rgba(6, 9, 20, 0.24));
  animation: ambientPulse 12s ease-in-out infinite alternate;
}

.ambient-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.ambient-shell__grid,
.ambient-shell__glow,
.ambient-shell__beam {
  position: absolute;
  inset: auto;
}

.ambient-shell__grid {
  inset: -12%;
  background:
    linear-gradient(90deg, rgba(63, 210, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 76, 54, 0.05) 1px, transparent 1px);
  background-size: 140px 140px;
  transform: perspective(1200px) rotateX(72deg) translateY(14%);
  transform-origin: center top;
  opacity: 0.22;
  filter: blur(0.2px);
  animation: horizonDrift 18s linear infinite;
}

.ambient-shell__glow {
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.16;
}

.ambient-shell__glow--one {
  left: -8vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(255, 76, 54, 0.26), transparent 62%);
  animation: glowFloatOne 16s ease-in-out infinite;
}

.ambient-shell__glow--two {
  right: -10vw;
  top: 24vh;
  background: radial-gradient(circle, rgba(63, 210, 255, 0.22), transparent 60%);
  animation: glowFloatTwo 18s ease-in-out infinite;
}

.ambient-shell__beam {
  top: -18vh;
  left: -18vw;
  width: 52vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 76, 54, 0.8), rgba(63, 210, 255, 0.45), transparent);
  box-shadow:
    0 0 18px rgba(255, 76, 54, 0.25),
    0 0 32px rgba(63, 210, 255, 0.18);
  transform: rotate(32deg);
  opacity: 0.42;
  animation: beamSweep 14s linear infinite;
}

.ambient-shell__beam--reverse {
  top: auto;
  bottom: -22vh;
  left: auto;
  right: -16vw;
  width: 44vw;
  background: linear-gradient(90deg, transparent, rgba(63, 210, 255, 0.7), rgba(255, 76, 54, 0.36), transparent);
  transform: rotate(-26deg);
  animation-duration: 16s;
  animation-direction: reverse;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.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: absolute;
  left: 16px;
  top: -100px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111827;
  z-index: 1000;
}

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

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

.section-grid {
  position: relative;
  padding: 88px 0;
  overflow: clip;
}

.section-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 76, 54, 0.32), transparent);
  animation: sectionTracer 9s linear infinite;
}

.section-grid::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -12%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 210, 255, 0.52), transparent);
  transform: rotate(-26deg);
  opacity: 0.34;
  animation: traceSweep 11s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(4, 7, 14, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header::after {
  content: "";
  position: absolute;
  left: -24%;
  bottom: 0;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(63, 210, 255, 0.85), rgba(255, 76, 54, 0.72), transparent);
  filter: blur(0.4px);
  animation: headerScan 7s linear infinite;
}

.site-header--legal {
  position: relative;
}

.header-shell,
.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.header-shell {
  justify-content: space-between;
  gap: 24px;
}

.brand {
  gap: 14px;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  clip-path: var(--clip);
  background: linear-gradient(135deg, rgba(255, 76, 54, 0.16), rgba(63, 210, 255, 0.12));
  border: 1px solid rgba(255, 76, 54, 0.5);
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__mark--logo {
  width: 78px;
  height: 78px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(255, 76, 54, 0.24), rgba(63, 210, 255, 0.18));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  animation: logoPulse 5s ease-in-out infinite;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong,
.section-heading h1,
.section-heading h2,
.hero-copy h1,
.ranking-card h3,
.review-card h3,
.info-card h3,
.step-card h3,
.safety-card h3,
.footer-column h2,
.legal-card h2 {
  font-family: var(--font-display);
}

.brand__text strong {
  font-size: 1.18rem;
  letter-spacing: 0.06em;
}

.brand__text small {
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.site-nav {
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.94rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 76, 54, 0.44);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.frame,
.feature-chip,
.mini-panel,
.info-card,
.step-card,
.safety-card,
.ranking-card,
.review-card,
.legal-card,
.notice-panel,
.faq-item,
.art-slot,
.metric-card {
  position: relative;
  clip-path: var(--clip);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 55%),
    var(--panel-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.frame::after,
.feature-chip::after,
.mini-panel::after,
.info-card::after,
.step-card::after,
.safety-card::after,
.ranking-card::after,
.review-card::after,
.legal-card::after,
.notice-panel::after,
.faq-item::after,
.metric-card::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -58%;
  width: 34%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(63, 210, 255, 0.12), transparent);
  transform: rotate(18deg);
  opacity: 0;
  animation: panelSweep 11s ease-in-out infinite;
  animation-delay: var(--panel-delay, 0s);
  pointer-events: none;
}

.frame {
  padding: 24px;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  clip-path: var(--clip);
  border: 1px solid rgba(255, 76, 54, 0.16);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.88rem;
}

.hero {
  padding-top: 34px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  top: 22px;
  left: max(16px, calc((100% - var(--container)) / 2));
  width: min(300px, 34vw);
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 76, 54, 0.85) 0 34px,
      transparent 34px 48px
    );
  filter: drop-shadow(0 0 12px rgba(255, 76, 54, 0.3));
  animation: stripePulse 6s ease-in-out infinite;
}

.hero::after {
  right: max(16px, calc((100% - var(--container)) / 2));
  bottom: 32px;
  width: min(340px, 38vw);
  height: 16px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(63, 210, 255, 0.82) 0 38px,
      transparent 38px 54px
    );
  filter: drop-shadow(0 0 14px rgba(63, 210, 255, 0.26));
  animation: stripePulse 7s ease-in-out infinite reverse;
}

.hero-shell,
.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.split-layout--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.hero-copy {
  padding: 34px;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.section-heading {
  position: relative;
  max-width: 720px;
}

.section-heading--center {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  text-shadow: 0 0 18px rgba(63, 210, 255, 0.06);
}

.section-heading::after {
  content: "";
  display: block;
  width: min(180px, 42%);
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--accent), rgba(63, 210, 255, 0.86), transparent);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 76, 54, 0.2);
  animation: headingGlow 5.4s ease-in-out infinite;
}

.section-heading--center::after {
  margin-left: auto;
  margin-right: auto;
}

.lead,
.section-heading p,
.ranking-card p,
.review-card p,
.info-card p,
.step-card p,
.safety-card p,
.mini-panel p,
.feature-chip p,
.footer-column p,
.footer-note,
.notice-panel p,
.legal-card p,
.legal-card li,
.legal-aside li {
  color: var(--text-soft);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px auto -2px -42%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-24deg);
  opacity: 0;
}

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

.button:hover::after,
.button:focus-visible::after {
  animation: buttonSweep 0.8s ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #ff6a32);
  color: #fff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.button--block {
  width: 100%;
}

.hero-metrics,
.trust-stats,
.hero-sidecards,
.contact-notes,
.showcase-grid,
.ranking-grid,
.benefits-grid,
.reviews-grid,
.safety-grid,
.faq-list,
.legal-content {
  display: grid;
}

.hero-metrics,
.trust-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card,
.trust-stats article {
  padding: 18px;
}

.metric-card strong,
.trust-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-soft);
  font-size: 1.4rem;
}

.stack-shell,
.showcase-panel,
.contact-notes,
.hero-sidecards,
.faq-list,
.legal-content {
  display: grid;
  gap: 16px;
}

.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-chip,
.mini-panel,
.info-card,
.step-card,
.safety-card,
.ranking-card,
.review-card,
.legal-card,
.notice-panel {
  padding: 22px;
}

.feature-chip h2,
.mini-panel strong,
.banner-panel__copy strong {
  display: block;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ranking-card h3,
.review-card h3,
.info-card h3,
.step-card h3,
.safety-card h3,
.legal-card h2 {
  margin: 0 0 10px;
}

.art-slot {
  overflow: hidden;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(145deg, rgba(255, 76, 54, 0.16), rgba(6, 9, 20, 0.1) 28%, rgba(63, 210, 255, 0.15) 100%),
    linear-gradient(180deg, rgba(11, 18, 37, 0.96), rgba(6, 9, 20, 0.96));
}

.art-slot::before,
.art-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.art-slot::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
}

.art-slot::after {
  background:
    linear-gradient(130deg, transparent 0 36%, rgba(255, 76, 54, 0.14) 36% 38%, transparent 38% 100%),
    linear-gradient(320deg, transparent 0 42%, rgba(63, 210, 255, 0.12) 42% 44%, transparent 44% 100%);
}

.art-slot strong,
.contact-notes strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.art-slot strong {
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  letter-spacing: 0.05em;
}

.art-slot span {
  position: relative;
  z-index: 1;
  color: var(--text-soft);
}

.art-slot__tag {
  display: inline-flex;
  width: max-content;
  margin-bottom: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 9, 20, 0.7);
  border: 1px solid rgba(255, 76, 54, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--accent-soft);
}

.art-slot--hero {
  min-height: 460px;
}

.art-slot--hero strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.art-slot--tall {
  min-height: 540px;
}

.art-slot--wide {
  min-height: 220px;
}

.art-slot--square {
  min-height: 420px;
}

.art-slot--contact {
  min-height: 280px;
}

.art-slot--mobile {
  min-height: 320px;
}

.art-slot--photo {
  padding: 0;
  justify-content: flex-end;
  background: #05070e;
}

.art-slot--photo::before {
  background: linear-gradient(180deg, rgba(5, 7, 14, 0.04), rgba(5, 7, 14, 0.82));
  opacity: 1;
}

.art-slot--photo::after {
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255, 76, 54, 0.22) 58% 59%, transparent 59% 100%),
    linear-gradient(320deg, transparent 0 64%, rgba(63, 210, 255, 0.18) 64% 65%, transparent 65% 100%);
}

.art-slot__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: mediaDrift 16s ease-in-out infinite alternate;
}

.art-slot__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(5, 7, 14, 0.02), rgba(5, 7, 14, 0.44) 30%, rgba(5, 7, 14, 0.9) 100%);
}

.art-slot__overlay .art-slot__tag {
  align-self: flex-start;
  margin-bottom: 0;
}

.hero-sidecards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranking-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ranking-card__rank {
  display: inline-flex;
  min-width: 52px;
  justify-content: center;
  padding: 8px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 76, 54, 0.16);
  border: 1px solid rgba(255, 76, 54, 0.34);
  color: var(--accent-soft);
  font-family: var(--font-display);
}

.ranking-card {
  overflow: hidden;
}

.ranking-card__media {
  position: relative;
  margin: -22px -22px 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 7, 14, 0.08), rgba(5, 7, 14, 0.7)),
    #0b1020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ranking-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 14, 0) 34%, rgba(5, 7, 14, 0.84) 100%),
    linear-gradient(135deg, transparent 0 78%, rgba(255, 76, 54, 0.22) 78% 79%, transparent 79% 100%);
  pointer-events: none;
}

.ranking-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 12px
    );
  opacity: 0.16;
  mix-blend-mode: screen;
  animation: scanlinesDrift 10s linear infinite;
  pointer-events: none;
}

.ranking-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.ranking-card:hover .ranking-card__image {
  transform: scale(1.06);
}

.ranking-card__media--top .ranking-card__image {
  object-position: center top;
}

.ranking-card__media--left .ranking-card__image {
  object-position: left center;
}

.tag-list,
.review-card ul,
.trust-list,
.footer-column ul,
.legal-card ul,
.legal-aside ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  margin-bottom: 22px;
  align-items: stretch;
}

.banner-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.mobile-spotlight__copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.faq-item,
.ranking-card,
.review-card,
.info-card,
.step-card,
.safety-card,
.feature-chip,
.mini-panel,
.metric-card,
.art-slot,
.notice-panel,
.legal-card,
.legal-aside,
.section-heading,
.mobile-spotlight,
.footer-column,
.hero-copy {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(12px);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 12px;
}

.review-card header span {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.method-grid .step-card:last-child {
  grid-column: 1 / -1;
}

.step-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.safety-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.notice-panel {
  margin-top: 22px;
}

.notice-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-list {
  margin-top: 18px;
}

.trust-stats {
  margin-top: 24px;
}

.review-card ul li,
.trust-list li,
.footer-column li,
.legal-card li,
.legal-aside li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.review-card ul li::before,
.trust-list li::before,
.footer-column li::before,
.legal-card li::before,
.legal-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cold));
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  gap: 14px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 76, 54, 0.44);
  color: var(--accent-soft);
  flex: none;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 22px;
}

.section-grid--contact {
  background:
    linear-gradient(180deg, rgba(6, 9, 20, 0.12), rgba(6, 9, 20, 0.36)),
    radial-gradient(circle at 15% 20%, rgba(63, 210, 255, 0.09), transparent 24%);
}

.contact-form-shell {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.checkbox-field span {
  color: var(--text-soft);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  color-scheme: dark;
}

.field select option {
  background: #0b1020;
  color: var(--text);
}

.field select option[value=""] {
  color: var(--text-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(63, 210, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(63, 210, 255, 0.14);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(255, 76, 54, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 76, 54, 0.12);
}

.field-error {
  min-height: 1.2em;
  color: #ff9d8d;
}

.checkbox-field {
  display: flex;
  align-items: start;
  gap: 12px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-field a,
.legal-card a,
.legal-aside a {
  color: var(--accent-soft);
}

.form-status {
  min-height: 1.4em;
  margin: 4px 0 0;
  color: #9ff3be;
  font-weight: 700;
}

.site-footer {
  padding: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding: 42px 0 28px;
}

.brand--footer {
  margin-bottom: 18px;
}

.footer-column h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-note {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.footer-bottom--single {
  justify-content: center;
  text-align: center;
}

.legal-page {
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 76, 54, 0.12), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(63, 210, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #05070e 0%, #060914 100%);
}

.legal-main {
  padding-bottom: 20px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 96px;
}

.legal-aside h2,
.legal-card h2 {
  margin-top: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 96px 48px, 48px 96px;
  }
}

@keyframes ambientPulse {
  from {
    opacity: 0.78;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes horizonDrift {
  from {
    transform: perspective(1200px) rotateX(72deg) translateY(14%) translateX(0);
  }
  to {
    transform: perspective(1200px) rotateX(72deg) translateY(18%) translateX(-3%);
  }
}

@keyframes glowFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(5vw, 3vh, 0) scale(1.08);
  }
}

@keyframes glowFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-4vw, -2vh, 0) scale(1.1);
  }
}

@keyframes beamSweep {
  from {
    transform: rotate(32deg) translateX(-8vw);
  }
  to {
    transform: rotate(32deg) translateX(120vw);
  }
}

@keyframes headerScan {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(170vw);
  }
}

@keyframes sectionTracer {
  0%,
  100% {
    opacity: 0.42;
    filter: blur(0);
  }
  50% {
    opacity: 0.88;
    filter: blur(1px);
  }
}

@keyframes traceSweep {
  0%,
  100% {
    transform: rotate(-26deg) translateX(0);
    opacity: 0.15;
  }
  50% {
    transform: rotate(-26deg) translateX(-12%);
    opacity: 0.42;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  }
  50% {
    box-shadow:
      0 16px 30px rgba(0, 0, 0, 0.28),
      0 0 24px rgba(63, 210, 255, 0.16),
      0 0 18px rgba(255, 76, 54, 0.14);
  }
}

@keyframes panelSweep {
  0%,
  82%,
  100% {
    opacity: 0;
    transform: rotate(18deg) translateX(0);
  }
  14%,
  22% {
    opacity: 0.75;
    transform: rotate(18deg) translateX(300%);
  }
}

@keyframes stripePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(0);
  }
  50% {
    opacity: 0.92;
    transform: translateX(10px);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes headingGlow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 16px rgba(255, 76, 54, 0.2);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 18px rgba(255, 76, 54, 0.26),
      0 0 24px rgba(63, 210, 255, 0.2);
  }
}

@keyframes buttonSweep {
  from {
    opacity: 0;
    transform: skewX(-24deg) translateX(0);
  }
  35% {
    opacity: 0.9;
  }
  to {
    opacity: 0;
    transform: skewX(-24deg) translateX(420%);
  }
}

@keyframes mediaDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(0, -8px, 0);
  }
}

@keyframes scanlinesDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(14px);
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1120px) {
  .ranking-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(6, 9, 20, 0.98);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav--legal {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-shell,
  .split-layout,
  .contact-layout,
  .split-layout--reverse,
  .banner-panel,
  .mobile-spotlight,
  .reviews-grid,
  .safety-grid,
  .showcase-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-grid {
    padding: 72px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero::before,
  .hero::after {
    width: 42vw;
    opacity: 0.54;
  }

  .frame,
  .feature-chip,
  .mini-panel,
  .info-card,
  .step-card,
  .safety-card,
  .ranking-card,
  .review-card,
  .legal-card,
  .notice-panel,
  .faq-item,
  .art-slot,
  .metric-card {
    clip-path: none;
    border-radius: 24px;
  }

  .frame::before {
    clip-path: none;
    border-radius: 23px;
  }

  .hero-metrics,
  .trust-stats,
  .hero-sidecards,
  .ranking-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .art-slot--hero,
  .art-slot--tall,
  .art-slot--square,
  .art-slot--mobile {
    min-height: 280px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .site-nav--legal {
    display: grid;
    gap: 10px;
  }

  .brand__mark--logo {
    width: 62px;
    height: 62px;
  }
}
