:root {
  --ink: #111827;
  --muted: #5c6677;
  --line: #d9e0ea;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --blue: #155eef;
  --cyan: #05b6d7;
  --green: #08875d;
  --red: #b42318;
  --yellow: #fdb022;
  --soft-blue: #eaf1ff;
  --soft-green: #e8f7ef;
  --soft-yellow: #fff8df;
  --shadow: 0 18px 44px rgba(17, 24, 39, .10);
  --gradient-background-start: #060b1d;
  --gradient-background-end: #0a1240;
  --first-color: 18, 113, 255;
  --second-color: 35, 211, 238;
  --third-color: 95, 120, 255;
  --fourth-color: 18, 34, 96;
  --fifth-color: 6, 199, 220;
  --pointer-color: 95, 120, 255;
  --size: 58%;
  --blending-value: hard-light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(21, 94, 239, .14), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(5, 182, 215, .16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 224, 234, .86);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
}

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

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 22px;
  background: linear-gradient(40deg, var(--gradient-background-start), var(--gradient-background-end));
  isolation: isolate;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, .24), rgba(3, 7, 18, .72)),
    radial-gradient(circle at 50% 100%, rgba(3, 7, 18, .78), transparent 48%);
}

.gradient-animation {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.gradient-filter {
  display: none;
}

.gradients-container {
  width: 100%;
  height: 100%;
  filter: url(#blurMe) blur(34px);
}

.gradient-orb,
.gradient-interactive {
  position: absolute;
  width: var(--size);
  height: var(--size);
  top: calc(50% - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  mix-blend-mode: var(--blending-value);
  opacity: .92;
}

.gradient-first {
  background: radial-gradient(circle at center, rgba(var(--first-color), .92) 0, rgba(var(--first-color), 0) 52%) no-repeat;
  transform-origin: center center;
  animation: moveVertical 28s ease infinite;
}

.gradient-second {
  background: radial-gradient(circle at center, rgba(var(--second-color), .78) 0, rgba(var(--second-color), 0) 50%) no-repeat;
  transform-origin: calc(50% - 360px);
  animation: moveInCircle 20s reverse infinite;
}

.gradient-third {
  background: radial-gradient(circle at center, rgba(var(--third-color), .72) 0, rgba(var(--third-color), 0) 50%) no-repeat;
  transform-origin: calc(50% + 360px);
  animation: moveInCircle 34s linear infinite;
}

.gradient-fourth {
  background: radial-gradient(circle at center, rgba(var(--fourth-color), .76) 0, rgba(var(--fourth-color), 0) 50%) no-repeat;
  transform-origin: calc(50% - 180px);
  animation: moveHorizontal 32s ease infinite;
  opacity: .58;
}

.gradient-fifth {
  background: radial-gradient(circle at center, rgba(var(--fifth-color), .60) 0, rgba(var(--fifth-color), 0) 50%) no-repeat;
  transform-origin: calc(50% - 700px) calc(50% + 700px);
  animation: moveInCircle 24s ease infinite;
}

.gradient-interactive {
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(var(--pointer-color), .58) 0, rgba(var(--pointer-color), 0) 48%) no-repeat;
  opacity: .62;
  transition: transform .12s linear;
}

@keyframes moveInCircle {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

@keyframes moveVertical {
  0% { transform: translateY(-18%); }
  50% { transform: translateY(18%); }
  100% { transform: translateY(-18%); }
}

@keyframes moveHorizontal {
  0% { transform: translateX(-18%) translateY(-4%); }
  50% { transform: translateX(18%) translateY(6%); }
  100% { transform: translateX(-18%) translateY(-4%); }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-orb,
  .gradient-interactive {
    animation: none;
    transition: none;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #dbeafe;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(8, 135, 93, .14);
}

h1,
h2,
.display {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 16px 0 12px;
  font-size: clamp(40px, 5.3vw, 68px);
  line-height: .97;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: #d7e3f4;
  font-size: 18px;
}

.notice {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(253, 176, 34, .36);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 248, 223, .94);
  color: #4f3b00;
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, .12);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #06b6d4);
  border-color: rgba(255,255,255,.20);
}

.hero-card {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: #fff;
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: #d7e3f4;
  font-size: 13px;
  font-weight: 800;
}

section {
  padding: 34px 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 16px;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
}

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

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

.card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.card ul {
  margin: 10px 0 0;
  padding-left: 19px;
}

.product-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 82px;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #111827;
}

.product-logo img {
  max-width: 100%;
  max-height: 52px;
}

.compare {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f2f5f9;
  color: #344054;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

tr:last-child td {
  border-bottom: 0;
}

.screen-row {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 12px;
  align-items: center;
}

.screen {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #111827;
  box-shadow: var(--shadow);
}

.screen img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.cta-band {
  margin: 20px 0;
  padding: 24px;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta-band p {
  margin: 0;
  color: #cbd5e1;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  margin-right: 12px;
}

.policy {
  max-width: 860px;
  padding: 42px 0;
}

.policy h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.policy p,
.policy li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .stats,
  .grid-2,
  .grid-3,
  .screen-row,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
