:root {
  --bg: #050505;
  --bg-soft: #0c0c0f;
  --panel: rgba(18, 18, 22, 0.76);
  --panel-solid: #111116;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f6f6f7;
  --muted: rgba(246, 246, 247, 0.7);
  --soft: rgba(246, 246, 247, 0.5);
  --red: #e3001b;
  --red-2: #ff2438;
  --red-3: #8d0012;
  --accent: #e3001b;
  --accent-2: #ff2438;
  --white: #ffffff;
  --black: #020203;
  --radius: 30px;
  --radius-lg: 44px;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  --font: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 12% -10%, rgba(227, 0, 27, 0.42), transparent 33%),
    radial-gradient(circle at 92% 8%, rgba(255, 36, 56, 0.22), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(141, 0, 18, 0.18), transparent 34%),
    linear-gradient(135deg, #030304 0%, #09090c 45%, #050505 100%);
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.cookie-lock {
  overflow: hidden;
}

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

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

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

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

input,
textarea,
select,
.allow-select {
  user-select: text;
  -webkit-user-select: text;
}

.noise,
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.noise {
  opacity: 0.2;
  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: 54px 54px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
}

.scanline {
  opacity: 0.12;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: overlay;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--red-2);
  box-shadow: 0 0 24px rgba(255, 36, 56, 0.9);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 36, 56, 0.58);
}

body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 36, 56, 0.08);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(100% - 32px, 1220px);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px 14px 12px 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(7, 7, 9, 0.72);
  backdrop-filter: blur(26px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.site-header.compact {
  border-color: rgba(255, 36, 56, 0.24);
  background: rgba(5, 5, 6, 0.88);
}

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

.brand img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 16px 30px rgba(227, 0, 27, 0.38));
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.22s ease, background 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.language-wrap select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.language-wrap option {
  background: #0d0d11;
  color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.015em;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-3), var(--red), var(--red-2));
  box-shadow: 0 18px 38px rgba(227, 0, 27, 0.28);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

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

.btn-flat {
  min-height: 44px;
  padding: 0 12px;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 122px) 0 clamp(46px, 7vw, 90px);
}

.hero-grid,
.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-orbit {
  position: absolute;
  inset: -120px -180px auto auto;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.68;
  filter: blur(0.2px);
}

.hero-orbit div {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 36, 56, 0.18);
  animation: orbit 14s linear infinite;
}

.hero-orbit div:nth-child(1) {
  inset: 0;
}

.hero-orbit div:nth-child(2) {
  inset: 90px;
  animation-direction: reverse;
  animation-duration: 18s;
}

.hero-orbit div:nth-child(3) {
  inset: 178px;
  border-color: rgba(255, 255, 255, 0.1);
  animation-duration: 9s;
}

.hero-orbit div::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red-2);
  box-shadow: 0 0 28px rgba(255, 36, 56, 0.9);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #ff4f60;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(255, 36, 56, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8.8vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p,
.platform-copy p,
.creators-card p,
.security-card p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 850;
}

.speed-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 36, 56, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 16, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

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

.speed-card::before {
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
}

.speed-card::after {
  width: 290px;
  height: 290px;
  right: -98px;
  bottom: -72px;
  border-radius: 50%;
  background: rgba(227, 0, 27, 0.3);
  filter: blur(58px);
}

.speed-top,
.speed-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.speed-top {
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 0 rgba(255, 36, 56, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(255, 36, 56, 0);
  }
}

.car-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.car-stage svg {
  width: min(100%, 620px);
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.65));
}

.car-glow {
  fill: rgba(227, 0, 27, 0.15);
  filter: blur(16px);
}

.car-body {
  fill: rgba(245, 245, 247, 0.93);
}

.wheel {
  fill: #050506;
  stroke: rgba(255, 36, 56, 0.7);
  stroke-width: 8;
  transform-origin: center;
  animation: wheelSpin 9s linear infinite;
}

.rim {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.44);
  stroke-width: 4;
}

.road {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 6;
  stroke-linecap: round;
}

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

.speed-bottom {
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 12px;
}

.speed-bottom div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.speed-bottom span {
  display: block;
  margin-bottom: 9px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.speed-bottom strong {
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.04em;
}

.split-section,
.platform-section,
.reviews-section,
.creators-section,
.security-section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 870px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

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

.pillar-card,
.review-card,
.feature-board article,
.creators-card,
.security-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(13, 13, 17, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.pillar-card,
.review-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius);
}

.pillar-card::after,
.review-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -76px;
  top: -76px;
  border-radius: 50%;
  background: rgba(227, 0, 27, 0.16);
  filter: blur(22px);
}

.pillar-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-3), var(--red-2));
  font-weight: 950;
}

.pillar-card p,
.review-card p,
.feature-board span {
  color: var(--muted);
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.platform-section {
  align-items: start;
}

.platform-copy {
  position: sticky;
  top: 132px;
}

.feature-board {
  display: grid;
  gap: 14px;
}

.feature-board article {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 24px;
  border-radius: 26px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-board article:hover {
  transform: translateX(-4px);
  border-color: rgba(255, 36, 56, 0.34);
  background: rgba(227, 0, 27, 0.09);
}

.feature-board b {
  font-size: 23px;
  letter-spacing: -0.035em;
}

.review-line {
  width: 100%;
  height: 5px;
  margin-bottom: 36px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.review-line::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-3), var(--red-2));
  box-shadow: 0 0 30px rgba(255, 36, 56, 0.7);
}

.creators-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.creators-card::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(227, 0, 27, 0.22);
  filter: blur(50px);
}

.creators-card > * {
  position: relative;
  z-index: 1;
}

.security-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-lg);
}

.security-card h2 {
  font-size: clamp(30px, 4.5vw, 58px);
}

.security-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-card li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1220px);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(7, 7, 9, 0.72);
  backdrop-filter: blur(24px);
}

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

.site-footer p {
  max-width: 660px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 850;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft) !important;
  font-size: 13px !important;
}

.cookie-panel {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  width: min(460px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(11, 11, 14, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.cookie-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: rgba(227, 0, 27, 0.24);
  filter: blur(30px);
}

.cookie-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.cookie-content strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.cookie-content p {
  color: var(--muted);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.cookie-preferences label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.copy-toast {
  position: fixed;
  z-index: 250;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 28px);
  padding: 13px 18px;
  border: 1px solid rgba(255, 36, 56, 0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 10, 13, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  font-weight: 850;
  text-align: center;
}

.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}


@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .magnetic-card,
  .magnetic-card:hover,
  .feature-board article:hover,
  .header-cta:hover,
  .btn:hover {
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .platform-section,
  .security-card {
    grid-template-columns: 1fr;
  }

  .platform-copy {
    position: static;
    top: auto;
  }

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

@media (max-width: 920px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.cookie-lock {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-header {
    top: 8px;
    width: min(100% - 20px, 1220px);
    margin-top: 8px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px 10px;
    min-height: 66px;
    padding: 10px;
    border-radius: 22px;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    max-width: 100%;
    font-size: 13px;
    letter-spacing: 0.035em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    max-width: 44vw;
    font-size: 10px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 8px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 20px;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease, margin 0.22s ease;
  }

  body.menu-open .main-nav {
    max-height: 340px;
    margin-top: 4px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.045);
  }

  .header-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    width: 100%;
    gap: 8px;
  }

  .language-wrap,
  .header-cta {
    width: 100%;
    min-width: 0;
    min-height: 44px;
  }

  .language-wrap {
    justify-content: center;
    padding: 0 10px;
    overflow: hidden;
  }

  .language-wrap span {
    display: none;
  }

  .language-wrap select {
    min-width: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
  }

  .header-cta {
    padding: 0 12px;
    text-align: center;
    font-size: 12px;
    line-height: 1.15;
  }

  .section-shell {
    width: min(100% - 20px, 1220px);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 34px;
  }

  .hero-grid,
  .platform-section {
    gap: 28px;
  }

  .hero-orbit {
    width: 340px;
    height: 340px;
    inset: 18px -150px auto auto;
    opacity: 0.38;
  }

  .eyebrow {
    max-width: 100%;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.11em;
  }

  .eyebrow span {
    width: 24px;
    flex: 0 0 24px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(40px, 12.2vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(31px, 9.5vw, 54px);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  h3 {
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.16;
  }

  .hero-lead,
  .section-heading p,
  .platform-copy p,
  .creators-card p,
  .security-card p,
  .site-footer p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    text-align: center;
  }

  .trust-row {
    gap: 8px;
    margin-top: 22px;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 8px);
    min-width: 136px;
    padding: 9px 10px;
    text-align: center;
    font-size: 12px;
  }

  .speed-card {
    min-height: auto;
    padding: 18px;
    border-radius: 30px;
  }

  .speed-card::before {
    inset: 10px;
    border-radius: 24px;
  }

  .speed-top {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 1.45;
  }

  .live-dot {
    flex: 0 0 10px;
    margin-top: 4px;
  }

  .car-stage {
    min-height: 230px;
    padding: 10px 0 2px;
  }

  .car-stage svg {
    width: 100%;
    max-width: 520px;
  }

  .speed-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .speed-bottom div {
    min-height: 72px;
    padding: 14px;
    border-radius: 18px;
  }

  .split-section,
  .platform-section,
  .reviews-section,
  .creators-section,
  .security-section {
    padding: 54px 0;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 26px;
  }

  .pillar-grid,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar-card,
  .review-card,
  .feature-board article {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .pillar-card span {
    width: 42px;
    height: 42px;
    margin-bottom: 26px;
    border-radius: 14px;
  }

  .review-line {
    margin-bottom: 24px;
  }

  .feature-board {
    gap: 12px;
  }

  .feature-board b {
    font-size: 21px;
  }

  .creators-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 22px;
    padding: 24px;
    border-radius: 30px;
  }

  .security-card {
    gap: 20px;
    padding: 24px;
    border-radius: 30px;
  }

  .security-card h2 {
    font-size: clamp(30px, 9vw, 48px);
  }

  .security-card li {
    padding: 14px 15px;
    border-radius: 16px;
    font-size: 14px;
  }

  .site-footer {
    width: min(100% - 20px, 1220px);
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 10px;
    padding: 22px;
    border-radius: 26px;
  }

  .footer-links {
    justify-items: start;
    width: 100%;
  }

  .footer-links a {
    overflow-wrap: anywhere;
  }

  .copyright {
    padding-top: 16px;
  }

  .cookie-panel {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    max-height: min(78dvh, 620px);
    overflow-y: auto;
    border-radius: 24px;
  }

  .cookie-content {
    padding: 20px;
  }

  .cookie-content strong {
    font-size: 19px;
  }

  .cookie-content p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .copy-toast {
    bottom: 14px;
    width: calc(100% - 20px);
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  :root {
    --radius: 24px;
    --radius-lg: 28px;
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: calc(100% - 16px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-orbit {
    display: none;
  }

  .eyebrow {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
  }

  h1 {
    font-size: clamp(36px, 12vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(28px, 9.5vw, 42px);
    line-height: 1.06;
  }

  .hero-lead,
  .section-heading p,
  .platform-copy p,
  .creators-card p,
  .security-card p,
  .site-footer p {
    font-size: 15px;
    line-height: 1.56;
  }

  .trust-row span {
    flex-basis: 100%;
    min-width: 0;
  }

  .speed-card {
    padding: 15px;
    border-radius: 24px;
  }

  .car-stage {
    min-height: 184px;
  }

  .speed-bottom div {
    min-height: auto;
  }

  .pillar-card,
  .review-card,
  .feature-board article,
  .creators-card,
  .security-card,
  .site-footer {
    padding: 18px;
  }

  .split-section,
  .platform-section,
  .reviews-section,
  .creators-section,
  .security-section {
    padding: 44px 0;
  }

  .cookie-panel {
    width: calc(100% - 16px);
    right: 8px;
    bottom: 8px;
    max-height: 82dvh;
  }

  .cookie-content {
    padding: 17px;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .car-stage {
    min-height: 160px;
  }

  .pillar-card,
  .review-card,
  .feature-board article,
  .creators-card,
  .security-card,
  .site-footer {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


/* === NM 2026 premium refresh: Montserrat, light default theme, NM CARS / NM AI, popups === */
:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-solid: #ffffff;
  --line: rgba(20, 24, 33, 0.12);
  --line-strong: rgba(20, 24, 33, 0.2);
  --text: #101218;
  --muted: rgba(16, 18, 24, 0.68);
  --soft: rgba(16, 18, 24, 0.48);
  --shadow: 0 30px 90px rgba(16, 18, 24, 0.14);
  --font: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.theme-light {
  color-scheme: light;
  background:
    radial-gradient(circle at 8% -12%, rgba(227, 0, 27, 0.18), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(255, 36, 56, 0.14), transparent 30%),
    radial-gradient(circle at 50% 92%, rgba(16, 18, 24, 0.06), transparent 38%),
    linear-gradient(135deg, #fbfcff 0%, #f5f6fa 48%, #ffffff 100%);
}

body.theme-dark {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0c0c0f;
  --panel: rgba(18, 18, 22, 0.76);
  --panel-solid: #111116;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f6f6f7;
  --muted: rgba(246, 246, 247, 0.7);
  --soft: rgba(246, 246, 247, 0.5);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  background:
    radial-gradient(circle at 12% -10%, rgba(227, 0, 27, 0.42), transparent 33%),
    radial-gradient(circle at 92% 8%, rgba(255, 36, 56, 0.22), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(141, 0, 18, 0.18), transparent 34%),
    linear-gradient(135deg, #030304 0%, #09090c 45%, #050505 100%);
}

body.theme-light .scanline { opacity: 0.045; mix-blend-mode: multiply; }
body.theme-light .noise {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(15, 20, 30, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 20, 30, 0.055) 1px, transparent 1px);
}

body.theme-light .site-header,
body.theme-light .speed-card,
body.theme-light .pillar-card,
body.theme-light .feature-board,
body.theme-light .review-card,
body.theme-light .creators-card,
body.theme-light .security-card,
body.theme-light .cookie-panel,
body.theme-light .nm-modal-card,
body.theme-light .ecosystem-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.82);
  border-color: rgba(16, 18, 24, 0.12);
  box-shadow: var(--shadow);
}

body.theme-light .site-header.compact { border-color: rgba(227, 0, 27, 0.24); }
body.theme-light .main-nav a,
body.theme-light .brand small,
body.theme-light .language-wrap span,
body.theme-light .language-wrap select,
body.theme-light .trust-row span,
body.theme-light .speed-top,
body.theme-light .speed-bottom span,
body.theme-light .feature-board span,
body.theme-light .review-card p,
body.theme-light .ecosystem-card p,
body.theme-light .security-card p,
body.theme-light .site-footer p,
body.theme-light .footer-links a,
body.theme-light .cookie-content p,
body.theme-light .nm-modal-card p {
  color: var(--muted);
}

body.theme-light .language-wrap,
body.theme-light .language-wrap select,
body.theme-light .menu-button,
body.theme-light .btn-ghost,
body.theme-light .btn-flat,
body.theme-light .trust-row span,
body.theme-light .speed-bottom > div,
body.theme-light .feature-board article,
body.theme-light .cookie-preferences label,
body.theme-light .theme-toggle {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(16, 18, 24, 0.12);
  color: var(--text);
}

body.theme-light .car-body { fill: rgba(16, 18, 24, 0.78); }
body.theme-light .car-glow { fill: rgba(227, 0, 27, 0.16); }
body.theme-light .wheel { fill: #11131a; }
body.theme-light .rim { fill: #f5f6fb; }
body.theme-light .road { stroke: rgba(16, 18, 24, 0.2); }
body.theme-light .review-line { background: linear-gradient(90deg, var(--red), transparent); }
body.theme-light .copy-toast { background: rgba(255, 255, 255, 0.95); color: var(--text); border-color: rgba(227, 0, 27, 0.22); }
body.theme-light .site-footer { border-color: rgba(16, 18, 24, 0.1); }

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 14px 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(227, 0, 27, 0.18), transparent 44%, rgba(255, 36, 56, 0.14));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.theme-toggle:hover { transform: translateY(-2px); border-color: rgba(227, 0, 27, 0.34); box-shadow: 0 16px 34px rgba(227, 0, 27, 0.12); }
.theme-toggle:hover::before { opacity: 1; }
.theme-toggle > * { position: relative; z-index: 1; }
.theme-toggle-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-3), var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(227, 0, 27, 0.26);
}
.theme-toggle svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .sun-core { fill: currentColor; stroke: none; transform-origin: center; transition: opacity .22s ease, transform .22s ease; }
.theme-toggle .sun-rays { transition: opacity .22s ease, transform .22s ease; transform-origin: center; }
.theme-toggle .moon-cut { fill: currentColor; stroke: none; opacity: 0; transform-origin: center; transition: opacity .22s ease, transform .22s ease; }
body.theme-dark .theme-toggle .sun-core,
body.theme-dark .theme-toggle .sun-rays { opacity: 0; transform: rotate(90deg) scale(.55); }
body.theme-dark .theme-toggle .moon-cut { opacity: 1; transform: scale(1); }

.ecosystem-section {
  padding: clamp(40px, 7vw, 96px) 0;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 32px;
}
.ecosystem-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
}
.ecosystem-card::before,
.ecosystem-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}
.ecosystem-card::before {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  background: rgba(227, 0, 27, 0.18);
  filter: blur(8px);
}
.ecosystem-card::after {
  inset: auto 28px 24px auto;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(227, 0, 27, 0.16);
}
.ecosystem-ai::before { background: rgba(255, 36, 56, 0.22); }
.ecosystem-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-3), var(--red), var(--red-2));
  box-shadow: 0 18px 44px rgba(227, 0, 27, 0.26);
}
.ecosystem-icon svg { fill: currentColor; }
.ecosystem-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 12px;
  color: #ff2b40;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ecosystem-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .9;
  letter-spacing: -0.06em;
}
.ecosystem-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.ecosystem-card .btn { position: relative; z-index: 1; }

.nm-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
}
.nm-modal[hidden] { display: none; }
.nm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.68);
  backdrop-filter: blur(16px);
}
.nm-modal-card {
  position: relative;
  width: min(100%, 640px);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(227, 0, 27, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(12, 12, 16, .92);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.36);
  transform: translateY(14px) scale(.96);
  opacity: 0;
  animation: nmModalIn .28s ease forwards;
}
@keyframes nmModalIn { to { transform: translateY(0) scale(1); opacity: 1; } }
.nm-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.nm-modal-badge {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-3), var(--red), var(--red-2));
  box-shadow: 0 18px 44px rgba(227, 0, 27, 0.28);
  font-weight: 950;
}
.nm-modal-card h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: .95;
}
.nm-modal-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}
.nm-modal-points span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  line-height: 1.45;
}
.nm-modal-points span::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--red-2);
  box-shadow: 0 0 18px rgba(255, 36, 56, 0.75);
}
.nm-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.modal-open { overflow: hidden; }
body.theme-dark .nm-modal-card { background: radial-gradient(circle at 15% 0%, rgba(227, 0, 27, 0.22), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)), rgba(12, 12, 16, .94); }
body.theme-dark .theme-toggle { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }

@media (max-width: 1080px) {
  .theme-toggle-text { display: none; }
  .theme-toggle { width: 48px; height: 48px; padding: 0; }
  .theme-toggle-icon { width: 34px; height: 34px; }
}

@media (max-width: 860px) {
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-card { min-height: auto; }
  body.menu-open .theme-toggle { width: 100%; }
  body.menu-open .theme-toggle-text { display: inline; }
}

@media (max-width: 620px) {
  .nm-modal-actions { flex-direction: column; }
  .nm-modal-actions .btn { width: 100%; }
  .ecosystem-card .btn { width: 100%; }
  .theme-toggle { order: -1; }
}


/* NM text animations */
.text-animate {
  position: relative;
  display: inline-block;
  background: linear-gradient(110deg, var(--text), var(--accent), var(--text), var(--accent-2));
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: nmTextFlow 7s ease-in-out infinite;
}

.text-hero {
  animation-duration: 5.8s;
}

.text-animate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0.65;
  animation: nmUnderlineMove 4.8s ease-in-out infinite;
}

.eyebrow b {
  animation: nmLetterGlow 3.8s ease-in-out infinite;
}

.footer-cookie-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: .78;
  text-align: left;
  transition: opacity .2s ease, color .2s ease;
}

.footer-cookie-link:hover {
  opacity: 1;
  color: var(--accent);
}

@keyframes nmTextFlow {
  0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 0 0 rgba(227, 0, 27, 0)); }
  50% { background-position: 100% 50%; filter: drop-shadow(0 12px 32px rgba(227, 0, 27, 0.16)); }
}

@keyframes nmUnderlineMove {
  0%, 100% { transform: scaleX(0.16); opacity: .25; }
  45% { transform: scaleX(1); opacity: .72; }
  70% { transform: translateX(32%) scaleX(.45); opacity: .42; }
}

@keyframes nmLetterGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(227, 0, 27, 0); }
  50% { text-shadow: 0 10px 30px rgba(227, 0, 27, .22); }
}


/* Semantic accessibility helpers and performance mode */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscript-note {
  margin: 20px auto;
  max-width: 980px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(227, 0, 27, 0.08);
  border: 1px solid rgba(227, 0, 27, 0.2);
  color: var(--text);
  font-weight: 700;
}

body.performance-lite {
  text-rendering: optimizeSpeed;
}

body.performance-lite .cursor-dot,
body.performance-lite .cursor-ring,
body.performance-lite .noise,
body.performance-lite .scanline,
body.performance-lite .hero-orbit,
body.performance-lite .cookie-glow,
body.performance-lite .nm-modal-backdrop {
  display: none !important;
}

body.performance-lite *,
body.performance-lite *::before,
body.performance-lite *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.12s !important;
  scroll-behavior: auto !important;
  filter: none !important;
  backdrop-filter: none !important;
}

body.performance-lite .site-header,
body.performance-lite .speed-card,
body.performance-lite .pillar-card,
body.performance-lite .feature-board,
body.performance-lite .review-card,
body.performance-lite .creators-card,
body.performance-lite .security-card,
body.performance-lite .ecosystem-card,
body.performance-lite .nm-modal-card,
body.performance-lite .cookie-panel {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

body.performance-lite .text-animate {
  color: var(--text) !important;
  background: none !important;
}

body.performance-lite .text-animate::after {
  display: none !important;
}

body.rtl .main-nav,
body.rtl .header-actions,
body.rtl .hero-actions,
body.rtl .cookie-actions,
body.rtl .nm-modal-actions {
  direction: rtl;
}

body.rtl .eyebrow::before,
body.rtl .eyebrow span {
  transform: scaleX(-1);
}
