:root {
  --uv2-bg: #080b10;
  --uv2-surface: #10151e;
  --uv2-surface-strong: #151c28;
  --uv2-line: rgba(255, 255, 255, 0.09);
  --uv2-text: #f5f7fb;
  --uv2-muted: #9aa6b8;
  --uv2-blue: #70a9ff;
  --uv2-blue-strong: #2879f0;
  --uv2-blue-soft: rgba(112, 169, 255, 0.12);
  --uv2-green: #67ddb1;
  --uv2-radius: 24px;
  --uv2-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.uv2-body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 16% 6%, rgba(40, 121, 240, 0.2), transparent 30rem),
    radial-gradient(circle at 84% 25%, rgba(103, 221, 177, 0.09), transparent 25rem),
    var(--uv2-bg);
  color: var(--uv2-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.uv2-body a {
  color: inherit;
  text-decoration: none;
}

.uv2-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.uv2-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 11, 16, 0.76);
  backdrop-filter: blur(20px);
}

.uv2-nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.uv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.uv2-brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: linear-gradient(145deg, #3a8cff, #174b9a);
  box-shadow: 0 10px 28px rgba(40, 121, 240, 0.32);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.uv2-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--uv2-muted);
  font-size: 14px;
  font-weight: 600;
}

.uv2-nav-links a:hover,
.uv2-nav-links a:focus-visible {
  color: var(--uv2-text);
}

.uv2-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, #3988f8, #2365ca);
  box-shadow: 0 14px 32px rgba(35, 101, 202, 0.28);
  color: white;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.uv2-button:hover,
.uv2-button:focus-visible {
  box-shadow: 0 18px 38px rgba(35, 101, 202, 0.38);
  transform: translateY(-1px);
}

.uv2-button-secondary {
  border-color: var(--uv2-line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  color: #dbe2ee;
}

.uv2-button-secondary:hover,
.uv2-button-secondary:focus-visible {
  border-color: rgba(112, 169, 255, 0.42);
  background: rgba(112, 169, 255, 0.08);
  box-shadow: none;
}

.uv2-nav-cta {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 11px;
}

.uv2-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}

.uv2-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 88%);
  pointer-events: none;
}

.uv2-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: 68px;
}

.uv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(112, 169, 255, 0.22);
  border-radius: 999px;
  background: rgba(112, 169, 255, 0.08);
  color: #aecdff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uv2-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--uv2-green);
  box-shadow: 0 0 0 5px rgba(103, 221, 177, 0.1);
}

.uv2-hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.uv2-gradient-text {
  background: linear-gradient(100deg, #f5f7fb 12%, #83b5ff 60%, #75e2ba 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.uv2-hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #aab5c7;
  font-size: 18px;
  line-height: 1.65;
}

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

.uv2-install-button i {
  font-size: 17px;
}

.uv2-browser-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 22px 0 0;
  color: #7f8b9e;
  font-size: 12px;
}

.uv2-browser-icons {
  display: inline-flex;
  gap: 12px;
  color: #b4becd;
  font-size: 16px;
}

.uv2-browser-icons a {
  transition: color 150ms ease, transform 150ms ease;
}

.uv2-browser-icons a:hover,
.uv2-browser-icons a:focus-visible {
  color: var(--uv2-blue);
  transform: translateY(-1px);
}

.uv2-product-frame {
  position: relative;
  min-height: 530px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(25, 32, 44, 0.92), rgba(11, 15, 22, 0.96));
  box-shadow: var(--uv2-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.uv2-product-frame::before {
  position: absolute;
  z-index: -1;
  inset: 9% -8% -7% 18%;
  border-radius: 50%;
  background: rgba(40, 121, 240, 0.22);
  filter: blur(80px);
  content: "";
}

.uv2-window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 2px;
}

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

.uv2-window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.uv2-window-label {
  color: #7e899b;
  font-size: 11px;
  font-weight: 650;
}

.uv2-product-app {
  display: grid;
  min-height: 442px;
  grid-template-columns: 146px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: #0d1118;
}

.uv2-product-sidebar {
  padding: 18px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.uv2-product-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 6px 24px;
  font-size: 12px;
  font-weight: 750;
}

.uv2-product-logo .uv2-brand-mark {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  font-size: 10px;
}

.uv2-product-nav {
  display: grid;
  gap: 6px;
}

.uv2-product-nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 9px;
  color: #748094;
  font-size: 10px;
  font-weight: 650;
}

.uv2-product-nav span.active {
  background: var(--uv2-blue-soft);
  color: #bdd5ff;
}

.uv2-product-main {
  padding: 24px 22px;
}

.uv2-product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.uv2-product-heading small,
.uv2-setting-copy small {
  display: block;
  color: #667287;
  font-size: 9px;
}

.uv2-product-heading strong {
  display: block;
  margin-top: 3px;
  font-size: 17px;
}

.uv2-status-pill {
  padding: 6px 9px;
  border: 1px solid rgba(103, 221, 177, 0.18);
  border-radius: 999px;
  background: rgba(103, 221, 177, 0.08);
  color: #8ee7c5;
  font-size: 9px;
  font-weight: 750;
}

.uv2-settings {
  display: grid;
  gap: 9px;
}

.uv2-setting {
  display: flex;
  min-height: 61px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.026);
}

.uv2-setting-copy {
  display: flex;
  align-items: center;
  gap: 11px;
}

.uv2-setting-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  background: rgba(112, 169, 255, 0.1);
  color: #91bcff;
  font-size: 12px;
}

.uv2-setting-copy strong {
  display: block;
  margin-bottom: 2px;
  color: #d9dfeb;
  font-size: 11px;
}

.uv2-toggle {
  position: relative;
  width: 34px;
  height: 19px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: #2d75dd;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.uv2-toggle::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,.3);
  content: "";
}

.uv2-floating-summary {
  position: absolute;
  right: -26px;
  bottom: 38px;
  width: 220px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(20, 27, 38, 0.94);
  box-shadow: 0 22px 48px rgba(0,0,0,.36);
  backdrop-filter: blur(16px);
}

.uv2-floating-summary header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #e3e8f1;
  font-size: 10px;
  font-weight: 750;
}

.uv2-floating-summary header span {
  color: #7dafff;
}

.uv2-summary-line {
  height: 6px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.uv2-summary-line:nth-child(2) { width: 88%; }
.uv2-summary-line:nth-child(3) { width: 72%; }
.uv2-summary-line:nth-child(4) { width: 93%; }

.uv2-trust-strip {
  padding: 0 0 84px;
}

.uv2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--uv2-line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.uv2-trust-item {
  padding: 20px 24px;
}

.uv2-trust-item + .uv2-trust-item {
  border-left: 1px solid var(--uv2-line);
}

.uv2-trust-item strong {
  display: block;
  color: #e4e9f2;
  font-size: 14px;
}

.uv2-trust-item span {
  display: block;
  margin-top: 4px;
  color: #778397;
  font-size: 11px;
}

.uv2-section {
  padding: 96px 0;
}

.uv2-section-soft {
  border-block: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.018);
}

.uv2-section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.uv2-section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.uv2-kicker {
  margin: 0 0 10px;
  color: #8bb6fa;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uv2-section h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -.045em;
  line-height: 1.06;
}

.uv2-section-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--uv2-muted);
  font-size: 17px;
  line-height: 1.65;
}

.uv2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.uv2-feature-card,
.uv2-review-card,
.uv2-step {
  border: 1px solid var(--uv2-line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(22, 29, 41, .78), rgba(12, 16, 23, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.uv2-feature-card {
  min-height: 220px;
  padding: 24px;
}

.uv2-feature-card .uv2-setting-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  font-size: 14px;
}

.uv2-feature-card h3,
.uv2-step h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.025em;
}

.uv2-feature-card p,
.uv2-step p {
  margin: 9px 0 0;
  color: #8d99aa;
  font-size: 13px;
  line-height: 1.6;
}

.uv2-focus-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.uv2-compare {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--uv2-line);
  border-radius: 24px;
  background: rgba(255,255,255,.025);
}

.uv2-compare-card {
  padding: 20px;
  border: 1px solid var(--uv2-line);
  border-radius: 17px;
  background: #0e131b;
}

.uv2-compare-card.active {
  border-color: rgba(112,169,255,.28);
  background: linear-gradient(135deg, rgba(40,121,240,.14), rgba(103,221,177,.05));
}

.uv2-compare-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.uv2-compare-card header strong { font-size: 13px; }
.uv2-compare-card header span { color: #68758a; font-size: 10px; }
.uv2-compare-card.active header span { color: #8db9fb; }

.uv2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.uv2-chip {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: #7e899b;
  font-size: 9px;
  font-weight: 650;
}

.uv2-compare-card.active .uv2-chip {
  background: rgba(112,169,255,.09);
  color: #bcd5ff;
}

.uv2-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.uv2-step {
  padding: 25px;
}

.uv2-step-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 10px;
  background: var(--uv2-blue-soft);
  color: #9fc3ff;
  font-size: 12px;
  font-weight: 800;
}

.uv2-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.uv2-review-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.uv2-stars {
  color: #f5c96a;
  font-size: 12px;
  letter-spacing: 2px;
}

.uv2-review-card blockquote {
  margin: 22px 0;
  color: #d4dae5;
  font-size: 15px;
  line-height: 1.65;
}

.uv2-review-card footer {
  color: #758196;
  font-size: 11px;
}

.uv2-cta {
  padding: 90px 0;
}

.uv2-cta-card {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border: 1px solid rgba(112,169,255,.23);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(40,121,240,.22), rgba(18,24,34,.92) 48%, rgba(103,221,177,.1));
  text-align: center;
}

.uv2-cta-card::after {
  position: absolute;
  inset: auto 10% -70% 10%;
  height: 100%;
  border-radius: 50%;
  background: rgba(67,132,236,.24);
  filter: blur(80px);
  content: "";
  pointer-events: none;
}

.uv2-cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.uv2-cta-card p {
  position: relative;
  z-index: 1;
  margin: 16px auto 28px;
  color: #aab5c7;
}

.uv2-cta-card .uv2-button {
  position: relative;
  z-index: 1;
}

.uv2-footer {
  border-top: 1px solid var(--uv2-line);
}

.uv2-footer-inner {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #697589;
  font-size: 12px;
}

.uv2-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.uv2-footer a:hover,
.uv2-footer a:focus-visible {
  color: #b9c3d2;
}

@media (max-width: 980px) {
  .uv2-nav-links { display: none; }
  .uv2-hero-grid,
  .uv2-focus-layout { grid-template-columns: 1fr; }
  .uv2-hero-grid { gap: 52px; }
  .uv2-product-frame { width: min(660px, 100%); margin: 0 auto; }
  .uv2-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .uv2-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .uv2-trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--uv2-line); }
  .uv2-trust-item:nth-child(4) { border-top: 1px solid var(--uv2-line); }
}

@media (max-width: 720px) {
  .uv2-shell { width: min(100% - 28px, 1180px); }
  .uv2-nav-inner { min-height: 64px; }
  .uv2-nav-cta { display: none; }
  .uv2-hero { padding: 60px 0 52px; }
  .uv2-hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .uv2-hero-copy { font-size: 16px; }
  .uv2-hero-actions { display: grid; }
  .uv2-button { width: 100%; }
  .uv2-product-frame { min-height: 450px; padding: 12px; border-radius: 22px; }
  .uv2-product-app { min-height: 385px; grid-template-columns: 1fr; }
  .uv2-product-sidebar { display: none; }
  .uv2-product-main { padding: 20px 15px; }
  .uv2-floating-summary { right: 5px; bottom: 24px; width: 190px; }
  .uv2-trust-grid,
  .uv2-feature-grid,
  .uv2-steps,
  .uv2-review-grid { grid-template-columns: 1fr; }
  .uv2-trust-item + .uv2-trust-item { border-top: 1px solid var(--uv2-line); border-left: 0; }
  .uv2-section { padding: 72px 0; }
  .uv2-cta { padding: 64px 0; }
  .uv2-cta-card { padding: 44px 22px; }
  .uv2-footer-inner { align-items: flex-start; flex-direction: column; padding: 30px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
