:root {
  --bg: #07111f;
  --bg-muted: #0d1a2d;
  --surface: rgba(10, 21, 37, 0.78);
  --surface-strong: #0c1930;
  --text: #e5f0ff;
  --muted: #95a8c6;
  --line: rgba(148, 179, 255, 0.16);
  --primary: #57c7ff;
  --primary-dark: #1788ff;
  --primary-soft: rgba(87, 199, 255, 0.14);
  --accent: #6bf7d2;
  --accent-soft: rgba(107, 247, 210, 0.12);
  --success: #15803d;
  --shadow: 0 22px 60px rgba(1, 9, 20, 0.42);
}

.page[data-theme="light"] {
  --bg: #f5f9ff;
  --bg-muted: #eef5ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #10213a;
  --muted: #5f7190;
  --line: rgba(113, 145, 192, 0.2);
  --primary: #1f8fff;
  --primary-dark: #1269df;
  --primary-soft: rgba(31, 143, 255, 0.1);
  --accent: #14c8b2;
  --accent-soft: rgba(20, 200, 178, 0.1);
  --shadow: 0 18px 48px rgba(82, 110, 156, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(23, 136, 255, 0.28), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(107, 247, 210, 0.16), transparent 18%),
    linear-gradient(180deg, #040b16 0%, #091324 38%, #0d1728 100%);
}

.page[data-theme="light"] {
  background:
    radial-gradient(circle at top left, rgba(31, 143, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(20, 200, 178, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 40%, #edf4ff 100%);
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 12, 22, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 179, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(107, 247, 210, 0.16), rgba(87, 199, 255, 0.12));
  border: 1px solid rgba(182, 213, 255, 0.14);
  box-shadow:
    0 0 24px rgba(87, 199, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  color: #03101f;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(23, 136, 255, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(23, 136, 255, 0.34);
}

.button-outline {
  background: rgba(5, 12, 22, 0.28);
  color: var(--primary);
  border-color: var(--line);
  box-shadow: none;
}

.theme-toggle {
  position: relative;
  width: 94px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #6bf7d2 0%, #4ea0ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 30px rgba(25, 126, 214, 0.2);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 34px rgba(25, 126, 214, 0.24);
}

.theme-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(74, 122, 168, 0.28);
  transition: transform 220ms ease;
}

.theme-toggle.is-light .theme-toggle-thumb {
  transform: translateX(60px);
}

.theme-toggle-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  pointer-events: none;
}

.theme-toggle-label-dark {
  right: 12px;
}

.theme-toggle-label-light {
  left: 12px;
  color: rgba(16, 33, 58, 0.76);
  opacity: 0;
}

.theme-toggle.is-light .theme-toggle-label-dark {
  opacity: 0;
}

.theme-toggle.is-light .theme-toggle-label-light {
  opacity: 1;
}

.page[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(113, 145, 192, 0.14);
}

.page[data-theme="light"] .logo-text {
  color: #12233f;
}

.page[data-theme="light"] .nav {
  color: #587092;
}

.page[data-theme="light"] .logo-mark {
  background: linear-gradient(135deg, rgba(20, 200, 178, 0.14), rgba(31, 143, 255, 0.12));
  border-color: rgba(113, 145, 192, 0.16);
  box-shadow:
    0 10px 24px rgba(31, 143, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page[data-theme="light"] .button {
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 143, 255, 0.22);
}

.page[data-theme="light"] .button:hover {
  box-shadow: 0 16px 30px rgba(31, 143, 255, 0.26);
}

.page[data-theme="light"] .button-outline {
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  border-color: rgba(113, 145, 192, 0.2);
}

.page[data-theme="light"] .hero h1,
.page[data-theme="light"] .section-head h2,
.page[data-theme="light"] .register-copy h2 {
  color: #10213a;
}

.page[data-theme="light"] .hero h1 {
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.45);
}

.page[data-theme="light"] .hero-text,
.page[data-theme="light"] .section-head p,
.page[data-theme="light"] .register-copy p,
.page[data-theme="light"] .info-card p,
.page[data-theme="light"] .note-card p,
.page[data-theme="light"] .form-message,
.page[data-theme="light"] .stat-card span {
  color: #5c708f;
}

.page[data-theme="light"] .theme-toggle {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 30px rgba(25, 126, 214, 0.16);
}

.hero {
  padding: 84px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 56px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(87, 199, 255, 0.22);
}

.hero-pill {
  box-shadow: 0 0 30px rgba(87, 199, 255, 0.1);
}

.hero h1,
.section-head h2,
.register-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-style: italic;
  max-width: 15ch;
  text-wrap: balance;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-text,
.section-head p,
.register-copy p,
.info-card p,
.note-card p,
.form-message,
.stat-card span,
.overview-box span,
.steps-card li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 1.06rem;
  text-wrap: pretty;
}

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

.button-playstore {
  background: rgba(5, 12, 22, 0.3);
  color: var(--accent);
  border-color: rgba(107, 247, 210, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(107, 247, 210, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.24);
}

.button-playstore:hover {
  border-color: rgba(107, 247, 210, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(107, 247, 210, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat-card,
.info-card,
.note-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 20px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
}

.orb-one {
  top: 24px;
  right: 28px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(87, 199, 255, 0.28), transparent 70%);
}

.orb-two {
  bottom: 36px;
  left: 16px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(107, 247, 210, 0.2), transparent 70%);
}

.orb-three {
  top: 42%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
}

.luxury-stage {
  position: relative;
  width: min(100%, 500px);
  min-height: 500px;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 27, 46, 0.88), rgba(7, 16, 31, 0.78)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%);
  border: 1px solid rgba(182, 213, 255, 0.2);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
}

.luxury-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.stage-glow {
  position: absolute;
  inset: auto auto 72px 50%;
  width: 360px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(87, 199, 255, 0.24), transparent 68%);
  filter: blur(20px);
}

.scanner-arch {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  margin-top: 6px;
}

.scanner-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(176, 220, 255, 0.26);
  box-shadow:
    0 0 40px rgba(87, 199, 255, 0.16),
    inset 0 0 24px rgba(255, 255, 255, 0.05);
}

.outer-ring {
  width: 300px;
  height: 300px;
  animation: spin 18s linear infinite;
}

.inner-ring {
  width: 220px;
  height: 220px;
  border-color: rgba(107, 247, 210, 0.24);
  animation: spinReverse 14s linear infinite;
}

.outer-ring::before,
.outer-ring::after,
.inner-ring::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background:
    conic-gradient(from 120deg, transparent, rgba(255, 255, 255, 0.16), transparent 32%),
    conic-gradient(from 260deg, transparent, rgba(87, 199, 255, 0.16), transparent 34%);
  mask: radial-gradient(circle, transparent 62%, black 63%);
}

.scanner-sweep {
  position: absolute;
  width: 310px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(87, 199, 255, 0.3), rgba(87, 199, 255, 0));
  filter: blur(4px);
  animation: pulse 2.8s ease-in-out infinite;
}

.scanner-core-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eaf8ff;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(87, 199, 255, 0.6);
}

.lock-pedestal {
  position: absolute;
  left: 50%;
  bottom: 56px;
  width: 260px;
  height: 120px;
  transform: translateX(-50%);
}

.pedestal-top {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 227, 255, 0.4), rgba(38, 75, 118, 0.88));
  box-shadow: 0 0 22px rgba(87, 199, 255, 0.22);
}

.pedestal-base {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 180px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(96, 145, 201, 0.24), rgba(11, 24, 43, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent, rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(176, 220, 255, 0.14);
}

.luxury-lock {
  position: absolute;
  left: 50%;
  bottom: 118px;
  width: 180px;
  height: 210px;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
}

.luxury-shackle {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 94px;
  height: 92px;
  transform: translateX(-50%);
  border: 12px solid rgba(233, 245, 255, 0.9);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(87, 199, 255, 0.16);
}

.luxury-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 170px;
  height: 126px;
  transform: translateX(-50%);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(32, 66, 104, 0.2) 16%, rgba(6, 17, 30, 0.96) 100%),
    linear-gradient(135deg, rgba(107, 247, 210, 0.14), transparent 55%);
  border: 1px solid rgba(212, 232, 255, 0.22);
  box-shadow:
    0 0 45px rgba(87, 199, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.luxury-body::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
}

.luxury-keyhole {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #d8fbf2;
  box-shadow:
    0 0 0 14px rgba(107, 247, 210, 0.08),
    0 0 30px rgba(107, 247, 210, 0.5);
}

.luxury-keyhole::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 8px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #d8fbf2;
}

.floating-chip {
  position: relative;
  z-index: 1;
  width: 180px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 18, 34, 0.52);
  border: 1px solid rgba(212, 232, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.chip-left {
  position: absolute;
  left: 0;
  bottom: 172px;
}

.chip-right {
  position: absolute;
  right: 0;
  top: 104px;
}

.chip-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7fa0c9;
}

.floating-chip strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.brands {
  padding: 0 0 28px;
}

.brands-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.brands-row span {
  padding: 16px;
  text-align: center;
  background: rgba(8, 18, 34, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.section {
  padding: 72px 0;
}

.section-about {
  padding-bottom: 12px;
}

.section-features {
  padding-top: 12px;
  padding-bottom: 28px;
}

.section-reviews {
  padding-top: 28px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(10, 21, 37, 0.72) 0%, rgba(8, 17, 31, 0.95) 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.card-grid,
.register-grid {
  display: grid;
  gap: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.about-copy {
  margin-bottom: 0;
}

.about-card {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(14, 28, 47, 0.9), rgba(8, 18, 34, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 44%);
  border: 1px solid rgba(182, 213, 255, 0.14);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.about-block + .about-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(182, 213, 255, 0.12);
}

.about-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-card strong {
  display: block;
  font-size: 1.2rem;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.reviews-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.reviews-track {
  position: relative;
}

.carousel-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(182, 213, 255, 0.16);
  border-radius: 50%;
  background: rgba(8, 18, 34, 0.72);
  color: #e8f2ff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.carousel-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(107, 247, 210, 0.34);
  background: rgba(10, 24, 44, 0.86);
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 28px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(14, 28, 47, 0.9), rgba(8, 18, 34, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 44%);
  border: 1px solid rgba(182, 213, 255, 0.14);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.review-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(182, 213, 255, 0.24);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, width 160ms ease;
}

.carousel-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.review-quote {
  margin: 0;
  color: #e8f2ff;
  font-size: 1.06rem;
  line-height: 1.8;
}

.review-author {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(182, 213, 255, 0.12);
}

.review-author strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.review-author span {
  color: var(--muted);
  font-size: 0.95rem;
}

.register-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.note-card {
  margin-top: 22px;
  padding: 20px;
  background: rgba(10, 21, 37, 0.76);
}

.note-card strong {
  display: block;
  margin-bottom: 8px;
}

.form-card {
  padding: 24px;
}

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

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.field-grid input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 16, 31, 0.82);
  color: var(--text);
}

.field-grid input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.3);
}

.field-grid .full {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  margin-top: 18px;
}

.form-message {
  margin: 14px 0 0;
}

.form-message.success {
  color: var(--success);
  font-weight: 600;
}

.page[data-theme="light"] .hero-pill {
  box-shadow: 0 8px 24px rgba(31, 143, 255, 0.08);
}

.page[data-theme="light"] .button-playstore {
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  border-color: rgba(20, 200, 178, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(20, 200, 178, 0.06),
    0 12px 30px rgba(82, 110, 156, 0.12);
}

.page[data-theme="light"] .button-playstore:hover {
  border-color: rgba(20, 200, 178, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(20, 200, 178, 0.12),
    0 16px 34px rgba(82, 110, 156, 0.16);
}

.page[data-theme="light"] .orb-three {
  background: radial-gradient(circle, rgba(31, 143, 255, 0.08), transparent 68%);
}

.page[data-theme="light"] .luxury-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.9)),
    linear-gradient(135deg, rgba(31, 143, 255, 0.06), transparent 42%);
  border-color: rgba(113, 145, 192, 0.16);
  box-shadow:
    0 28px 72px rgba(82, 110, 156, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page[data-theme="light"] .luxury-stage::before {
  border-color: rgba(113, 145, 192, 0.12);
}

.page[data-theme="light"] .stage-glow {
  background: radial-gradient(circle, rgba(31, 143, 255, 0.14), transparent 68%);
}

.page[data-theme="light"] .scanner-ring {
  border-color: rgba(113, 145, 192, 0.24);
  box-shadow:
    0 0 40px rgba(31, 143, 255, 0.1),
    inset 0 0 24px rgba(255, 255, 255, 0.4);
}

.page[data-theme="light"] .outer-ring::before,
.page[data-theme="light"] .outer-ring::after,
.page[data-theme="light"] .inner-ring::before {
  background:
    conic-gradient(from 120deg, transparent, rgba(31, 143, 255, 0.16), transparent 32%),
    conic-gradient(from 260deg, transparent, rgba(20, 200, 178, 0.14), transparent 34%);
}

.page[data-theme="light"] .scanner-core-dot {
  background: #ffffff;
  box-shadow:
    0 0 0 10px rgba(31, 143, 255, 0.08),
    0 0 28px rgba(31, 143, 255, 0.3);
}

.page[data-theme="light"] .pedestal-top {
  background: radial-gradient(circle, rgba(146, 213, 255, 0.42), rgba(117, 176, 229, 0.78));
  box-shadow: 0 0 22px rgba(31, 143, 255, 0.14);
}

.page[data-theme="light"] .pedestal-base {
  background:
    linear-gradient(180deg, rgba(148, 190, 232, 0.4), rgba(228, 239, 252, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent, rgba(255, 255, 255, 0.6));
  border-color: rgba(113, 145, 192, 0.16);
}

.page[data-theme="light"] .luxury-lock {
  filter: drop-shadow(0 18px 28px rgba(82, 110, 156, 0.2));
}

.page[data-theme="light"] .luxury-shackle {
  border-color: rgba(154, 182, 214, 0.9);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.7),
    0 0 28px rgba(31, 143, 255, 0.1);
}

.page[data-theme="light"] .luxury-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(225, 239, 252, 0.96) 65%, rgba(205, 225, 245, 0.94) 100%),
    linear-gradient(135deg, rgba(20, 200, 178, 0.08), transparent 55%);
  border-color: rgba(113, 145, 192, 0.18);
  box-shadow:
    0 0 45px rgba(31, 143, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page[data-theme="light"] .luxury-body::before {
  background: linear-gradient(90deg, transparent, rgba(113, 145, 192, 0.34), transparent);
}

.page[data-theme="light"] .luxury-keyhole,
.page[data-theme="light"] .luxury-keyhole::after {
  background: #14c8b2;
}

.page[data-theme="light"] .luxury-keyhole {
  box-shadow:
    0 0 0 14px rgba(20, 200, 178, 0.08),
    0 0 30px rgba(20, 200, 178, 0.22);
}

.page[data-theme="light"] .floating-chip {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(113, 145, 192, 0.14);
  box-shadow: 0 18px 40px rgba(82, 110, 156, 0.12);
}

.page[data-theme="light"] .chip-label {
  color: #6281ad;
}

.page[data-theme="light"] .floating-chip strong,
.page[data-theme="light"] .stat-card strong,
.page[data-theme="light"] .about-card strong,
.page[data-theme="light"] .review-author strong,
.page[data-theme="light"] .info-card h3 {
  color: #10213a;
}

.page[data-theme="light"] .brands-row span {
  background: rgba(255, 255, 255, 0.78);
}

.page[data-theme="light"] .section-muted {
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.9) 0%, rgba(234, 243, 255, 0.96) 100%);
}

.page[data-theme="light"] .about-card,
.page[data-theme="light"] .review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.9)),
    linear-gradient(135deg, rgba(31, 143, 255, 0.04), transparent 44%);
  border-color: rgba(113, 145, 192, 0.14);
  box-shadow: 0 18px 42px rgba(82, 110, 156, 0.12);
}

.page[data-theme="light"] .about-block + .about-block,
.page[data-theme="light"] .review-author {
  border-top-color: rgba(113, 145, 192, 0.12);
}

.page[data-theme="light"] .carousel-arrow {
  border-color: rgba(113, 145, 192, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
}

.page[data-theme="light"] .carousel-arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.page[data-theme="light"] .review-quote {
  color: var(--text);
}

.page[data-theme="light"] .note-card {
  background: rgba(247, 251, 255, 0.9);
}

.page[data-theme="light"] .note-card strong,
.page[data-theme="light"] .field-grid label {
  color: #5c708f;
}

.page[data-theme="light"] .field-grid input {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(113, 145, 192, 0.24);
  color: #10213a;
}

.page[data-theme="light"] .field-grid input::placeholder {
  color: #6d7f9c;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .card-grid,
  .register-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .chip-left,
  .chip-right {
    position: static;
  }

  .luxury-stage {
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .hero-stats,
  .brands-row,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    padding-top: 44px;
  }

  .luxury-stage {
    min-height: 440px;
    padding: 20px;
  }

  .outer-ring {
    width: 240px;
    height: 240px;
  }

  .inner-ring {
    width: 180px;
    height: 180px;
  }

  .scanner-sweep {
    width: 240px;
  }

  .luxury-lock {
    bottom: 112px;
    transform: translateX(-50%) scale(0.9);
  }

  .lock-pedestal {
    width: 220px;
    bottom: 58px;
  }

  .hero-stats,
  .brands-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

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

  .hero h1,
  .section-head h2,
  .register-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}
