/* Dx - Enhance Definedge RZone (web) */

:root {
  --bg: #080a0e;
  --bg-elevated: #0e1118;
  --bg-card: #12161e;
  --bg-card-hover: #181d28;
  --border: rgba(255, 255, 255, 0.065);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f1f4f8;
  --text-muted: #98a3b8;
  --text-dim: #6b7585;
  --accent: #4ea8ff;
  --accent-soft: rgba(78, 168, 255, 0.14);
  --accent-glow: rgba(78, 168, 255, 0.38);
  --success: #3ecf9a;
  --success-soft: rgba(62, 207, 154, 0.12);
  --warn: #fbbf24;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.22);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.65 var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(78, 168, 255, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 15%, rgba(56, 189, 248, 0.05), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 40%, rgba(99, 102, 241, 0.04), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, #06080c 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.03'%3E%3Cpath d='M0 0h48v48H0z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 20%, black 15%, transparent 70%);
}

h1,
h2,
h3,
.hero h1,
.section__head h2,
.feature h3,
.trust__item h3,
.cta-band h2,
.install__card h3,
.privacy-callout h3,
.legal-doc > h1,
.legal-doc h2,
.legal-doc h3,
.overview-card h3,
.brand__name,
.tradeplan__pullquote {
  font-family: var(--font-display);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(20px) saturate(1.35);
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.site-header--raised {
  border-bottom-color: var(--border);
  background: rgba(8, 10, 14, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.brand__name {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text);
}

.brand__tagline {
  display: block;
  margin-top: 3px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
  max-width: 15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.25s var(--ease-out),
    opacity 0.25s var(--ease-out);
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle svg {
  display: block;
  margin: auto;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.25rem;
  border-radius: var(--radius-sm);
  font: 600 0.92rem/1 var(--font-display);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  transition-duration: 0.12s;
}

.btn--primary {
  background: linear-gradient(145deg, #1d6bff 0%, #3d9cf5 48%, #5eb5ff 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 8px 28px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 14px 40px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--bg-card);
}

.btn--soft {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(61, 156, 245, 0.25);
}

.btn--lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

/* Hero */

.hero {
  position: relative;
  padding: 4.75rem 0 5.25rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: -25% -10% auto;
  height: 85%;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(78, 168, 255, 0.22), transparent 68%),
    radial-gradient(ellipse 35% 28% at 85% 18%, rgba(34, 211, 238, 0.1), transparent 58%),
    radial-gradient(ellipse 30% 25% at 12% 35%, rgba(129, 140, 248, 0.08), transparent 55%);
  pointer-events: none;
  animation: hero-glow-drift 22s var(--ease-out) infinite alternate;
}

@keyframes hero-glow-drift {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0.92;
    transform: translate(2%, 1%) scale(1.03);
  }
}

.hero__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.hero__header {
  width: 100%;
}

.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hero__intro {
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 2.1vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #c8d4e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 {
    color: var(--text);
    background: none;
  }
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.hero__card {
  background: linear-gradient(165deg, rgba(24, 29, 40, 0.95) 0%, var(--bg-card) 45%);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.35rem;
  width: 100%;
  min-width: 0;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}

.hero__card.reveal--visible {
  transition-delay: 0.08s;
}

.hero__card:hover {
  border-color: rgba(78, 168, 255, 0.22);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(78, 168, 255, 0.12) inset;
}

.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero__kbd {
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.hero__shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.hero__shot img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(82vh, 1200px);
  object-fit: contain;
  object-position: center top;
}

/* Trust strip */

.trust {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust__item {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.trust__item:hover {
  border-color: var(--border-strong);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.trust__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust__item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: var(--success-soft);
  color: var(--success);
}

/* Section headings */

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__head {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section__head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__head-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section__head-lead a {
  font-weight: 600;
}

.section__head-lead a:hover {
  text-decoration: underline;
}

/* TradePlan cross-promo (https://tradeplan.upforce.tech/) */

#tradeplan {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.tradeplan {
  padding: 4.25rem 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(167, 139, 250, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(34, 211, 238, 0.06), transparent 50%),
    var(--bg);
}

.tradeplan .section__head {
  max-width: 48rem;
}

.tradeplan__product {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.tradeplan__tagline {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.tradeplan__pullquote {
  margin: 1.25rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.tradeplan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.tradeplan__card {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid rgba(167, 139, 250, 0.18);
}

.tradeplan__card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.tradeplan__card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.tradeplan__cta {
  text-align: center;
}

.tradeplan__cta .btn {
  margin-bottom: 0.85rem;
}

.tradeplan__cta-note {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-dim);
}

@media (max-width: 960px) {
  .tradeplan__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .tradeplan__grid {
    grid-template-columns: 1fr;
  }
}

/* Feature overview cards */

.overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.overview-card {
  display: block;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    border-color 0.32s var(--ease-out),
    background 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    transform 0.32s var(--ease-out);
}

.overview-card:hover {
  border-color: rgba(78, 168, 255, 0.28);
  background: var(--bg-card-hover);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(78, 168, 255, 0.08);
}

.overview-card:hover h3,
.overview-card:hover p {
  text-decoration: none;
}

.overview-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.overview-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}

.overview-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Feature detail blocks */

.feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse > * {
  direction: ltr;
}

.feature h3 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.feature__desc {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.feature__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--accent), #22d3ee);
  box-shadow: 0 0 10px rgba(78, 168, 255, 0.45);
}

/* Before / after compare (side by side) */

.compare {
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.98) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.compare:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(78, 168, 255, 0.06);
}

.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.compare__cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--border);
}

.compare__cell:last-child {
  border-right: none;
}

.compare__label {
  display: block;
  padding: 0.65rem 1rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.compare__label--after {
  color: var(--success);
}

.compare__frame {
  background: #12151a;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.compare__frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.35s var(--ease-out);
}

.compare:hover .compare__frame img {
  opacity: 0.98;
}

/* Screenshots (#compare): stacked copy + wide compare, larger preview frames */

#compare .container {
  width: min(1320px, calc(100% - 2.5rem));
}

#compare .feature[id] {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

#compare .feature {
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

#compare .feature--reverse {
  direction: ltr;
}

#compare .feature > div:first-child {
  max-width: 42rem;
}

#compare .compare {
  width: 100%;
}

#compare .compare__frame img {
  max-height: min(85vh, 1200px);
  object-fit: contain;
  object-position: center top;
}

/* Install */

.install {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  max-width: 720px;
  margin-inline: auto;
}

.install__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(165deg, rgba(22, 27, 38, 0.95) 0%, var(--bg-card) 50%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.install__card:hover {
  border-color: rgba(78, 168, 255, 0.2);
}

.install__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.install__hint {
  margin: 0 0 1.1rem;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.install__alt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Privacy callout */

.privacy-callout {
  padding: 2.25rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(62, 207, 154, 0.1) 0%, rgba(78, 168, 255, 0.07) 100%),
    var(--bg-elevated);
  border: 1px solid rgba(62, 207, 154, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.privacy-callout:hover {
  border-color: rgba(62, 207, 154, 0.32);
}

.privacy-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.privacy-callout p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.privacy-callout ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.privacy-callout__more {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
}

.privacy-callout__more a {
  font-weight: 600;
  text-decoration: none;
}

.privacy-callout__more a:hover {
  text-decoration: underline;
}

/* Legal (privacy.html) */

.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-doc > h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legal-doc .legal-meta {
  margin: 0 0 2rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.legal-doc h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-doc h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.legal-doc p,
.legal-doc li {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc li:last-child {
  margin-bottom: 0;
}

.legal-doc strong {
  color: var(--text);
  font-weight: 600;
}

.legal-doc .legal-note {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-back {
  margin: 0 0 1.5rem;
}

.legal-back a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-back a:hover {
  text-decoration: underline;
}

/* CTA band */

.cta-band {
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band__inner {
  position: relative;
  padding: 3.25rem 2rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.14) 0%, rgba(78, 168, 255, 0.08) 40%, transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(78, 168, 255, 0.12), transparent 65%);
  pointer-events: none;
  animation: cta-shimmer 14s var(--ease-out) infinite alternate;
}

.cta-band__inner > * {
  position: relative;
  z-index: 1;
}

@keyframes cta-shimmer {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(4%) scale(1.05);
    opacity: 1;
  }
}

.cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */

.footer-heart {
  color: #ef4444;
  display: inline-block;
  line-height: 1;
  vertical-align: 0.05em;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.86rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: var(--text-muted);
  font-weight: 500;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 960px) {
  .hero__split,
  .feature,
  .install,
  .overview,
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .feature--reverse {
    direction: ltr;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(8, 10, 14, 0.96);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.32s var(--ease-out),
      opacity 0.28s var(--ease-out);
  }

  .site-nav--open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header .btn--primary {
    display: none;
  }

  .overview {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .compare__row {
    grid-template-columns: 1fr;
  }

  .compare__cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .compare__cell:last-child {
    border-bottom: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .hero__glow {
    animation: none;
  }

  .cta-band__inner::before {
    animation: none;
  }

  .trust__item:hover,
  .overview-card:hover,
  .hero__card:hover {
    transform: none;
  }
}
