﻿/* NanoHost — Soft Aurora Commerce (menus preserved) */

:root,
html[data-theme="light"] {
  --blue: #2563eb;
  --blue-soft: #3b82f6;
  --accent: #60a5fa;
  --sky: #60a5fa;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(37, 99, 235, 0.1);
  --panel: #ffffff;
  --bg: #f8fafc;
  --bg-2: #eef2f7;
  --fill: #2563eb;
  --fill-text: #fff;
  --shadow: 0 14px 40px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 24px 56px rgba(37, 99, 235, 0.14);
  --radius: 1.4rem;
  --radius-sm: 1rem;
  --space-section: 4.5rem;
  --bg-op: 0.18;
  color-scheme: light;
}

html[data-theme="dark"] {
  --blue: #60a5fa;
  --blue-soft: #3b82f6;
  --accent: #60a5fa;
  --sky: #60a5fa;
  --ink: #f1f5f9;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.14);
  --panel: #0b1220;
  --bg: #050816;
  --bg-2: #0a1020;
  --fill: #3b82f6;
  --fill-text: #fff;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.5);
  --bg-op: 0.26;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 85% 8%, rgba(37, 99, 235, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(96, 165, 250, 0.12), transparent 50%),
    var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
dl,
blockquote,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.container.slim {
  width: min(760px, calc(100% - 2rem));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-fill {
  background: linear-gradient(135deg, #60a5fa, #2563eb 48%, #1d4ed8);
  background-size: 160% 160%;
  color: var(--fill-text);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-fill:hover {
  background-position: 100% 0;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.14),
    0 16px 36px rgba(37, 99, 235, 0.4);
  filter: brightness(1.05);
}

.btn-line {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .btn-line {
  background: rgba(17, 24, 39, 0.85);
  color: var(--ink);
  border-color: rgba(148, 163, 184, 0.28);
}

.btn-line:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), var(--shadow);
}

.btn-lg {
  min-height: 3.25rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

.text-btn {
  color: #475569;
  font-weight: 600;
  font-size: 0.88rem;
}

.icon-btn {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #334155;
  display: grid;
  place-items: center;
  background: var(--panel);
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #1e3a8a, #2563eb 50%, #0284c7);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 500;
}

.topbar-inner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

/* ========== NAV (premium) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: none;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.header-inner,
.nav,
.nav-link,
.nav-trigger {
  transition: height 0.28s ease, min-height 0.28s ease;
}

.site-header.is-scrolled,
.site-header.is-compact {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.site-header.is-compact .header-inner,
.site-header.is-compact .nav,
.site-header.is-compact .nav-link,
.site-header.is-compact .nav-trigger {
  height: 3.25rem;
  min-height: 3.25rem;
}

.site-header.is-compact .logo-img {
  width: 1.85rem;
  height: 1.85rem;
}

.site-header.is-compact .logo small {
  display: none;
}

html[data-theme="dark"] .site-header {
  background: rgba(7, 11, 20, 0.72);
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .site-header.is-scrolled,
html[data-theme="dark"] .site-header.is-compact {
  background: rgba(7, 11, 20, 0.82);
  border-bottom-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.logo-img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.35rem;
  transition: width 0.28s ease, height 0.28s ease;
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #60a5fa, #2563eb 55%, #0284c7);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.logo strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: stretch;
  gap: 0.05rem;
  height: 3.75rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  height: 3.75rem;
  padding: 0 0.58rem;
  border: 0;
  background: none;
  color: #334155;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, height 0.28s ease, min-height 0.28s ease;
}

html[data-theme="dark"] .nav-link,
html[data-theme="dark"] .nav-trigger {
  color: #cbd5e1;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-item.is-open > .nav-trigger {
  color: var(--blue);
}

.nav-trigger:hover,
.nav-item.is-open > .nav-trigger {
  background: rgba(37, 99, 235, 0.05);
  border-radius: 0.55rem;
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-item.is-open > .nav-trigger::after,
.nav-link:hover::after,
.nav-trigger:hover::after {
  transform: scaleX(1);
}

.caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.45;
  transition: transform 0.2s ease;
}

.nav-item.is-open .caret {
  transform: rotate(180deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 0;
  translate: 0 0;
  min-width: 280px;
  width: max(280px, 100%);
  padding: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.22s;
  z-index: 50;
}

.menu-panel-cards {
  min-width: 300px;
  max-width: 340px;
}

.menu-panel-sm {
  min-width: 280px;
}

html[data-theme="dark"] .menu-panel {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.nav-item.is-open > .menu-panel,
.nav-item:hover > .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item:nth-last-child(-n+3) .menu-panel {
  left: auto;
  right: 0;
}

.menu-heading {
  margin: 0 0 0.55rem;
  padding: 0 0.35rem;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-cards {
  display: grid;
  gap: 0.2rem;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.75rem;
  color: #0f172a;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

html[data-theme="dark"] .menu-card {
  color: #e2e8f0;
}

.menu-card:hover {
  background: rgba(37, 99, 235, 0.07);
  transform: translateX(2px);
}

html[data-theme="dark"] .menu-card:hover {
  background: rgba(96, 165, 250, 0.1);
}

.menu-ico {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.08));
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.menu-ico svg {
  width: 1.05rem;
  height: 1.05rem;
}

html[data-theme="dark"] .menu-ico {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.18);
  color: #93c5fd;
}

.menu-card-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.menu-card-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.menu-card-text span {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
}

html[data-theme="dark"] .menu-card-text span {
  color: #94a3b8;
}

.menu-footer-link {
  display: inline-flex;
  margin-top: 0.45rem;
  padding: 0.45rem 0.35rem 0.15rem;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-footer-link:hover {
  color: #1d4ed8;
}

html[data-theme="dark"] .menu-footer-link {
  color: #93c5fd;
}

/* legacy mega menu leftovers (safe) */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.menu-label {
  margin: 0 0 0.55rem;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-col a {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  color: #0f172a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

html[data-theme="dark"] .header-actions .text-btn,
html[data-theme="dark"] .header-actions .icon-btn {
  color: #cbd5e1;
}

html[data-theme="dark"] .header-actions .icon-btn {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(17, 24, 39, 0.7);
}

.header-actions .text-btn,
.header-actions .btn-line,
.header-actions .btn-fill,
.header-actions .btn-panel {
  display: none;
}

.theme-toggle {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.theme-icon-sun {
  opacity: 0;
  transform: scale(0.7) rotate(-20deg);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  transform: scale(0.7) rotate(20deg);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
  transform: none;
}

.btn.btn-panel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.95rem;
  border: 0;
  border-radius: 0.7rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
  box-shadow:
    0 8px 18px rgba(37, 99, 235, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.btn.btn-panel:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.42),
    0 0 24px rgba(59, 130, 246, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  filter: brightness(1.04);
}

.btn-panel-ico {
  width: 0.95rem;
  height: 0.95rem;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle-bars {
  position: relative;
  margin: 0 auto;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  max-height: min(78vh, 680px);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: mobileNavIn 0.24s ease;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

html[data-theme="dark"] .mobile-nav {
  background: rgba(11, 18, 32, 0.96);
  border-top-color: rgba(148, 163, 184, 0.12);
}

.mobile-nav-scroll {
  display: grid;
  gap: 0.05rem;
  padding: 0.35rem 1rem 0.75rem;
  overflow: auto;
}

.mobile-nav a {
  color: #334155;
  padding: 0.65rem 0.2rem;
  font-weight: 600;
}

html[data-theme="dark"] .mobile-nav a {
  color: #cbd5e1;
}

.m-link {
  display: block;
  padding: 0.85rem 0.2rem !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: 0.25rem;
  font-weight: 700 !important;
  color: var(--ink) !important;
}

html[data-theme="dark"] .m-link {
  border-top-color: rgba(148, 163, 184, 0.12);
}

.m-acc {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 0.15rem;
}

html[data-theme="dark"] .m-acc {
  border-bottom-color: rgba(148, 163, 184, 0.1);
}

.m-acc summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0.2rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.m-acc summary::-webkit-details-marker {
  display: none;
}

.m-acc summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.45;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.m-acc[open] summary::after {
  transform: rotate(45deg);
  opacity: 0.7;
}

.m-acc a {
  display: block;
  padding: 0.55rem 0.55rem 0.55rem 0.85rem;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.55rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.m-acc a:hover {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.mobile-nav-cta {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 1rem 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.7), rgba(255, 255, 255, 0.95));
}

html[data-theme="dark"] .mobile-nav-cta {
  border-top-color: rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(11, 18, 32, 0.95));
}

.mobile-nav-cta .btn,
.mobile-nav-cta .btn-panel {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}

.mobile-nav[hidden] {
  display: none;
}

.nav a[aria-current="page"] {
  color: var(--blue);
}

/* ========== HERO (premium) ========== */
.page-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.mesh-1 {
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  top: -14%;
  right: 8%;
  background: rgba(37, 99, 235, 0.16);
}

.mesh-2 {
  width: 32vw;
  height: 32vw;
  max-width: 380px;
  max-height: 380px;
  bottom: 8%;
  left: -6%;
  background: rgba(96, 165, 250, 0.12);
}

.mesh-3 {
  width: 28vw;
  height: 28vw;
  max-width: 360px;
  max-height: 360px;
  top: 40%;
  left: 40%;
  background: rgba(59, 130, 246, 0.16);
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 72% 62% at 55% 30%, #000 10%, transparent 72%);
  opacity: 0.85;
}

.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.blur-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  animation: glowPulse 8s ease-in-out infinite;
}

.bl-1 {
  width: 180px;
  height: 180px;
  top: 12%;
  left: 18%;
  background: rgba(96, 165, 250, 0.45);
}

.bl-2 {
  width: 220px;
  height: 220px;
  top: 55%;
  right: 18%;
  background: rgba(37, 99, 235, 0.35);
  animation-delay: 1.5s;
}

.bl-3 {
  width: 140px;
  height: 140px;
  bottom: 10%;
  left: 48%;
  background: rgba(59, 130, 246, 0.4);
  animation-delay: 3s;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.hero {
  position: relative;
  padding: 3.25rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 62%, var(--bg) 100%);
}

.hero-xl .hero-copy h1 {
  font-size: clamp(2.55rem, 5.4vw, 4.2rem);
  max-width: 14ch;
}

.hero-xl .lead {
  font-size: 1.1rem;
  margin-top: 1.2rem;
}

html[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0b1220 0%, var(--bg) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.55rem, 5.8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 14ch;
}

.hero-copy h1 .brand {
  display: block;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}

.lead {
  margin-top: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.85rem;
}

.glass-stat {
  position: relative;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
  --mx: 50%;
  --my: 0%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

html[data-theme="dark"] .glass-stat {
  background: rgba(17, 24, 39, 0.72);
}

.glass-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glass-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.35);
}

.glass-stat:hover::before {
  opacity: 1;
}

.stat-strip dt {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-strip dd {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Legacy photo media kept for other pages */
.hero-media {
  position: relative;
  margin: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow:
    0 30px 70px rgba(37, 99, 235, 0.22),
    0 0 0 1px rgba(96, 165, 250, 0.08);
  min-height: 420px;
  background: #0b1220;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.02);
}

/* ========== Hosting dashboard mockup ========== */
.dash-panel {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(15, 23, 42, 0.96), rgba(8, 15, 30, 0.98));
  box-shadow:
    0 36px 80px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-height: 460px;
  transform: translateZ(0);
}

.dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.dash-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.dash-dots i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #475569;
  display: block;
}

.dash-dots i:nth-child(1) { background: #f87171; }
.dash-dots i:nth-child(2) { background: #fbbf24; }
.dash-dots i:nth-child(3) { background: #34d399; }

.dash-url {
  flex: 1;
  min-width: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.dash-body {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  min-height: 400px;
}

.dash-side {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 1rem 0.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.dash-brand {
  margin: 0 0 0.65rem;
  padding: 0 0.35rem;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dash-side span {
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
}

.dash-side span.is-active {
  background: rgba(37, 99, 235, 0.22);
  color: #dbeafe;
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.2);
}

.dash-main {
  padding: 1rem 1.05rem 1.15rem;
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.dash-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.dash-kicker {
  margin: 0;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-title {
  margin: 0.2rem 0 0;
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dash-badge {
  padding: 0.4rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: rgba(16, 185, 129, 0.12);
  color: #a7f3d0;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.dash-badge strong {
  color: #ecfdf5;
  font-weight: 800;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.dash-metric {
  padding: 0.7rem 0.45rem 0.65rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}

.dash-metric:hover {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.dash-metric p {
  margin: 0.5rem 0 0;
  color: #94a3b8;
  font-size: 0.65rem;
  font-weight: 600;
}

.dash-ring {
  --p: 50;
  width: 3.35rem;
  height: 3.35rem;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(closest-side, #0b1220 78%, transparent 79% 100%),
    conic-gradient(#3b82f6 calc(var(--p) * 1%), rgba(148, 163, 184, 0.18) 0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dash-ring-net {
  background:
    radial-gradient(closest-side, #0b1220 78%, transparent 79% 100%),
    conic-gradient(#60a5fa calc(var(--p) * 1%), rgba(148, 163, 184, 0.18) 0);
}

.dash-ring span {
  color: #f1f5f9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dash-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dash-chips span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 0.68rem;
  font-weight: 600;
}

.dash-rows {
  display: grid;
  gap: 0.4rem;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.dash-row:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(96, 165, 250, 0.2);
}

.dash-row span {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
}

.dash-row strong {
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
}

.dash-row strong.ok {
  color: #34d399;
}

.float-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #0f172a;
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 700;
  animation: floatY 7s ease-in-out infinite;
  pointer-events: auto;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  will-change: transform;
}

html[data-theme="dark"] .float-card {
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 36px rgba(2, 6, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.float-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.float-card span {
  color: #16a34a;
  font-size: 0.85rem;
}

html[data-theme="dark"] .float-card span {
  color: #4ade80;
}

.fc-1 { top: 6%; left: -2%; animation-delay: 0s; }
.fc-2 { top: 14%; right: -3%; animation-delay: 0.4s; }
.fc-3 { top: 42%; left: -5%; animation-delay: 0.8s; }
.fc-4 { top: 52%; right: -4%; animation-delay: 1.1s; }
.fc-5 { bottom: 16%; left: 2%; animation-delay: 0.2s; }
.fc-6 { bottom: 8%; right: 2%; animation-delay: 0.9s; }
.fc-7 { bottom: 8%; left: 18%; animation-delay: 1.3s; }
.fc-8 { top: 62%; left: 28%; animation-delay: 0.6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero entrance motion */
.hero-copy-enter {
  opacity: 0;
  transform: translateX(-28px);
  animation: heroInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.hero-stage-enter {
  opacity: 0;
  transform: translateX(32px);
  animation: heroInRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero-stage-enter .float-card {
  opacity: 0;
  animation:
    floatCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    floatY 7s ease-in-out infinite;
}

.hero-stage-enter .fc-1 { animation-delay: 0.35s, 0s; }
.hero-stage-enter .fc-2 { animation-delay: 0.42s, 0.4s; }
.hero-stage-enter .fc-3 { animation-delay: 0.5s, 0.8s; }
.hero-stage-enter .fc-4 { animation-delay: 0.58s, 1.1s; }
.hero-stage-enter .fc-5 { animation-delay: 0.66s, 0.2s; }
.hero-stage-enter .fc-6 { animation-delay: 0.74s, 0.9s; }

@keyframes heroInLeft {
  to { opacity: 1; transform: none; }
}

@keyframes heroInRight {
  to { opacity: 1; transform: none; }
}

@keyframes floatCardIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.btn-cta-primary {
  box-shadow:
    0 14px 32px rgba(37, 99, 235, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn-cta-primary:hover {
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.45),
    0 0 28px rgba(59, 130, 246, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.hero-status.live {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy-enter,
  .hero-stage-enter,
  .hero-stage-enter .float-card,
  .float-card,
  .blur-light {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Buy rail */
.buy-rail {
  position: sticky;
  top: 4.35rem;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: top 0.3s ease;
}

.site-header.is-compact ~ main .buy-rail,
body:has(.site-header.is-compact) .buy-rail {
  top: 3.55rem;
}

html[data-theme="dark"] .buy-rail {
  background: rgba(15, 23, 42, 0.92);
}

.buy-rail-inner {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  scrollbar-width: none;
}

.buy-rail-inner::-webkit-scrollbar {
  display: none;
}

.buy-rail a {
  flex: 0 0 auto;
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.78rem;
  box-shadow: var(--shadow);
}

.buy-rail a span {
  color: var(--muted);
}

.buy-rail .rail-cta {
  background: var(--fill);
  color: #fff;
  border-color: transparent;
  align-content: center;
  font-weight: 800;
}

/* Blocks */
.block,
.final-cta,
.site-footer,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.75rem 0;
}

.block + .block {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.18), transparent) 1;
}

.block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.35), transparent);
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}

/* Reveal motion */
.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 1ms);
}

.reveal.is-in,
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.block-dense {
  padding: 2.4rem 0;
}

.block-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--bg-op);
  filter: saturate(1.15);
}

.block-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg) 72%, transparent),
    color-mix(in srgb, var(--bg) 45%, transparent) 50%,
    color-mix(in srgb, var(--bg) 78%, transparent)
  );
}

.block > .container,
.final-cta > .container,
.site-footer > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.block-head {
  margin-bottom: 1.4rem;
}

.block-head.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.block-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
  font-weight: 800;
}

.block-head p {
  margin-top: 0.35rem;
  color: var(--muted);
}

/* Offers → card grid */
.offer-list {
  display: grid;
  gap: 1rem;
}

.offer {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(96, 165, 250, 0.15), rgba(37, 99, 235, 0.35)) border-box;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  --mx: 50%;
  --my: 0%;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(37, 99, 235, 0.16);
}

.offer:hover::before {
  opacity: 1;
}

.offer img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.offer > div:not(.offer-actions) {
  padding: 1rem 1.1rem 0.35rem;
  position: relative;
  z-index: 2;
}

.offer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem 1.15rem;
  position: relative;
  z-index: 2;
}

.offer h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.offer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.offer .from {
  margin-top: 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.offer .from b {
  color: var(--blue);
  font-size: 1.25rem;
}

/* Specs / plans / etc */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.spec-grid article {
  position: relative;
  padding: 1.15rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(96, 165, 250, 0.12), rgba(37, 99, 235, 0.25)) border-box;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

html[data-theme="dark"] .spec-grid article {
  background:
    linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.85)) padding-box,
    linear-gradient(135deg, rgba(96, 165, 250, 0.4), rgba(37, 99, 235, 0.15), rgba(96, 165, 250, 0.3)) border-box;
}

.spec-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

.spec-grid b {
  display: block;
  color: var(--blue);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.spec-grid span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.dc {
  display: grid;
  gap: 1.1rem;
}

.dc-shot,
.mini-map {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dc-shot img,
.mini-map img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.dc-side h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.dc-side > p {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.locs {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.locs li {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.locs strong {
  display: block;
}

.mini-map {
  margin-bottom: 1rem;
  min-height: 160px;
}

.plan-table {
  display: grid;
  gap: 0.9rem;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(37, 99, 235, 0.4), rgba(96, 165, 250, 0.12), rgba(37, 99, 235, 0.28)) border-box;
  box-shadow: var(--shadow);
  overflow: hidden;
  --mx: 50%;
  --my: 0%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.15);
}

.plan:hover::before {
  opacity: 1;
}

.plan.hot {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.1), transparent 42%),
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(37, 99, 235, 0.75), rgba(96, 165, 250, 0.35), rgba(37, 99, 235, 0.55)) border-box;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.16);
}

.plan.metal {
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.1), transparent 40%),
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(14, 165, 233, 0.45), rgba(96, 165, 250, 0.15), rgba(37, 99, 235, 0.35)) border-box;
}

.ribbon {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan h3 {
  font-size: 1.15rem;
}

.price {
  margin: 0.45rem 0 0.95rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.plan ul {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan ul li::before {
  content: "✓ ";
  color: var(--blue);
  font-weight: 800;
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

.quotes {
  display: grid;
  gap: 0.8rem;
}

.quotes blockquote {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(96, 165, 250, 0.12), rgba(37, 99, 235, 0.28)) border-box;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

html[data-theme="dark"] .quotes blockquote {
  background:
    linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.85)) padding-box,
    linear-gradient(135deg, rgba(96, 165, 250, 0.4), rgba(37, 99, 235, 0.15), rgba(96, 165, 250, 0.3)) border-box;
}

.quotes blockquote:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.12);
}

.quotes p {
  font-weight: 600;
  letter-spacing: -0.015em;
}

.quotes footer {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq {
  display: grid;
  gap: 0.55rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 0.15rem 1rem;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 0;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  padding: 0 0 0.95rem;
  color: var(--muted);
}

.final-cta {
  padding: 3.5rem 0;
}

.final-inner {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.18), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(96, 165, 250, 0.2), rgba(37, 99, 235, 0.4)) border-box;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 55px rgba(37, 99, 235, 0.12);
}

html[data-theme="dark"] .final-inner {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), transparent 55%),
    linear-gradient(rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.92)) padding-box,
    linear-gradient(135deg, rgba(96, 165, 250, 0.55), rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.4)) border-box;
}

.final-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
}

.final-inner p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.final-inner .hero-actions {
  justify-content: center;
}

.site-footer {
  padding-top: 2.6rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-grid p {
  margin-top: 0.55rem;
  color: var(--muted);
  max-width: 22rem;
}

.footer-grid h4 {
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-grid a {
  display: block;
  padding: 0.2rem 0;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

/* Inner pages */
.page-hero {
  padding: 3.4rem 0 2.8rem;
  background: linear-gradient(120deg, #0b1220, #1e3a8a 55%, #0369a1);
  color: #f8fafc;
}

.page-hero .block-bg img {
  opacity: 0.28;
}

.page-hero .block-bg::after {
  background: linear-gradient(100deg, rgba(11, 18, 32, 0.75), rgba(30, 58, 138, 0.45));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero .kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #bfdbfe;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 16ch;
}

.page-hero .lead {
  color: #cbd5e1;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.page-cta-row.left {
  justify-content: flex-start;
}

.domain-search {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
  max-width: 560px;
}

.domain-search input {
  min-height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  padding: 0 1.1rem;
  font: inherit;
}

.domain-search input::placeholder {
  color: #94a3b8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.about-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-card p,
.about-card a {
  color: var(--muted);
}

.about-card a:hover {
  color: var(--blue);
}

.contact-form {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

.form-note {
  color: #059669;
  font-weight: 600;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
}

/* Responsive */
@media (min-width: 760px) {
  .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .domain-search {
    grid-template-columns: 1fr auto;
  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .header-actions .text-btn,
  .header-actions .btn-line,
  .header-actions .btn-fill,
  .header-actions .btn-panel {
    display: inline-flex;
  }

  .hero-shell {
    grid-template-columns: 1.02fr 1.08fr;
    gap: 2.75rem;
  }

  .hero-stage,
  .hero-media,
  .hero-media img {
    min-height: 540px;
  }

  .hero-xl .hero-stage,
  .hero-xl .dash-panel {
    min-height: 500px;
  }

  .hero-xl .hero-media,
  .hero-xl .hero-media img {
    min-height: 600px;
  }

  .offer-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dc {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.4rem;
    align-items: stretch;
  }

  .plan-table,
  .plan-table.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-table:not(.three) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .plan.hot {
    transform: translateY(-6px);
  }

  .plan.hot:hover {
    transform: translateY(-10px);
  }
}

@media (min-width: 1400px) {
  .container {
    width: min(1280px, calc(100% - 3rem));
  }

  .hero-stage,
  .hero-media,
  .hero-media img {
    min-height: 560px;
  }
}

@media (max-width: 979px) {
  .fc-3,
  .fc-4,
  .fc-7,
  .fc-8 {
    display: none;
  }

  .float-card {
    font-size: 0.72rem;
    padding: 0.45rem 0.65rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-stage {
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .fc-5,
  .fc-6 {
    display: none;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ========== DEMO V2 layouts ========== */
.hero-xl {
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.09;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.08);
}

.stats-premium {
  gap: 0.85rem;
}

.stats-premium .glass-stat {
  padding: 1.15rem 1.1rem;
  border-radius: 1.15rem;
}

.stats-premium dt {
  font-size: 1.65rem;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sec-label.light {
  color: #93c5fd;
}

.split-row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.split-media {
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.14);
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.split-media.tall,
.split-media.tall img {
  min-height: 380px;
}

.split-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.split-copy > p {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.check-list li {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓ ";
  color: var(--blue);
  font-weight: 800;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.mini-stats div {
  padding: 0.95rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .mini-stats div {
  background: rgba(11, 18, 32, 0.75);
}

.mini-stats strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.vps-board {
  display: grid;
  gap: 0.75rem;
}

.vps-row {
  display: grid;
  gap: 0.85rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(96, 165, 250, 0.12), rgba(37, 99, 235, 0.3)) border-box;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  --mx: 50%;
  --my: 0%;
  position: relative;
  overflow: hidden;
}

.vps-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vps-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.14);
}

.vps-row:hover::before {
  opacity: 1;
}

.vps-row.hot {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.08), transparent 40%),
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.7), rgba(96, 165, 250, 0.3), rgba(37, 99, 235, 0.5)) border-box;
}

.vps-row h3 {
  font-size: 1.15rem;
}

.vps-row > div span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.vps-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.vps-row .price {
  margin: 0;
  font-size: 1.55rem;
}

.vps-row .btn {
  justify-self: start;
}

.sec-bleed {
  padding-top: 0;
}

.bleed-visual {
  position: relative;
  min-height: 360px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.bleed-visual > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.bleed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0.15), rgba(5, 8, 22, 0.78));
  color: #f8fafc;
}

.bleed-overlay h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.bleed-overlay p {
  margin-top: 0.55rem;
  color: rgba(248, 250, 252, 0.78);
  max-width: 36rem;
}

.sec-game {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), transparent 40%);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}

.game-card {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(96, 165, 250, 0.15), rgba(37, 99, 235, 0.35)) border-box;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  --mx: 50%;
  --my: 0%;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.16);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-card > div {
  position: relative;
  z-index: 2;
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.game-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.game-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.game-card .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

@media (min-width: 980px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-card:first-child {
    grid-column: span 1;
  }

  .game-card img {
    height: 190px;
  }
}

.game-plan {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.12), transparent 45%),
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(37, 99, 235, 0.45), rgba(96, 165, 250, 0.15), rgba(37, 99, 235, 0.35)) border-box;
}

.sec-domain {
  padding: 0;
}

.domain-band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.domain-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.1);
  transform: scale(1.04);
}

.domain-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 8, 22, 0.82), rgba(37, 99, 235, 0.55));
}

.domain-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  color: #f8fafc;
  text-align: center;
}

.domain-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.domain-inner > p {
  margin: 0.55rem auto 1.4rem;
  color: rgba(248, 250, 252, 0.78);
  max-width: 34rem;
}

.domain-search {
  display: grid;
  gap: 0.65rem;
  width: min(640px, 100%);
  margin: 0 auto 1.2rem;
}

.domain-search input {
  min-height: 3.2rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  backdrop-filter: blur(10px);
}

.domain-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.tld-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.tld-row span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

.ssl-tiers {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.ssl-tier {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(96, 165, 250, 0.15)) border-box;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ssl-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.14);
}

.ssl-tier span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.backup-grid {
  display: grid;
  gap: 1rem;
}

.backup-card {
  display: grid;
  gap: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.backup-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.backup-card > div {
  padding: 1.25rem 1.3rem 1.4rem;
}

.backup-card h3 {
  margin-bottom: 0.4rem;
}

.backup-card p {
  color: var(--muted);
}

.backup-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.backup-metrics article {
  padding: 1.2rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(96, 165, 250, 0.12)) border-box;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

html[data-theme="dark"] .backup-metrics article {
  background:
    linear-gradient(rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.9)) padding-box,
    linear-gradient(135deg, rgba(96, 165, 250, 0.4), rgba(37, 99, 235, 0.15)) border-box;
}

.backup-metrics article:hover {
  transform: translateY(-3px);
}

.backup-metrics b {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.backup-metrics span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.footer-xl {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.footer-top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  margin-top: 0.85rem;
  color: var(--muted);
  max-width: 28rem;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-contact a:hover {
  color: var(--blue);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.socials a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--blue);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (min-width: 760px) {
  .domain-search {
    grid-template-columns: 1fr auto;
  }

  .backup-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .vps-row {
    grid-template-columns: 1fr 1.4fr auto auto;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .hero-xl .hero-shell {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 3rem;
  }

  .hero-xl .hero-stage,
  .hero-xl .dash-panel {
    min-height: 520px;
  }

  .hero-xl .hero-media,
  .hero-xl .hero-media img {
    min-height: 580px;
  }

  .split-row {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .split-row.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split-row.reverse .split-media {
    order: 2;
  }

  .split-row.reverse .split-copy {
    order: 1;
  }

  .split-media,
  .split-media img {
    min-height: 360px;
  }
}

@media (max-width: 759px) {
  .hero-xl {
    min-height: auto;
    padding: 2.5rem 0 2rem;
  }

  .bleed-visual,
  .bleed-visual > img {
    min-height: 280px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}

/* ========== CLEAN PREMIUM REVAMP ========== */
.block-bg,
.site-footer > .block-bg,
.final-cta > .block-bg,
.hero-bg-photo {
  display: none !important;
}

.block::before {
  display: none;
}

.block,
.final-cta {
  border-top: 0 !important;
  border-image: none !important;
  padding: 4rem 0;
}

.tone-white {
  background: #ffffff;
}

.tone-soft {
  background:
    linear-gradient(180deg, #f1f5ff 0%, #f8fafc 100%),
    #f8fafc;
  position: relative;
}

.tone-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.tone-soft > .container {
  position: relative;
  z-index: 1;
}

.tone-cta {
  background: linear-gradient(180deg, #eff6ff, #f8fafc);
}

.tone-footer {
  background: #0b1220;
  color: #e2e8f0;
}

html[data-theme="light"] .tone-footer {
  background: #0b1220;
}

.tone-footer a,
.tone-footer p,
.tone-footer span,
.tone-footer h4 {
  color: inherit;
}

.tone-footer .footer-brand p,
.tone-footer .footer-contact span {
  color: #94a3b8;
}

.tone-footer .socials a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.hero {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 70%, #ffffff 100%) !important;
}

.hero-xl {
  min-height: auto;
  padding: 4.5rem 0 3.5rem;
}

.hero-xl .hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  max-width: 12ch;
  line-height: 1.05;
}

.hero-xl .lead {
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 34rem;
}

.block-head h2,
.split-copy h2,
.domain-panel h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.block-head p,
.split-copy > p,
.domain-panel > p {
  line-height: 1.65;
}

.offer-lg .offer img {
  height: 200px;
}

.offer-lg .offer > div:not(.offer-actions) {
  padding: 1.25rem 1.25rem 0.4rem;
}

.offer-lg .offer-actions {
  padding: 0.9rem 1.25rem 1.3rem;
  grid-template-columns: 1fr;
}

.plan-lg .plan {
  padding: 1.6rem 1.45rem;
  min-height: 100%;
}

.plan-lg .price {
  font-size: 2.15rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.metrics-row article {
  padding: 1.35rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.metrics-row article:hover {
  transform: translateY(-3px);
}

.metrics-row b {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--blue);
}

.metrics-row span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.vps-cards {
  display: grid;
  gap: 1rem;
}

.vps-card {
  position: relative;
  padding: 1.6rem 1.45rem;
  border-radius: 1.3rem;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(37, 99, 235, 0.45), rgba(96, 165, 250, 0.15), rgba(37, 99, 235, 0.35)) border-box;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  --mx: 50%;
  --my: 0%;
  overflow: hidden;
}

html[data-theme="dark"] .vps-card {
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(145deg, rgba(96, 165, 250, 0.45), rgba(37, 99, 235, 0.15)) border-box;
}

.vps-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(59, 130, 246, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.14);
}

.vps-card:hover::before {
  opacity: 1;
}

.vps-card.hot {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), transparent 40%),
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(37, 99, 235, 0.75), rgba(96, 165, 250, 0.3), rgba(37, 99, 235, 0.55)) border-box;
}

.vps-card .price {
  margin: 0.35rem 0 0;
  font-size: 2.1rem;
}

.spec-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.spec-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.92rem;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 600;
}

.spec-list dd {
  margin: 0;
  font-weight: 700;
}

.vps-card .btn {
  margin-top: auto;
  width: 100%;
}

.game-lg .game-card img {
  height: 200px;
}

.game-lg {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.domain-panel {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1), transparent 55%),
    #fff;
  box-shadow: var(--shadow);
}

.domain-lg {
  width: min(720px, 100%);
  margin: 1.4rem auto 1.1rem;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.domain-lg input {
  min-height: 3.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: #f8fafc;
  color: var(--ink);
  padding: 0 1.2rem;
  font-size: 1.05rem;
}

.tld-row.muted span {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--ink);
}

.ssl-grid {
  display: grid;
  gap: 1rem;
}

.ssl-card {
  display: grid;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ssl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.12);
}

.ssl-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ssl-card > div {
  padding: 1.2rem 1.25rem 1.35rem;
  display: grid;
  gap: 0.45rem;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.map-node {
  padding: 1.2rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-node strong {
  display: block;
  font-size: 1.1rem;
}

.map-node span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.map-node.live {
  border-color: rgba(37, 99, 235, 0.28);
}

.map-node.soon {
  opacity: 0.72;
  background: #f8fafc;
}

.map-node.soon span::before {
  content: "● ";
  color: #94a3b8;
}

.map-node.live span::before {
  content: "● ";
  color: #22c55e;
}

.dc-banner {
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: var(--shadow);
}

.dc-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.dc-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.dc-locations article {
  padding: 1.1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.dc-locations strong {
  display: block;
  margin-bottom: 0.2rem;
}

.dc-locations span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

@media (min-width: 760px) {
  .dc-locations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

html[data-theme="dark"] .dc-locations article {
  background: var(--panel);
}

.quotes-premium blockquote {
  padding: 1.4rem;
}

.quote-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.quote-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
}

.quote-top strong {
  display: block;
  font-size: 0.95rem;
}

.quote-top span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.quote-top em {
  font-style: normal;
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.faq-modern details {
  border-radius: 1rem;
  background: #fff;
  padding: 0.15rem 0.35rem;
  box-shadow: var(--shadow);
}

.faq-modern summary {
  padding: 1rem 0.85rem;
  font-weight: 700;
}

.faq-modern p {
  padding: 0 0.85rem 1rem;
}

.final-inner {
  border: 1px solid rgba(37, 99, 235, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    #fff;
}

.fc-7,
.fc-8 {
  display: none;
}

@media (min-width: 760px) {
  .metrics-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vps-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .domain-lg {
    grid-template-columns: 1fr auto;
  }

  .ssl-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .game-lg {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-lg .game-card:nth-child(7) {
    grid-column: span 1;
  }

  .offer-lg {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-xl .hero-stage,
  .hero-xl .dash-panel {
    min-height: 500px;
  }

  .hero-xl .hero-media,
  .hero-xl .hero-media img {
    min-height: 560px;
  }
}

html[data-theme="dark"] .tone-white,
html[data-theme="dark"] .domain-panel,
html[data-theme="dark"] .ssl-card,
html[data-theme="dark"] .map-node,
html[data-theme="dark"] .faq-modern details,
html[data-theme="dark"] .final-inner,
html[data-theme="dark"] .metrics-row article {
  background: var(--panel);
}

html[data-theme="dark"] .tone-soft {
  background: linear-gradient(180deg, #0a1224 0%, #050816 100%);
}

html[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0a1224 0%, #050816 80%) !important;
}

.page-hero.tone-soft {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 100%);
  padding: 4rem 0 3rem;
  color: var(--ink);
}

.page-hero.tone-soft .kicker {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.page-hero.tone-soft .lead {
  color: var(--muted);
}

.page-hero.tone-soft h1 {
  color: var(--ink);
}

.page-hero.tone-soft .btn-line {
  color: var(--ink);
  background: #fff;
  border-color: rgba(37, 99, 235, 0.18);
}

.page-hero:not(.tone-soft) .btn-line {
  color: #0f172a;
  background: #fff;
  border-color: transparent;
}

.page-hero-inner h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 16ch;
  color: inherit;
}

.page-hero-inner .lead {
  margin-top: 0.85rem;
  max-width: 36rem;
}

.plan-table.spaced {
  margin-top: 2rem;
}

html[data-theme="dark"] .page-hero.tone-soft {
  background: linear-gradient(180deg, #0a1224 0%, #050816 100%);
  color: var(--ink);
}

html[data-theme="dark"] .page-hero.tone-soft .kicker {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

html[data-theme="dark"] .page-hero.tone-soft .lead {
  color: var(--muted);
}

html[data-theme="dark"] .page-hero.tone-soft .btn-line {
  color: var(--ink);
  background: rgba(17, 24, 39, 0.9);
  border-color: rgba(148, 163, 184, 0.28);
}

/* ========== POLISH PASS ========== */
.block,
.final-cta {
  padding-block: var(--space-section);
}

.block-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.block-head h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.block-head p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
}

.hero-xl {
  padding: 5rem 0 4rem;
}

.hero-xl .hero-copy h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  max-width: 13ch;
  line-height: 1.05;
}

.hero-xl .lead {
  margin-top: 1.2rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;
}

/* Photo overlay only for real media figures */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.35));
  pointer-events: none;
}

.float-card {
  padding: 0.65rem 0.95rem;
  font-size: 0.8rem;
}

.offer,
.plan,
.vps-card,
.game-card,
.ssl-card,
.quotes-premium blockquote {
  border-radius: var(--radius);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.offer:hover,
.plan:hover,
.vps-card:hover,
.game-card:hover,
.ssl-card:hover,
.quotes-premium blockquote:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.offer img,
.game-card img,
.ssl-card img,
.split-media img {
  transition: transform 0.55s ease;
}

.offer:hover img,
.game-card:hover img,
.ssl-card:hover img,
.split-media:hover img {
  transform: scale(1.04);
}

.offer-lg .offer {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-lg .offer > div:not(.offer-actions) {
  flex: 1;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1.25rem 1.25rem 0.5rem;
}

.offer-lg .offer > div p:not(.from) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}

.offer-lg .offer img {
  height: 190px;
}

.offer-lg .offer-actions {
  margin-top: auto;
}

.plan-table,
.vps-cards {
  align-items: stretch;
}

.plan-lg .plan,
.vps-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-lg .plan ul,
.vps-card .spec-list {
  flex: 1;
}

.plan-lg .plan .btn,
.vps-card .btn {
  margin-top: auto;
}

.plan.hot,
.vps-card.hot {
  transform: none;
  outline: 1px solid rgba(37, 99, 235, 0.28);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

@media (min-width: 980px) {
  .plan.hot,
  .vps-card.hot {
    transform: translateY(-8px);
  }

  .plan.hot:hover,
  .vps-card.hot:hover {
    transform: translateY(-12px);
  }

  .hero-xl .hero-stage,
  .hero-xl .dash-panel {
    min-height: 520px;
  }

  .hero-xl .hero-media,
  .hero-xl .hero-media img {
    min-height: 580px;
  }
}

.btn-fill {
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-fill:hover {
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.12),
    0 16px 36px rgba(37, 99, 235, 0.38);
}

.tone-soft {
  background: linear-gradient(180deg, #f3f7ff 0%, #f8fafc 100%);
}

.tone-white + .tone-white {
  border-top: 1px solid rgba(37, 99, 235, 0.06);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.footer-meta {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

.tone-footer .footer-top {
  gap: 2.25rem;
}

.final-inner h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mesh-1,
.mesh-2,
.mesh-3 {
  opacity: 0.7;
}

.noise-layer {
  opacity: 0.025;
}

.grid-fade {
  opacity: 0.75;
}

/* ========== Hero dashboard responsive ========== */
@media (max-width: 979px) {
  .dash-body {
    grid-template-columns: 1fr;
  }

  .dash-side {
    display: none;
  }

  .dash-panel,
  .hero-xl .dash-panel,
  .hero-xl .hero-stage {
    min-height: 0;
  }

  .dash-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fc-1 { top: 4%; left: 2%; }
  .fc-2 { top: 8%; right: 2%; }
  .fc-5 { bottom: 6%; left: 4%; }
  .fc-6 { bottom: 4%; right: 4%; }
}

@media (max-width: 640px) {
  .dash-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-chrome {
    gap: 0.5rem;
  }

  .dash-url {
    font-size: 0.65rem;
  }

  .dash-chips span:nth-child(n+3) {
    display: none;
  }

  .hero-copy-enter,
  .hero-stage-enter {
    animation-duration: 0.55s;
  }

  .hero-actions .btn-lg {
    width: auto;
    flex: 1 1 auto;
    min-width: min(100%, 11rem);
  }
}


/* ========== V1 CONVERSION SECTIONS ========== */
.trust-bar {
  border-block: 1px solid rgba(37, 99, 235, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[data-theme="dark"] .trust-bar {
  background: rgba(11, 18, 32, 0.78);
  border-color: rgba(148, 163, 184, 0.12);
}

.trust-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 0;
}

.trust-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

html[data-theme="dark"] .trust-item {
  background: rgba(15, 23, 42, 0.9);
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow-lg);
}

.trust-item strong {
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.plan-v1 .plan {
  gap: 1.15rem;
}

.plan-v1 .plan-specs {
  display: grid;
  gap: 0.45rem;
}

.plan-v1 .plan-specs li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.plan-v1 .plan-specs li::before {
  display: none;
}

.plan-v1 .plan-specs b {
  color: var(--ink);
  font-weight: 700;
}

.plan-v1 .plan.hot {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px rgba(37, 99, 235, 0.18),
    0 0 0 1px rgba(37, 99, 235, 0.28);
}

.plan-v1 .plan.hot:hover {
  transform: translateY(-10px) scale(1.01);
}

.plan-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-note a {
  color: var(--blue);
  font-weight: 700;
}

.panel-showcase,
.dc-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.panel-copy .lead,
.dc-copy .lead {
  margin-top: 0.85rem;
  max-width: 34rem;
}

.panel-checklist {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.panel-checklist li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.panel-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.panel-frame {
  min-width: 0;
}

.ctrl-panel {
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, #0f172a, #0b1220);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: #e2e8f0;
}

.ctrl-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ctrl-brand {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}

.ctrl-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.ctrl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem;
}

.ctrl-card {
  position: relative;
  padding: 0.85rem 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.35rem;
  overflow: hidden;
}

.ctrl-card b {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ctrl-card span {
  color: #f8fafc;
  font-size: 1.15rem;
  font-weight: 800;
}

.ctrl-card > i {
  display: block;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  position: relative;
  overflow: hidden;
}

.ctrl-card > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.ctrl-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 1.15rem;
}

.ctrl-apps span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card {
  padding: 1.15rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

html[data-theme="dark"] .feature-card {
  background: rgba(15, 23, 42, 0.92);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow-lg);
}

.feature-ico {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 0.8rem;
  color: #2563eb;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.feature-ico svg {
  width: 1.1rem;
  height: 1.1rem;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  gap: 0.9rem;
}

.why-card {
  padding: 1.4rem 1.3rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

html[data-theme="dark"] .why-card {
  background: rgba(15, 23, 42, 0.88);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card h3 {
  margin: 0 0 0.45rem;
  letter-spacing: -0.025em;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dc-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.35rem 0 1.5rem;
}

.dc-stats div {
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .dc-stats div {
  background: rgba(15, 23, 42, 0.9);
}

.dc-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dc-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.tr-map {
  position: relative;
  min-height: 320px;
  border-radius: 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background:
    radial-gradient(circle at 58% 42%, rgba(37, 99, 235, 0.18), transparent 28%),
    linear-gradient(160deg, #eef4ff, #f8fafc 60%, #e2e8f0);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

html[data-theme="dark"] .tr-map {
  background:
    radial-gradient(circle at 58% 42%, rgba(59, 130, 246, 0.28), transparent 30%),
    linear-gradient(160deg, #0b1220, #111827);
}

.tr-shape {
  position: absolute;
  inset: 18% 22% 22% 18%;
  border-radius: 42% 38% 36% 44% / 40% 36% 44% 38%;
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
}

.tr-node {
  position: absolute;
  left: 52%;
  top: 38%;
  translate: -50% -50%;
  text-align: center;
  z-index: 1;
}

.tr-pulse {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  margin: 0 auto 0.55rem;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  animation: trPulse 2.2s ease-out infinite;
}

@keyframes trPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.tr-node strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.tr-node em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
}

.tr-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tr-meta span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .tr-meta span {
  background: rgba(15, 23, 42, 0.75);
}

.quote-logo.av-1 { background: linear-gradient(135deg, #60a5fa, #2563eb); color: #fff; }
.quote-logo.av-2 { background: linear-gradient(135deg, #34d399, #059669); color: #fff; }
.quote-logo.av-3 { background: linear-gradient(135deg, #a78bfa, #7c3aed); color: #fff; }
.quote-logo.av-4 { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }

.footer-xl .footer-top {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .trust-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .trust-track {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .trust-item {
    padding: 0.85rem 0.7rem;
    text-align: center;
  }

  .panel-showcase,
  .dc-showcase {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.75rem;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ctrl-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-xl .footer-top {
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .ctrl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-v1 .plan.hot {
    transform: none;
  }
}
