﻿/*
Theme Name: DominusVault
Author: DominusVault Sp. z o.o.
Description: Product site — control-room landing (variant A), PL/EN.
Version: 0.6.1
Text Domain: dominusvault
*/
/* DominusVault landing mockups â€” shared tokens */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  --bg: #07080e;
  --bg-2: #0b0f19;
  --bg-elev: rgba(16, 22, 38, 0.72);
  --line: rgba(160, 190, 255, 0.12);
  --line-strong: rgba(160, 190, 255, 0.22);
  --text: #eef2ff;
  --muted: #8b95ad;
  --faint: #5d677e;
  --cyan: #3ee0ff;
  --cyan-2: #7af0ff;
  --blue: #4d8dff;
  --violet: #7b6cff;
  --ok: #3ee0a8;
  --warn: #f5c15a;
  --glass: rgba(14, 18, 32, 0.55);
  --glass-2: rgba(255, 255, 255, 0.04);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --max: 1180px;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Code", monospace;
  --sans: Inter, system-ui, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(120, 150, 220, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 150, 220, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 75%);
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background: repeating-radial-gradient(circle at 20% 20%, #fff 0 0.5px, transparent 1px 3px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.aurora-a {
  width: 620px; height: 620px;
  top: -180px; right: 8%;
  background: radial-gradient(circle, rgba(62, 224, 255, 0.22), transparent 62%);
}
.aurora-b {
  width: 520px; height: 520px;
  top: 80px; left: -80px;
  background: radial-gradient(circle, rgba(77, 141, 255, 0.18), transparent 62%);
}
.aurora-c {
  width: 480px; height: 480px;
  bottom: -120px; right: 18%;
  background: radial-gradient(circle, rgba(123, 108, 255, 0.16), transparent 62%);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 14, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(62, 224, 255, 0.25));
}
.brand span {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 0.98rem;
}
.brand-full {
  gap: 0;
}
.brand-full img {
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav-links a:hover { color: var(--text); background: var(--glass-2); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus {
  color: #041018;
  background: linear-gradient(180deg, #5af0ff, #2cc8e8);
}
.lang {
  display: flex;
  gap: 2px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  color: var(--faint);
}
.lang .on {
  background: rgba(62, 224, 255, 0.12);
  color: var(--cyan);
  border-radius: 999px;
  padding: 4px 8px;
}
.lang a { padding: 4px 8px; color: var(--faint); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #5af0ff, #2cc8e8);
  color: #041018;
  box-shadow: 0 0 0 1px rgba(122, 240, 255, 0.25), 0 12px 30px rgba(62, 224, 255, 0.22);
}
.btn-primary:hover { color: #041018; box-shadow: 0 0 0 1px rgba(122, 240, 255, 0.45), 0 16px 40px rgba(62, 224, 255, 0.35); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(62, 224, 255, 0.45); box-shadow: 0 0 24px rgba(62, 224, 255, 0.12); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
}
h1, h2, h3 { margin: 0; letter-spacing: -0.035em; line-height: 1.12; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.45rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
}
.mono { font-family: var(--mono); }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.pills li {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #c9d6f0;
  border: 1px solid var(--line);
  background: rgba(77, 141, 255, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

/* WINDOW / SCREENSHOT */
.window {
  background: #0e1422;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(62, 224, 255, 0.08);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #161d2e, #101624);
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.window-title {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--faint);
}
.window img { width: 100%; height: auto; display: block; }

.glow-plate {
  position: relative;
}
.glow-plate::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -28px;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(62, 224, 255, 0.35), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

/* CARDS / BENTO */
.bento {
  display: grid;
  gap: 14px;
}
.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 224, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 28px rgba(62, 224, 255, 0.1);
}
.card p { color: var(--muted); margin: 8px 0 0; font-size: 0.92rem; }
.icon-pill {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(62, 224, 255, 0.1);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.85rem;
  margin-bottom: 14px;
  border: 1px solid rgba(62, 224, 255, 0.18);
}

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.price-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.price-card {
  --gx: 50%;
  --gy: 20%;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--gx) var(--gy), rgba(62, 224, 255, 0.22), transparent 55%);
  transition: opacity 0.2s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 224, 255, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(62, 224, 255, 0.14);
}
.price-card:hover::before { opacity: 1; }
.price-card > * { position: relative; z-index: 1; }
.plan-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0 0 0 16px;
  color: var(--text);
  font-size: 0.84rem;
  transition: max-height 0.28s ease, opacity 0.22s ease, margin 0.22s ease;
}
.price-card:hover .plan-more,
.price-card:focus-within .plan-more {
  max-height: 220px;
  opacity: 1;
  margin: 4px 0 8px;
}
.plan-more li { margin: 5px 0; color: #c9d6f0; }
.price-card.featured {
  border-color: rgba(62, 224, 255, 0.45);
  background: linear-gradient(180deg, rgba(62, 224, 255, 0.1), rgba(14, 18, 32, 0.7));
  box-shadow: 0 0 0 1px rgba(62, 224, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.3);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #041018;
  background: var(--cyan);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.plan-name { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.price {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price small { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.was {
  color: var(--faint);
  text-decoration: line-through;
  font-family: var(--mono);
  font-size: 0.85rem;
}
.promo-note { color: var(--cyan-2); font-size: 0.8rem; margin: 0; }
.price-card ul {
  margin: 8px 0 16px;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}
.price-card li { margin: 6px 0; }
.fine { color: var(--faint); font-size: 0.8rem; }

section { position: relative; z-index: 1; padding: 88px 0; }
.sec-head { margin-bottom: 32px; max-width: 640px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.02);
}
.trust h3 { font-size: 0.95rem; }
.trust p { margin: 6px 0 0; color: var(--muted); font-size: 0.88rem; }

.trial-box, .sec-box {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(16px);
}
label { display: block; font-size: 0.8rem; color: var(--muted); margin: 0 0 6px; }
input, textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.sec-end {
  padding: 20px 0 8px;
}
.sec-end .fine {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
footer.site {
  padding: 28px 0 32px;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.foot-company-meta {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.foot-grid a:hover { color: var(--cyan); }
footer.site strong { color: var(--text); }

.preview-bar {
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: rgba(7, 8, 14, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 0;
  font-size: 0.85rem;
}
.preview-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.preview-bar a { color: var(--cyan); font-weight: 600; }

/* CHOOSER */
.chooser {
  min-height: 100vh;
  padding: 48px 0 80px;
}
.chooser h1 { max-width: 16ch; }
.warn-banner {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(245, 193, 90, 0.35);
  background: rgba(245, 193, 90, 0.08);
  color: #f5d38a;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.pick {
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pick:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 224, 255, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), 0 0 32px rgba(62, 224, 255, 0.12);
}
.thumb {
  height: 210px;
  position: relative;
  background: #0a1020;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pick-body { padding: 18px 18px 20px; }
.pick-body h2 { font-size: 1.15rem; margin-bottom: 6px; }
.pick-body p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.letter {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* thumb A: split + tilt */
.thumb-a .t-copy {
  position: absolute; left: 16px; top: 36px; width: 42%;
}
.thumb-a .t-line { height: 8px; background: #eef2ff; border-radius: 4px; margin-bottom: 8px; width: 90%; }
.thumb-a .t-line.s { width: 70%; height: 5px; background: #5d677e; }
.thumb-a .t-btns { display: flex; gap: 6px; margin-top: 10px; }
.thumb-a .t-btn { width: 46px; height: 14px; border-radius: 99px; background: var(--cyan); }
.thumb-a .t-btn.g { background: transparent; border: 1px solid #4d8dff; }
.thumb-a .t-shot {
  position: absolute; right: 8px; top: 28px; width: 54%; height: 150px;
  background: linear-gradient(135deg, #1a2744, #0e1628);
  border: 1px solid rgba(160,190,255,0.25);
  border-radius: 8px;
  transform: perspective(400px) rotateY(-18deg) rotateX(8deg);
  box-shadow: 0 16px 30px rgba(0,0,0,0.4);
}
.thumb-a .t-shot::before {
  content: ""; position: absolute; inset: 10px 8px 8px 28%;
  background: #e8eef8; border-radius: 4px;
}

/* thumb B: centered cards */
.thumb-b { display: flex; flex-direction: column; align-items: center; padding-top: 28px; }
.thumb-b .t-line { height: 7px; width: 55%; background: #eef2ff; border-radius: 4px; }
.thumb-b .t-line.s { width: 40%; height: 4px; background: #5d677e; margin: 8px 0 16px; }
.thumb-b .t-cards { display: flex; gap: 8px; }
.thumb-b .t-card {
  width: 70px; height: 88px; border-radius: 8px;
  border: 1px solid rgba(160,190,255,0.22);
  background: rgba(255,255,255,0.04);
}
.thumb-b .t-card.mid {
  transform: translateY(-8px);
  border-color: rgba(62,224,255,0.5);
  box-shadow: 0 0 18px rgba(62,224,255,0.2);
}

/* thumb C: full bleed overlay */
.thumb-c .t-shot {
  position: absolute; inset: 12px; border-radius: 8px;
  background:
    linear-gradient(to top, rgba(7,8,14,0.92) 0%, rgba(7,8,14,0.15) 55%, transparent 100%),
    linear-gradient(90deg, #142036 22%, #e8eef8 22%);
}
.thumb-c .t-copy {
  position: absolute; left: 22px; bottom: 22px; width: 50%;
}
.thumb-c .t-line { height: 7px; background: #fff; border-radius: 4px; width: 80%; margin-bottom: 6px; }
.thumb-c .t-btn { width: 52px; height: 12px; border-radius: 99px; background: var(--cyan); }

.logo-hero-wrap {
  position: relative;
  width: min(500px, 54%);
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.logo-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 12% 18%;
  background: radial-gradient(ellipse at center, rgba(62, 224, 255, 0.26), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.logo-hero-wrap img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  animation: floatLogo 7s ease-in-out infinite;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(62, 224, 255, 0.22));
}
.orbit { display: none; }
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.steps article {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(16px);
}
.steps .n {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(62, 224, 255, 0.12);
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid rgba(62, 224, 255, 0.2);
}
.steps p { color: var(--muted); margin: 8px 0 0; font-size: 0.9rem; }

.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  font-size: 0.84rem;
}
.compare th, .compare td {
  padding: 11px 10px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease;
}
.compare th {
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}
.compare td:first-child, .compare th:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 600;
  min-width: 210px;
}
.compare tbody tr:hover { background: rgba(62, 224, 255, 0.07); }
.compare .yes { color: var(--ok); font-weight: 800; font-size: 1.05rem; }
.compare .no { color: #5a6e88; }
.compare th.hl, .compare td.hl {
  background: rgba(62, 224, 255, 0.12);
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--cyan);
}
.compare th[data-plan="pro"], .compare td[data-plan="pro"] {
  background: rgba(62, 224, 255, 0.05);
}

.promo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border: 1px solid rgba(62, 224, 255, 0.28);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(62, 224, 255, 0.1), rgba(123, 108, 255, 0.08));
}
.promo-strip h2 { font-size: 1.35rem; }
.promo-strip p { margin: 6px 0 0; color: var(--muted); max-width: 62ch; }
.promo-strip .fine { color: var(--faint); font-size: 0.78rem; margin-top: 8px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-2,
.dv-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.hash-alias {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 84px;
}
section[id],
#for, #product, #pricing, #faq, #trial, #order, #porownanie {
  scroll-margin-top: 84px;
}

.trial-box, .sec-box {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(16px);
  max-width: 520px;
  width: 100%;
  justify-self: start;
}
.trial-box.dv-form,
form.dv-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  width: 100%;
}
.trial-box label,
.dv-form label {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.trial-box input,
.trial-box select,
.trial-box textarea,
.dv-form input,
.dv-form select,
.dv-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 11px 12px;
  margin: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trial-box .btn,
.dv-form .btn,
.dv-form button {
  width: auto;
  justify-self: start;
}

@media (prefers-reduced-motion: reduce) {
  .logo-hero-wrap img { animation: none !important; }
}

@media (max-width: 1280px) {
  .price-grid-4,
  .price-grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .price-grid, .price-grid-4, .price-grid-5, .pick-grid, .trust, .steps, .faq-grid, .split-2, .dv-split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row, .foot-grid { grid-template-columns: 1fr; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .logo-hero-wrap { width: min(300px, 78vw); }
}

/* Live site: keep nav on tablet */
@media (max-width: 1100px) {
  .nav-links { display: flex; flex-wrap: wrap; width: 100%; margin-left: 0; }
  .nav-inner { flex-wrap: wrap; }
}

/* WP aliases */
.dv-kicker { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin: 0 0 12px; }
.dv-muted { color: var(--muted); }
.dv-section { position: relative; z-index: 1; padding: 72px 0; }
.dv-section > .dv-kicker, .dv-section > h1, .dv-section > h2, .dv-section > .dv-muted, .dv-page-intro { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.dv-button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 20px; font-weight: 600; text-decoration: none; }
.dv-button.primary, .dv-form button { background: linear-gradient(180deg, #5af0ff, #2cc8e8); color: #041018; border: 0; width: auto; justify-self: start; }
.dv-button.secondary { background: rgba(255,255,255,.03); border: 1px solid var(--line-strong); color: var(--text); }
.dv-form { display: grid; gap: 12px; max-width: 520px; width: 100%; }
.dv-form label { display: grid; gap: 6px; }
.dv-alert { width: min(var(--max), calc(100% - 48px)); margin: 24px auto; padding: 16px 18px; border-radius: 16px; background: rgba(62,224,168,.12); border: 1px solid rgba(62,224,168,.3); }
.dv-alert-err { background: rgba(255,120,100,.12); border-color: rgba(255,120,100,.35); }
.dv-tr-hero h1 { max-width: 18ch; }
.dv-compare { width: 100%; border-collapse: collapse; min-width: 780px; font-size: 0.84rem; }
.dv-compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.03); }
.dv-compare th, .dv-compare td { padding: 11px 10px; text-align: center; border-bottom: 1px solid var(--line); color: var(--muted); }
.dv-compare td:first-child, .dv-compare th:first-child { text-align: left; color: var(--text); font-weight: 600; }
.dv-yes { color: var(--ok); font-weight: 800; }
.dv-no { color: #5d677e; }
.dv-security-card { width: 100%; max-width: 720px; }
.dv-security-card p { color: var(--muted); }
.dv-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.dv-entry { width: min(var(--max), calc(100% - 48px)); margin: 40px auto 80px; }
.dv-entry h1 { margin-bottom: 18px; }
.dv-grid.pricing { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.dv-grid.pricing article { background: var(--glass); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.dv-grid.pricing article.featured { border-color: rgba(62,224,255,.45); }
.dv-price { font-family: var(--mono); font-size: 1.7rem; }
.hero.hero-live { padding-top: 28px; }
@media (max-width: 1100px) { .dv-grid.pricing { grid-template-columns: 1fr; } }
