/* style.css — Novagrid Hosting Design System */

/* ============================================================
   DESIGN TOKENS — Novagrid Brand Palette
   Primary: Deep Navy (#0E1A4A), Accent: Cyan (#00C8E0)
   Light mode: white + light grays + navy accents
   Dark mode: deep navy surfaces + cyan accents
   ============================================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ============================================================
   LIGHT THEME (Primary)
   ============================================================ */
:root, [data-theme="light"] {
  --color-bg:              #ffffff;
  --color-surface:         #f8f9fc;
  --color-surface-2:       #f2f4f8;
  --color-surface-offset:  #eaecf2;
  --color-surface-dark:    #0E1A4A;
  --color-divider:         #e1e4ed;
  --color-border:          #d4d8e8;

  --color-text:            #0d1033;
  --color-text-muted:      #5a6080;
  --color-text-secondary:  #5a6080;
  --color-text-faint:      #9da3bc;
  --color-text-inverse:    #ffffff;

  /* Primary: Deep Navy */
  --color-primary:         #0E1A4A;
  --color-primary-hover:   #162260;
  --color-primary-active:  #1e2e7a;

  /* Accent: Cyan */
  --color-accent:          #00C8E0;
  --color-accent-hover:    #00afc6;
  --color-accent-active:   #0096ac;
  --color-accent-dim:      rgba(0, 200, 224, 0.15);

  /* Semantic */
  --color-success:         #16a34a;
  --color-warning:         #d97706;
  --color-error:           #dc2626;
  --color-rating:          #f59e0b;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(14, 26, 74, 0.08);
  --shadow-md: 0 4px 16px rgba(14, 26, 74, 0.10);
  --shadow-lg: 0 12px 40px rgba(14, 26, 74, 0.14);
  --shadow-card: 0 2px 8px rgba(14, 26, 74, 0.07), 0 8px 24px rgba(14, 26, 74, 0.06);
  --shadow-card-hover: 0 4px 16px rgba(14, 26, 74, 0.12), 0 16px 40px rgba(14, 26, 74, 0.10);
}

/* ============================================================
   DARK THEME
   ============================================================ */
[data-theme="dark"] {
  --color-bg:              #080d20;
  --color-surface:         #0d1330;
  --color-surface-2:       #111840;
  --color-surface-offset:  #162050;
  --color-surface-dark:    #0a1028;
  --color-divider:         #1e2a5a;
  --color-border:          #253070;

  --color-text:            #e8eaf6;
  --color-text-muted:      #8890b8;
  --color-text-secondary:  #8890b8;
  --color-text-faint:      #4a5280;
  --color-text-inverse:    #080d20;

  --color-primary:         #3d6fff;
  --color-primary-hover:   #5a82ff;
  --color-primary-active:  #7599ff;

  --color-accent:          #00d8f2;
  --color-accent-hover:    #20e2fc;
  --color-accent-active:   #40ecff;
  --color-accent-dim:      rgba(0, 216, 242, 0.12);

  --color-success:         #4ade80;
  --color-warning:         #fbbf24;
  --color-error:           #f87171;
  --color-rating:          #fbbf24;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* System dark mode fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #080d20;
    --color-surface:         #0d1330;
    --color-surface-2:       #111840;
    --color-surface-offset:  #162050;
    --color-surface-dark:    #0a1028;
    --color-divider:         #1e2a5a;
    --color-border:          #253070;
    --color-text:            #e8eaf6;
    --color-text-muted:      #8890b8;
    --color-text-secondary:  #8890b8;
    --color-text-faint:      #4a5280;
    --color-text-inverse:    #080d20;
    --color-primary:         #3d6fff;
    --color-primary-hover:   #5a82ff;
    --color-primary-active:  #7599ff;
    --color-accent:          #00d8f2;
    --color-accent-hover:    #20e2fc;
    --color-accent-active:   #40ecff;
    --color-accent-dim:      rgba(0, 216, 242, 0.12);
    --color-success:         #4ade80;
    --color-warning:         #fbbf24;
    --color-error:           #f87171;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.3);
  }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

/* ── Skip-to-content link ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent);
  color: var(--color-surface-dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-2);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
}

/* The 10-item nav needs more room than --content-wide allows */
.site-header .container {
  max-width: 1440px;
}

/* ── Announcement banner ───────────────────────────────────── */
.announcement {
  background: var(--color-accent-dim);
  background: oklch(from var(--color-accent) l c h / 0.1);
  border-bottom: 1px solid var(--color-accent-dim);
  border-bottom: 1px solid oklch(from var(--color-accent) l c h / 0.2);
  text-align: center;
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  overflow: hidden;
  max-height: 3rem;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.announcement--hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.announcement__text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}

.announcement__link:hover {
  opacity: 0.8;
}

.announcement__dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: var(--space-1);
  transition: color var(--transition-interactive);
}

.announcement__dismiss:hover {
  color: var(--color-text);
}

@media (max-width: 480px) {
  .announcement {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
    gap: var(--space-2);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 2.75rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__links a {
  display: inline-block;
  padding: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile nav toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-interactive);
}

.nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text-muted);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid var(--color-divider);
}

.nav__mobile.is-open { display: flex; }

.nav__mobile a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
}

.nav__mobile a:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.6875rem var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: all var(--transition-interactive);
}

.btn--primary {
  background: var(--color-accent);
  color: #0d1033;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 200, 224, 0.35);
}

.btn--primary:active { transform: translateY(0); }

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

.btn--outline:hover {
  background: var(--color-surface-2);
  border-color: var(--color-text-faint);
}

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

.btn--ghost:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.btn--large {
  padding: 0.875rem var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn--dark {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn--dark:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, 8rem) clamp(var(--space-16), 8vw, 7rem);
  background: var(--color-bg);
}

/* Subtle geometric background pattern */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(0,200,224,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(14,26,74,0.05) 0%, transparent 60%);
}

[data-theme="dark"] .hero__bg {
  background-image:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(0,216,242,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(61,111,255,0.08) 0%, transparent 60%);
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(var(--color-text) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-text) 1px, transparent 1px);
  background-size: 40px 40px;
}

[data-theme="dark"] .hero__grid-pattern {
  opacity: 0.04;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent-dim);
  border: 1px solid rgba(0, 200, 224, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

[data-theme="dark"] .hero__badge {
  border-color: rgba(0, 216, 242, 0.2);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #7b8eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-10);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* Hero visual panel */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__browser-mockup {
  width: 100%;
  max-width: 520px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca41; }

.browser-url {
  flex: 1;
  padding: var(--space-1) var(--space-3);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.browser-content {
  padding: var(--space-6);
}

.browser-hero-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(0,200,224,0.2) 100%);
  border-radius: 4px;
  margin-bottom: var(--space-4);
}

.browser-content-lines {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.browser-line {
  height: 10px;
  background: var(--color-surface-offset);
  border-radius: 5px;
}

.browser-line--wide { width: 80%; }
.browser-line--medium { width: 60%; }
.browser-line--short { width: 40%; }

.browser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.browser-card {
  height: 60px;
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-divider);
}

/* Floating badge on mockup */
.hero__float-badge {
  position: absolute;
  bottom: -var(--space-4);
  right: -var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
}

.hero__float-badge-icon {
  width: 28px;
  height: 28px;
  background: var(--color-accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding-block: var(--space-8);
  border-block: 1px solid var(--color-divider);
  background: var(--color-surface);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.section--alt {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-primary);
  color: white;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.section-title--center {
  text-align: center;
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: var(--space-12);
}

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

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-inline: auto;
}

/* 3-up feature grid (e.g. AI Website Builder section). Compound
   selector keeps these column counts authoritative over the base
   .services-grid responsive rules: 3 -> 2 columns, then a swipe
   carousel below 768px (via the shared .swipe-track rules). */
.services-grid.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-inline: auto;
}
@media (max-width: 1023px) {
  .services-grid.services-grid--three { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-interactive);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(0,200,224,0));
  opacity: 0;
  transition: opacity var(--transition-interactive);
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 200, 224, 0.5);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
}

/* The bundle card uses overflow:visible so its "Best Value" badge can sit above
   the top edge. That un-clips the ::before hover accent bar, whose square left
   corner then pokes out past the rounded border. The card already has a full
   solid accent border, so the hover bar is redundant here; remove it.
   Same treatment for every other badge-above-the-edge card, all of which set
   overflow:visible for the same reason: #care-plan (SysAdmin, "Limited: 5 server
   slots") and #team-setup (AI Assistant, "Includes written knowledge audit"). */
#bundle.service-card::before,
#care-plan.service-card::before,
#team-setup.service-card::before {
  content: none;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-dim);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

.service-card__link:hover {
  color: var(--color-accent-hover);
  gap: var(--space-3);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.features-layout--reverse {
  direction: rtl;
}

.features-layout--reverse > * {
  direction: ltr;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition-interactive);
}

.feature-item:hover {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.feature-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Feature visual */
.features-visual {
  position: relative;
}

.server-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.server-visual__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.server-visual__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(22, 163, 74, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-success);
}

.status-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.server-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.metric-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid var(--color-divider);
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.metric-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.metric-value--accent { color: var(--color-accent); }
.metric-value--success { color: var(--color-success); }

.uptime-bar {
  margin-top: var(--space-3);
  height: 4px;
  background: var(--color-surface-offset);
  border-radius: 2px;
  overflow: hidden;
}

.uptime-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-success), #22c55e);
  border-radius: 2px;
  width: 99.9%;
}

.server-domains {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.domain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-divider);
}

.domain-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.domain-status {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-success);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

/* Two-tier pricing (e.g. modpack page): center the pair on desktop
   instead of leaving the empty third grid column. Scoped to desktop
   only so the <=1024px stacked and <=768px swipe rules stay intact. */
@media (min-width: 1025px) {
  .pricing-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin-inline: auto;
  }
}

.pricing-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-interactive);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.pricing-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,200,224,0.3);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-2px);
}

[data-theme="dark"] .pricing-card--featured {
  background: linear-gradient(160deg, #111840 0%, #162050 100%);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,216,242,0.25), 0 0 40px rgba(0,216,242,0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #0d1033;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-plan {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.pricing-card--featured .pricing-plan {
  color: rgba(255,255,255,0.75);
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.pricing-currency {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  padding-bottom: 6px;
}

.pricing-card--featured .pricing-currency {
  color: rgba(255,255,255,0.80);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.pricing-card--featured .pricing-amount { color: white; }

.pricing-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-bottom: 4px;
}

.pricing-card--featured .pricing-period { color: rgba(255,255,255,0.75); }

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.78); }

.pricing-divider {
  height: 1px;
  background: var(--color-divider);
  margin-bottom: var(--space-6);
}

.pricing-card--featured .pricing-divider { background: rgba(255,255,255,0.25); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 100%;
}

.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.75); }

.pricing-features li svg {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card--featured .pricing-features li svg { color: var(--color-accent); }

.pricing-card .btn {
  width: 100%;
}

.pricing-card--featured .btn--primary {
  background: var(--color-accent);
  color: #0d1033;
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 200, 224, 0.3);
}

/* ============================================================
   DOMAIN SEARCH SECTION
   ============================================================ */
.domain-search {
  background: var(--color-primary);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}

.domain-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,200,224,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 0%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.domain-search .section-eyebrow {
  color: rgba(0, 200, 224, 0.85);
}

.domain-search .section-title {
  color: #ffffff;
}

.domain-search .section-desc {
  color: rgba(255,255,255,0.82);
}

.domain-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.domain-tab {
  padding: .45em 1.4em;
  border-radius: 2rem;
  border: 2px solid rgba(255,255,255,.50);
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.domain-tab:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.domain-tab--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0d1033;
}

.pricing-tabs {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin: 0 auto var(--space-6);
  flex-wrap: wrap;
}

.pricing-tab {
  padding: .55em 1.6em;
  border-radius: 2rem;
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.pricing-tab:hover {
  border-color: var(--color-accent);
}

.pricing-tab--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0d1033;
}

/* Billing-term switch (Monthly / Annual). Segmented pill so it reads as one
   control rather than two more category tabs. Hidden via the [hidden]
   attribute until js/index.js confirms the feed carries annual prices. */
.pricing-term {
  display: flex;
  justify-content: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto var(--space-6);
  padding: 4px;
  border: 2px solid var(--color-border);
  border-radius: 2rem;
}
.pricing-term[hidden] { display: none; }
.pricing-term__btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .5em 1.5em;
  border: 0;
  border-radius: 2rem;
  background: transparent;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.pricing-term__btn:hover { color: var(--color-accent); }
.pricing-term__btn--active {
  background: var(--color-accent);
  color: #0d1033;
}
.pricing-term__btn--active:hover { color: #0d1033; }
.pricing-term__save {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .15em .6em;
  border-radius: 1rem;
  background: rgba(0, 200, 224, .18);
  color: var(--color-accent);
}
.pricing-term__btn--active .pricing-term__save {
  background: rgba(13, 16, 51, .18);
  color: #0d1033;
}

/* Annual ribbon: green so it reads as a saving, distinct from the amber promo
   ribbon which means something different (a first-month-only coupon). */
.pricing-ribbon--annual {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #06281d;
  box-shadow: 0 2px 12px rgba(16, 185, 129, .45);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

/* "That is $11.67/mo, billed annually" under the annual figure. */
.pricing-price__equiv {
  margin: -.4em 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 600;
}

.domain-search-form {
  display: flex;
  gap: var(--space-3);
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.domain-input-wrapper {
  flex: 1;
  position: relative;
}

.domain-input {
  width: 100%;
  padding: 0.875rem var(--space-5);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-size: var(--text-base);
  transition: all var(--transition-interactive);
}

.domain-input::placeholder { color: rgba(255,255,255,0.65); }

.domain-input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  background: rgba(255,255,255,0.15);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,200,224,0.2);
}

.domain-extensions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
  position: relative;
  z-index: 1;
}

.domain-ext-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.domain-ext-tag span {
  color: var(--color-accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 7px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-interactive);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--color-rating);
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   REVIEW CTA + MODAL
   ============================================================ */
.review-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.review-cta__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* Modal overlay */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(var(--space-4), env(safe-area-inset-top)) max(var(--space-4), env(safe-area-inset-right)) max(var(--space-4), env(safe-area-inset-bottom)) max(var(--space-4), env(safe-area-inset-left));
}

.review-modal[hidden] {
  display: none;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.review-modal__content {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.review-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-1);
}

.review-modal__close:hover {
  color: var(--color-text);
}

.review-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.review-modal__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* Form fields */
.review-form__field {
  margin-bottom: var(--space-5);
}

.review-form__field label,
.review-form__field legend {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.review-form__field input,
.review-form__field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-interactive);
}

.review-form__field input:focus,
.review-form__field textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.15);
}

.review-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.review-form__optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.review-form__charcount {
  text-align: right;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* Star rating */
.review-form__stars {
  border: none;
  padding: 0;
  margin: 0;
}

.star-rating {
  display: flex;
  gap: var(--space-1);
}

.star-rating__item {
  display: contents;
}

.star-rating__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.star-rating__label {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  color: var(--color-border);
  transition: color var(--transition-interactive), transform var(--transition-interactive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.star-rating__label:hover,
.star-rating__label--active {
  color: var(--color-rating);
}

.star-rating__label:hover {
  transform: scale(1.15);
}

.star-rating__input:focus-visible + .star-rating__label {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Form status messages */
.review-form__status {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  min-height: 1.4em;
}

.review-form__status--error {
  color: var(--color-error, #e74c3c);
}

.review-form__status--success {
  color: #22c55e;
}

.review-form__submit {
  width: 100%;
}

/* ============================================================
   WAITLIST MODAL
   ============================================================ */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(var(--space-4), env(safe-area-inset-top)) max(var(--space-4), env(safe-area-inset-right)) max(var(--space-4), env(safe-area-inset-bottom)) max(var(--space-4), env(safe-area-inset-left));
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.waitlist-modal__content {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.waitlist-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-1);
}

.waitlist-modal__close:hover {
  color: var(--color-text);
}

.waitlist-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.waitlist-modal__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.waitlist-modal__subtitle strong {
  color: var(--color-accent);
  font-weight: 700;
}

.waitlist-modal__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* Waitlist form fields */
.waitlist-form__field {
  margin-bottom: var(--space-5);
}

.waitlist-form__field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.waitlist-form__field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-interactive);
}

.waitlist-form__field input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.15);
}

.waitlist-form__status {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  min-height: 1.4em;
}

.waitlist-form__status--error {
  color: var(--color-error, #e74c3c);
}

.waitlist-form__status--success {
  color: #22c55e;
}

.waitlist-form__submit {
  width: 100%;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #162260 100%);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-12), 6vw, var(--space-20));
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(0,200,224,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__eyebrow {
  color: rgba(0, 216, 242, 0.95);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-8);
  max-width: 54ch;
  margin-inline: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn--white {
  background: white;
  color: var(--color-primary);
  border-color: white;
  font-weight: 700;
}

.btn--white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(var(--space-16), 8vw, var(--space-24));
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: var(--space-8);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 32ch;
}

.footer-logo {
  height: 4.5rem;
  width: auto;
}

.footer-contact {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  margin-top: var(--space-4);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: rgb(0, 200, 224);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: rgb(0, 200, 224);
  background: rgba(0, 200, 224, 0.12);
  transform: translateY(-2px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5) var(--space-8);
  margin: var(--space-8) auto 0;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: left;
  text-decoration: none;
  color: inherit;
}

.trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-accent);
  background: rgba(0, 200, 224, 0.1);
}

.trust-strip__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-strip__sub {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.trust-strip__cards {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-strip__cards svg {
  display: block;
}

a.trust-strip__item:hover .trust-strip__sub,
a.trust-strip__item:focus-visible .trust-strip__sub {
  color: var(--color-accent);
}

.footer-badge {
  display: inline-block;
  margin-top: var(--space-4);
  border-radius: 8px;
  line-height: 0;
}

.footer-badge img {
  display: block;
  width: 150px;
  height: auto;
  border-radius: 8px;
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: var(--space-5);
}

.footer-col__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-col__links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom__links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.footer-bottom__links a:hover {
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   PRICING SKELETON LOADER
   Shown while pricing-proxy.php fetches from ClientExec API.
   ============================================================ */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.pricing-skeleton {
  border-radius: var(--radius-md);
  background: linear-gradient(90deg,
    var(--color-surface-offset) 25%,
    var(--color-surface-2)      50%,
    var(--color-surface-offset) 75%
  );
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  margin-bottom: var(--space-3);
}

.pricing-skeleton--sm  { height: 14px; width: 50%; }
.pricing-skeleton--md  { height: 14px; width: 80%; }
.pricing-skeleton--lg  { height: 40px; width: 60%; }
.pricing-skeleton--btn { height: 42px; width: 100%; border-radius: var(--radius-md); margin-top: var(--space-5); }

.pricing-skeleton-inline {
  min-width: 110px;
  height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.06) 75%
  );
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Below ~1280px even the compact full nav can't fit all items + actions;
   switch to the hamburger (which also fixes the formerly broken 769-1279 band) */
@media (max-width: 1279.98px) {
  .nav__links,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
}

/* Narrow-desktop band: keeps even the widest page nav (services.html's
   10 items) inside the viewport */
@media (min-width: 1279.98px) and (max-width: 1439.98px) {
  .nav__links a {
    font-size: var(--text-xs);
    padding-inline: var(--space-1);
  }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-2px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__visual { order: -1; }

  .hero__badge { margin-inline: auto; }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .features-layout--reverse { direction: ltr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .domain-search-form { flex-direction: column; }
  .trust-bar__inner { gap: var(--space-6); }

  /* Compact pricing cards on phones — tighten padding and spacing;
     the full feature list stays visible (nothing is hidden). */
  .pricing-card { padding: var(--space-6); }
  .pricing-features { gap: var(--space-2); margin-bottom: var(--space-6); }
  .pricing-desc { margin-bottom: var(--space-4); }
  .pricing-divider { margin-bottom: var(--space-4); }
  .pricing-amount { font-size: var(--text-xl); }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: var(--space-4); align-items: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: var(--space-5); }
  .pricing-features { margin-bottom: var(--space-5); }
  .pricing-features li { gap: var(--space-2); }
  .pricing-price { margin-bottom: var(--space-1); }
  .pricing-cta { gap: var(--space-1); }
  .review-cta { flex-direction: column; align-items: center; }
  .review-modal { padding: var(--space-2); }
  .review-modal__content { padding: var(--space-5); }
  .waitlist-modal { padding: var(--space-2); }
  .waitlist-modal__content { padding: var(--space-5); }
}

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: max(var(--space-6), env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(480px, calc(100vw - var(--space-8)));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-notice.cookie-notice--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}

.cookie-notice__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex: 1;
  line-height: 1.5;
}

.cookie-notice__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

.cookie-notice__dismiss {
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 0.45em 1.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  border: none;
}

.cookie-notice__accept {
  color: var(--color-text-inverse);
  background: var(--color-accent);
}

.cookie-notice__decline {
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border) !important;
}

.cookie-notice__dismiss:hover { opacity: 0.75; }

/* =============================================
   INNER PAGES (about, contact, status, blog)
   ============================================= */
.inner-hero {
  padding: clamp(var(--space-16), 10vw, var(--space-24)) 0 var(--space-12);
  text-align: center;
}

.inner-hero__tag {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 auto var(--space-4);
}

.inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.inner-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.inner-section {
  padding: var(--space-8) 0 clamp(var(--space-16), 8vw, var(--space-24));
}

.inner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.inner-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inner-content a:hover { opacity: 0.8; }

/* Prose links inside cards and section copy. Nav, footer and button links are
   all styled by their own scoped rules, but a plain link in body copy matched
   nothing and fell back to the browser's default blue, which reads as a broken
   page against the dark theme. (services.html had one of these patched with an
   inline colour as a one-off; this is the rule that should have existed.) */
.section-desc a:not(.btn),
.service-card__desc a:not(.btn),
.feature-item__desc a:not(.btn),
.pricing-features li a:not(.btn) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-desc a:not(.btn):hover,
.service-card__desc a:not(.btn):hover,
.feature-item__desc a:not(.btn):hover,
.pricing-features li a:not(.btn):hover {
  opacity: 0.8;
}

.inner-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.inner-content ul,
.inner-content ol {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.inner-content ul { list-style-type: disc; }
.inner-content ol { list-style-type: decimal; }

.inner-content li {
  margin-bottom: var(--space-2);
}

.inner-content li::marker {
  color: var(--color-accent);
}

/* About — value cards */
.inner-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.inner-value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.inner-value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.inner-value-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Contact — card grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}

.contact-card h2 {
  margin-top: 0 !important;
  font-size: var(--text-lg) !important;
}

.contact-card p {
  font-size: var(--text-sm);
}

.contact-card .btn {
  margin-top: var(--space-4);
  text-decoration: none;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.contact-grid > .contact-pair {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.contact-grid > .contact-pair > .contact-card {
  flex: 1 1 280px;
  max-width: 380px;
}

/* Contact form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-interactive);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2399a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
}

.contact-form select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.15);
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__status {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  min-height: 1.4em;
}

.contact-form__status--error {
  color: var(--color-error, #e74c3c);
}

.contact-form__status--success {
  color: #22c55e;
}

/* Status — service list */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.status-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot--operational { background: var(--color-success); }
.status-dot--degraded    { background: var(--color-warning); }
.status-dot--down        { background: var(--color-error); }

.status-label {
  flex: 1;
  font-weight: 600;
  color: var(--color-text);
}

.status-text {
  font-size: var(--text-sm);
  font-weight: 600;
}

.status-text--operational { color: var(--color-success); }
.status-text--degraded    { color: var(--color-warning); }
.status-text--down        { color: var(--color-error); }
.status-text--unknown     { color: var(--color-text-secondary); }
.status-dot--unknown      { background: var(--color-text-secondary); opacity: 0.4; }

.status-footer {
  margin-top: var(--space-8);
  text-align: center;
}

.status-footer p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ============================================================
   STATUS PAGE — banner, 90-day strip, incidents
   ============================================================ */
.status-banner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.status-banner__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-text-secondary);
  flex-shrink: 0;
}
.status-banner__text {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  flex: 1;
  min-width: 0;
}
.status-banner__meta {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.status-banner--ok        { border-color: var(--color-success); }
.status-banner--ok        .status-banner__dot { background: var(--color-success); box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2); }
.status-banner--degraded  { border-color: var(--color-warning); }
.status-banner--degraded  .status-banner__dot { background: var(--color-warning); box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2); }
.status-banner--down      { border-color: var(--color-error); }
.status-banner--down      .status-banner__dot { background: var(--color-error); box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.2); }

.status-grid__group {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  margin: var(--space-6) 0 var(--space-2);
}
.status-grid__group:first-child { margin-top: 0; }
.status-grid__loading {
  color: var(--color-text-secondary);
  text-align: center;
  padding: var(--space-6) 0;
}

/* The .status-item rule from above is reused; this just lets the body
   stack a label-row + a 90-day strip vertically inside the row. */
.status-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
}
.status-item__row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.status-item__row .status-label { flex: 1; }

.status-strip {
  display: flex;
  gap: 2px;
  align-items: stretch;
}
.status-cell {
  flex: 1 1 0;
  min-width: 3px;
  height: 22px;
  border-radius: 2px;
  background: var(--color-divider);
  transition: transform 0.15s ease;
}
.status-cell:hover { transform: scaleY(1.15); cursor: help; }
.status-cell--operational { background: var(--color-success); }
.status-cell--degraded    { background: var(--color-warning); }
.status-cell--down        { background: var(--color-error); }
.status-cell--unknown     { background: var(--color-divider); opacity: 0.6; }

.status-incidents {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.status-incidents__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 var(--space-4);
  color: var(--color-text);
}
.status-incidents__empty,
.status-incidents__loading {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
.status-incident {
  border: 1px solid var(--color-divider);
  border-left: 3px solid var(--color-divider);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
}
.status-incident--down     { border-left-color: var(--color-error); }
.status-incident--degraded { border-left-color: var(--color-warning); }
.status-incident__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.status-incident__service {
  font-weight: 700;
  color: var(--color-text);
}
.status-incident__sev {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}
.status-incident--down     .status-incident__sev { color: var(--color-error); }
.status-incident--degraded .status-incident__sev { color: var(--color-warning); }
.status-incident__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.status-incident__desc {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
}
.status-incidents__intro {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-4);
}
.status-incident--archived {
  opacity: 0.85;
}
.status-incident--archived .status-incident__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2) var(--space-5);
  cursor: pointer;
  list-style: none;
  outline-offset: 2px;
}
.status-incident--archived .status-incident__summary::-webkit-details-marker { display: none; }
.status-incident--archived .status-incident__summary::marker { content: ''; }
.status-incident--archived .status-incident__when {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-left: auto;
}
.status-incident--archived[open] .status-incident__summary {
  margin-bottom: var(--space-2);
}

/* Mobile: status item stacks vertically; strip stays full-width. */
@media (max-width: 600px) {
  .status-item__row { flex-wrap: wrap; }
  .status-cell { height: 18px; }
}

/* ============================================================
   "LIVE" badge — counterpart to .coming-badge for shipped roadmap items
   ============================================================ */
.live-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-success);
  color: #0d1033;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px var(--space-2);
  border-radius: var(--radius-full);
  white-space: nowrap;
  z-index: 1;
}

/* Inner pages responsive */
@media (max-width: 768px) {
  .inner-values,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid > .contact-pair > .contact-card {
    max-width: none;
  }
}

/* ============================================================
   CHAT WIDGET
   ============================================================ */

.chat-fab {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a1028 0%, #0d1330 50%, #111840 100%);
  border: 1px solid rgba(0, 200, 224, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 20px rgba(0, 216, 242, 0.1);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 30px rgba(0, 216, 242, 0.2);
  border-color: rgba(0, 200, 224, 0.4);
}

/* Grid pattern */
.chat-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 216, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 216, 242, 0.06) 1px, transparent 1px);
  background-size: 8px 8px;
  border-radius: inherit;
  pointer-events: none;
}

.chat-fab .sparkle-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
}

/* Auto-hide on scroll */
.chat-fab.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

/* Close state */
.chat-fab .close-icon { display: none; position: relative; z-index: 1; }
.chat-fab[aria-expanded="true"] .sparkle-icon { display: none; }
.chat-fab[aria-expanded="true"] .close-icon { display: block; }

.chat-window {
  position: fixed;
  bottom: calc(var(--space-6) + 56px + var(--space-4));
  right: var(--space-6);
  z-index: 1000;
  width: 380px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid rgba(0, 200, 224, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-dark);
  border-bottom: 1px solid rgba(0, 200, 224, 0.12);
}

.chat-header-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  flex-shrink: 0;
}

.chat-header-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.chat-header-sub {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 280px;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 200, 224, 0.2) transparent;
}

.chat-bubble {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: 1.5;
  word-wrap: break-word;
}

.chat-bubble--assistant {
  align-self: flex-start;
  background: var(--color-surface-2);
  color: var(--color-text);
  border-bottom-left-radius: var(--radius-sm);
}

.chat-bubble--user {
  align-self: flex-end;
  background: var(--color-accent);
  color: #0d1033;
  border-bottom-right-radius: var(--radius-sm);
}

.chat-bubble a {
  color: var(--color-accent);
  text-decoration: underline;
}

.chat-bubble--user a {
  color: #0d1033;
}

.chat-bubble p { margin: 0 0 0.5em; }
.chat-bubble p:last-child { margin-bottom: 0; }

/* Feedback row on each assistant bubble */
.chat-feedback {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.6;
  transition: opacity 120ms ease;
}
.chat-bubble--assistant:hover .chat-feedback { opacity: 1; }
.chat-fb-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-muted, #8a93b0);
  border-radius: 4px;
  padding: 3px 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.chat-fb-btn:hover:not(:disabled) { background: rgba(255, 255, 255, 0.06); color: var(--color-text); }
.chat-fb-btn:disabled { cursor: default; }
.chat-fb-up.is-active   { color: #5fdc5f; border-color: rgba(95, 220, 95, 0.3); }
.chat-fb-down.is-active { color: #ff8080; border-color: rgba(255, 128, 128, 0.3); }
.chat-bubble ul, .chat-bubble ol { margin: 0.25em 0; padding-left: 1.25em; }
.chat-bubble li { margin-bottom: 0.15em; }
.chat-bubble strong { font-weight: 700; }
.chat-bubble code {
  background: rgba(0,0,0,0.2);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 0.9em;
}

/* Typing indicator */
.chat-typing {
  display: flex;
  gap: 4px;
  align-self: flex-start;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-sm);
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--color-text-muted);
  animation: chat-dot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chat-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Quick prompts */
.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0 var(--space-5) var(--space-3);
}

.chat-prompt-btn {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border: 1px solid rgba(0, 200, 224, 0.15);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: 12px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1),
              color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-prompt-btn:hover {
  background: rgba(0, 200, 224, 0.1);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Input area */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid rgba(0, 200, 224, 0.12);
  background: var(--color-surface-dark);
}

.chat-input {
  flex: 1;
  background: var(--color-surface-2);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-input::placeholder {
  color: var(--color-text-faint);
}

.chat-input:focus {
  border-color: var(--color-accent);
}

.chat-send {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #0d1033;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-send:hover {
  background: var(--color-accent-hover);
}

.chat-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.chat-send svg {
  width: 16px;
  height: 16px;
}

/* ── Handoff: "Talk to a human" ──────────────────────────── */
.chat-header-title-block { display: flex; flex-direction: column; }

.chat-header-action {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 200, 224, 0.30);
  border-radius: var(--radius-full);
  padding: 4px 10px 4px 8px;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}
.chat-header-action:hover:not(:disabled) {
  background: rgba(0, 200, 224, 0.12);
  border-color: var(--color-accent);
}
.chat-header-action:disabled,
.chat-header-action.is-done {
  opacity: 0.5;
  cursor: not-allowed;
}
.chat-header-action svg { flex-shrink: 0; opacity: 0.85; }

/* Form — hidden until window gets .is-handoff. !important because the
   widget can render inside CE/billing templates where form/button styles
   are aggressive. */
.chat-handoff,
.chat-subscribe { display: none !important; }
.chat-window.is-handoff .chat-handoff,
.chat-window.is-subscribe .chat-subscribe { display: flex !important; }
/* Subscribe form hides the main chat surface just like handoff does. */
.chat-window.is-subscribe .chat-messages,
.chat-window.is-subscribe .chat-prompts,
.chat-window.is-subscribe .chat-input-row { display: none !important; }
/* Subscribe reuses handoff layout styles since the markup is parallel. */
.chat-window.is-subscribe .chat-subscribe {
  flex-direction: column;
  padding: var(--space-4) var(--space-5) var(--space-5);
  gap: var(--space-3);
  flex: 1;
  min-height: 280px;
  overflow-y: auto;
}

/* Inline subscribe deeplink rendered inside assistant bubbles. */
.chat-subscribe-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 200, 224, 0.10);
  color: var(--color-accent) !important;
  border: 1px solid rgba(0, 200, 224, 0.35);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 180ms ease, border-color 180ms ease;
}
.chat-subscribe-link:hover {
  background: rgba(0, 200, 224, 0.18);
  border-color: var(--color-accent);
}
/* Phase-2 HITL tool-confirm card. Stronger visual weight than a plain
   assistant bubble — readers should know this isn't just chat text. */
.chat-bubble--tool {
  border: 1px solid rgba(0, 200, 224, 0.35);
  background: rgba(0, 200, 224, 0.06);
}
.chat-tool-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin: 0 0 4px;
}
.chat-tool-summary {
  font-weight: 600;
  margin: 0 0 10px;
}
.chat-tool-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.chat-tool-approve,
.chat-tool-cancel {
  flex: 1;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}
.chat-tool-approve {
  background: var(--color-accent);
  color: #0d1033;
}
.chat-tool-approve:hover { opacity: 0.9; }
.chat-tool-cancel {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.18);
}
.chat-tool-cancel:hover { background: rgba(255, 255, 255, 0.06); }
.chat-tool-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
}
.chat-tool-note--ok     { color: #34d399; }
.chat-tool-note--cancel { color: var(--color-text-muted); }
.chat-tool-note--err    { color: #f87171; }
.chat-window.is-handoff .chat-messages,
.chat-window.is-handoff .chat-prompts,
.chat-window.is-handoff .chat-input-row { display: none; }
.chat-window.is-handoff .chat-handoff {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-5) var(--space-5);
  gap: var(--space-3);
  flex: 1;
  min-height: 280px;
  overflow-y: auto;
}

.chat-handoff-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.chat-handoff-back {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  padding: 4px 6px;
  cursor: pointer;
  display: inline-flex;
  line-height: 0;
}
.chat-handoff-back:hover { color: var(--color-text); background: rgba(255, 255, 255, 0.06); }
.chat-handoff-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.chat-handoff-lede {
  margin: 0;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.chat-handoff-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.chat-handoff-opt { font-weight: 400; opacity: 0.75; }
.chat-handoff-input {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid rgba(0, 200, 224, 0.18);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.chat-handoff-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 224, 0.18);
}
/* Honeypot — invisible but focusable-off-screen, so bots find the field */
.chat-handoff-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; opacity: 0;
}
.chat-handoff-status {
  min-height: 16px;
  font-size: 12px;
  line-height: 1.3;
}
.chat-handoff-status--err  { color: #ff8080; }
.chat-handoff-status--info { color: var(--color-text-muted); }
.chat-handoff-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: flex-end;
  margin-top: var(--space-2);
}
.chat-handoff-cancel,
.chat-handoff-send {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.chat-handoff-cancel {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.chat-handoff-cancel:hover:not(:disabled) { color: var(--color-text); border-color: rgba(255, 255, 255, 0.24); }
.chat-handoff-send {
  background: var(--color-accent);
  color: #0d1033;
  border: 1px solid var(--color-accent);
}
.chat-handoff-send:hover:not(:disabled) { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }
.chat-handoff-cancel:disabled,
.chat-handoff-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* Mobile responsive */
@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - var(--space-6) * 2);
    right: var(--space-3);
    bottom: calc(var(--space-4) + 56px + var(--space-3));
    max-height: 70vh;
    border-radius: var(--radius-lg);
  }

  .chat-fab {
    right: var(--space-3);
    bottom: var(--space-4);
  }

  .chat-messages {
    max-height: 50vh;
  }
}

/* ============================================
   LIVE TICKER — RSS marquee under hero
   ============================================ */
.ticker-section {
  padding: var(--space-4) 0 var(--space-2);
}

.ticker__caption {
  margin: var(--space-3) auto 0;
  max-width: 64ch;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.ticker--hidden + .ticker__caption {
  display: none;
}

/* ============================================
   BLOG LIST — announcement-backed posts
   ============================================ */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.blog-list__status {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-12) 0;
  font-size: var(--text-base);
}

.blog-post {
  padding: var(--space-6);
  background: var(--color-surface);
  background: oklch(from var(--color-accent) l c h / 0.04);
  border: 1px solid var(--color-accent-dim);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.18);
  border-radius: var(--radius-md, 0.75rem);
  transition: border-color var(--transition-interactive, 0.2s ease), transform var(--transition-interactive, 0.2s ease);
}

.blog-post:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.blog-post__date {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.blog-post__title {
  font-size: var(--text-xl);
  font-weight: 800;
  margin: 0 0 var(--space-3);
  line-height: 1.3;
  color: var(--color-text);
}

.blog-post__link {
  color: inherit;
  text-decoration: none;
}

.blog-post__link:hover,
.blog-post__link:focus-visible {
  color: var(--color-accent);
}

.blog-post__excerpt {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
  font-size: var(--text-base);
}

.blog-post__readmore {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: opacity var(--transition-interactive, 0.2s ease);
}

.blog-post__readmore:hover,
.blog-post__readmore:focus-visible {
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker {
  --ticker-duration: 60s;
  display: flex;
  align-items: stretch;
  height: 2.75rem;
  background: var(--color-surface);
  background: oklch(from var(--color-accent) l c h / 0.06);
  border: 1px solid var(--color-accent-dim);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.25);
  border-radius: var(--radius-md, 0.5rem);
  overflow: hidden;
  box-shadow: 0 2px 12px oklch(from var(--color-accent) l c h / 0.08);
}

.ticker--hidden {
  display: none;
}

.ticker__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  background: var(--color-accent);
  color: var(--color-primary, #0E1A4A);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker__pulse {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-primary, #0E1A4A);
  animation: ticker-pulse 1.5s ease-in-out infinite;
}

@keyframes ticker-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.75); }
}

.ticker__viewport {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, black 3rem, black calc(100% - 3rem), transparent);
          mask-image: linear-gradient(to right, transparent, black 3rem, black calc(100% - 3rem), transparent);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-left: 3rem;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll var(--ticker-duration) linear infinite;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.ticker__link {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-interactive, 0.2s ease);
}

.ticker__link:hover,
.ticker__link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker__sep {
  display: inline-block;
  color: var(--color-accent);
  font-size: var(--text-sm);
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
    padding-left: var(--space-4);
    transform: none !important;
  }
  .ticker__viewport {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .ticker__pulse {
    animation: none;
  }
}

@media (max-width: 480px) {
  .ticker {
    height: 2.5rem;
  }
  .ticker__label {
    padding: 0 var(--space-3);
    font-size: 0.65rem;
  }
  .ticker__item {
    font-size: var(--text-xs);
  }
  .ticker__track {
    gap: 2rem;
    padding-left: 2rem;
  }
}

/* ============================================================
   PRIORITY 1 — Trust Badges (grid cards with hover lift)
   ============================================================ */
.trust-bar--grid .trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  justify-content: stretch;
}
@media (min-width: 1024px) {
  .trust-bar--grid .trust-bar__inner {
    grid-template-columns: repeat(8, 1fr);
  }
  .trust-bar--grid-4 .trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
    max-width: 880px;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .trust-bar--grid .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trust-item--card {
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  justify-content: center;
  min-height: 96px;
  transition: transform var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.trust-item--card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}
.trust-item--card svg {
  width: 26px;
  height: 26px;
}
.trust-item--highlight {
  background: linear-gradient(145deg, rgba(0, 200, 224, 0.08), rgba(0, 200, 224, 0.02));
  border-color: rgba(0, 200, 224, 0.35);
}
.trust-item--highlight svg {
  color: var(--color-accent);
}
[data-theme="dark"] .trust-item--card {
  background: rgba(255, 255, 255, 0.03);
}
[data-theme="dark"] .trust-item--highlight {
  background: linear-gradient(145deg, rgba(0, 216, 242, 0.12), rgba(0, 216, 242, 0.03));
  border-color: rgba(0, 216, 242, 0.4);
}

/* ============================================================
   PRIORITY 2 — Pricing Promo Banner + Comparison Table
   ============================================================ */
.pricing-promo-banner {
  max-width: 640px;
  margin: 0 auto var(--space-8);
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(90deg, rgba(0,200,224,0.1), rgba(0,180,219,0.05));
  border: 1px solid rgba(0, 200, 224, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-size: var(--text-sm);
  text-align: center;
}
.pricing-promo-banner__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #0d1033;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  margin-right: var(--space-2);
}
.comparison-wrap {
  margin-top: var(--space-16);
  text-align: center;
}
.comparison-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.comparison-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  text-align: right;
}
.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--color-bg);
  text-align: center;
}
.comparison-table thead th {
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 700;
  padding: var(--space-4) var(--space-3);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}
.comparison-table .comparison-feature-col {
  text-align: left;
  background: var(--color-surface);
}
.comparison-table .comparison-col--featured {
  background: linear-gradient(180deg, rgba(0,200,224,0.12), rgba(0,200,224,0.04));
  color: var(--color-text);
  position: relative;
}
.comparison-table .comparison-col--featured::after {
  content: "★";
  position: absolute;
  top: 4px;
  right: 8px;
  color: var(--color-accent);
  font-size: var(--text-xs);
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-divider);
  transition: background var(--transition-interactive);
}
.comparison-table tbody tr:hover {
  background: var(--color-surface);
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  white-space: nowrap;
}
.comparison-table td {
  padding: var(--space-3) var(--space-3);
  color: var(--color-text-muted);
}
.comparison-table .cmp-check {
  color: var(--color-accent);
  font-weight: 700;
  font-size: var(--text-base);
}
.comparison-table .cmp-dash {
  color: var(--color-text-muted);
  opacity: 0.4;
}
[data-theme="dark"] .comparison-table {
  background: rgba(255,255,255,0.02);
}
[data-theme="dark"] .comparison-table thead th,
[data-theme="dark"] .comparison-table th[scope="row"] {
  background: rgba(255,255,255,0.04);
}
[data-theme="dark"] .comparison-table tbody tr:hover {
  background: rgba(0,216,242,0.05);
}

/* Comparison + AI Website Builder swipe carousels (mobile).
   buildComparisonCarousel() + setupCarousel() in js/index.js generate
   the cards and pagination dots. The comparison <table> shows on
   desktop; the carousel shows below 768px. Desktop layout is untouched. */
.cmp-carousel { display: none; text-align: left; }  /* text-align resets .comparison-wrap's centering */

.cmp-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
[data-theme="dark"] .cmp-card {
  background: rgba(255,255,255,0.03);
}
.cmp-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(0,216,242,0.25);
}
.cmp-card__plan {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text);
}
.cmp-card__star {
  color: var(--color-accent);
  font-size: var(--text-base);
}

/* Feature spec list — shared by the comparison cards. */
.cmp-spec { margin: 0; padding: 0; }
.cmp-spec__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
.cmp-spec__row:last-child { border-bottom: none; }
.cmp-spec dt { color: var(--color-text-muted); }
.cmp-spec dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  color: var(--color-text);
}
.cmp-spec dd.cmp-spec__yes { color: var(--color-accent); }
.cmp-spec dd.cmp-spec__no { color: var(--color-text-muted); opacity: 0.5; }
.cmp-spec__yes svg { vertical-align: middle; }

/* Carousel pagination dots — shown only on mobile, when a carousel is active. */
.carousel-dots { display: none; }
.carousel-dot {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.carousel-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.carousel-dot[aria-current="true"]::before {
  background: var(--color-accent);
  transform: scale(1.4);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--color-accent);
  border-radius: 50%;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-dot::before { transition: none; }
}

/* Quick-jump link surfacing the comparison near the top of #pricing. */
.cmp-jump__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.cmp-jump__link:hover { border-bottom-color: currentColor; }

/* Mobile (<=768px): activate the swipe carousels, hide the wide table. */
@media (max-width: 768px) {
  .swipe-track {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* top room for the "Most Popular" badge poke; bottom for card shadow */
    padding: var(--space-4) 0 var(--space-3);
  }
  .swipe-track::-webkit-scrollbar { display: none; }
  .swipe-track > * {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .swipe-track > .reveal { opacity: 1; transform: none; }
  /* pricing carousel: full width (override the stacked-layout max-width) */
  .pricing-grid.swipe-track { max-width: none; }
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-4);
  }
  /* .comparison-scroll stays visible by default on mobile as a horizontal-scroll
     fallback. buildComparisonCarousel() adds .has-cmp-carousel to the wrap on
     success, which then hides the table and shows the carousel. If the JS-built
     carousel fails (e.g., an iOS WebKit-specific quirk), the user still sees
     the comparison data via the scrollable table instead of empty space. */
  .comparison-wrap.has-cmp-carousel .comparison-scroll { display: none; }
}

/* Cost-comparison table on wordpress-hosting-with-website-builder.html.
   Below 600px the 4-column table stacks into per-row cards using the
   data-label attribute on each <td>. Desktop (>600px) is unchanged. */
@media (max-width: 600px) {
  .cost-table thead { display: none; }
  .cost-table,
  .cost-table tbody,
  .cost-table tr,
  .cost-table td { display: block; width: 100%; }
  .cost-table tr {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-bottom: var(--space-3);
  }
  .cost-table td {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    text-align: right !important;
    padding: var(--space-1) 0 !important;
  }
  .cost-table td:first-child {
    font-weight: 700;
    text-align: left !important;
    border-bottom: 1px solid var(--color-divider);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2) !important;
  }
  .cost-table td[data-label]::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: left;
  }
}

/* ============================================================
   PRIORITY 3 — Coming Soon services grid
   ============================================================ */
.coming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (max-width: 1023px) {
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .coming-grid { grid-template-columns: 1fr; }
}
.service-card--coming {
  position: relative;
  cursor: default;
  transition: transform var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.service-card--coming:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
}
.coming-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-accent);
  color: #0d1033;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px var(--space-2);
  border-radius: var(--radius-full);
  white-space: nowrap;
  z-index: 1;
}

/* ============================================================
   PRIORITY 4 — Pricing CTA (ribbon + guarantee + countdown)
   .pricing-card has NO overflow:hidden (the "Most Popular" badge
   must poke above the top edge). The diagonal ribbon is instead
   contained by its own .pricing-ribbon-clip wrapper.
   ============================================================ */
.pricing-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pricing-cta .btn {
  width: 100%;
}
/* Corner clipper for the diagonal ribbon. On desktop/tablet overflow
   stays visible, so the ribbon overhangs the card exactly as before.
   On mobile (<=768px) overflow:hidden clips the overhang flush to the
   card edge so it cannot poke out or cause horizontal scroll. */
.pricing-ribbon-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .pricing-ribbon-clip {
    overflow: hidden;
    border-top-right-radius: var(--radius-xl);
  }
}
.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -40px;
  width: 150px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #00d4ff 0%, #00b4db 100%);
  color: #0d1033;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px 0;
  box-shadow: 0 2px 8px rgba(0, 180, 219, 0.35);
  z-index: 2;
  pointer-events: none;
  animation: ribbon-shimmer 3s ease-in-out infinite;
}
@keyframes ribbon-shimmer {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 180, 219, 0.35); }
  50%      { box-shadow: 0 2px 16px rgba(0, 216, 242, 0.65); }
}
.pricing-guarantee {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}
.pricing-card--featured .pricing-guarantee { color: rgba(255,255,255,0.75); }
.pricing-countdown {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-align: center;
  font-weight: 600;
}
.pricing-countdown strong {
  font-weight: 800;
  color: var(--color-accent);
}
.pricing-card--featured .pricing-countdown,
.pricing-card--featured .pricing-countdown strong {
  color: #00d8f2;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-ribbon { animation: none; }
}

/* WELCOME50 promo mode — activated via ?promo=WELCOME50 */
.pricing-ribbon--promo {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  color: #1a1033;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}
.pricing-price--promo .pricing-price__original {
  display: block;
  width: 100%;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(239, 68, 68, 0.7);
  margin-bottom: 2px;
  font-weight: 600;
}
.pricing-card--featured .pricing-price--promo .pricing-price__original {
  color: rgba(255,255,255,0.7);
}
.pricing-price--promo {
  flex-wrap: wrap;
}
html.promo-welcome50 .pricing-promo-banner {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(249, 115, 22, 0.14));
  border-color: rgba(249, 115, 22, 0.4);
}
html.promo-welcome50 .pricing-promo-banner__badge {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #1a1033;
}

/* ============================================================
   PRIORITY 5 — FAQ Accordion
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: var(--space-12) auto 0;
  border-top: 1px solid var(--color-divider);
}
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) var(--space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition-interactive);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--color-accent); }
.faq-item > summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform var(--transition-interactive),
              border-color var(--transition-interactive),
              color var(--transition-interactive);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 var(--space-2) var(--space-5);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-muted);
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

/* ============================================================
   PRIORITY 6 — Success Metrics
   ============================================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (max-width: 767px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
.metric-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-4);
  text-align: center;
  transition: transform var(--transition-interactive),
              border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}
.metric-unit {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--color-text-muted);
}
.metric-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}
[data-theme="dark"] .metric-card {
  background: rgba(255,255,255,0.03);
}

/* ── SEO Toolkit section ────────────────────────────────── */
.seo-toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  align-items: stretch;
}
.seo-toolkit-note {
  text-align: right;
  margin-top: var(--space-8);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
@media (max-width: 1023px) {
  .seo-toolkit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .seo-toolkit-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PWA INSTALL TOAST
   Shown by /js/pwa-install.js when the browser fires
   beforeinstallprompt (Android Chrome, Edge, etc.).
   ============================================================ */
.pwa-install-toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.875rem 1rem;
  background: rgba(15, 22, 38, 0.96);
  border: 1px solid rgba(0, 200, 224, 0.35);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9998;
  backdrop-filter: blur(10px);
  animation: pwa-install-slide-in 0.32s ease-out;
}

@keyframes pwa-install-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.pwa-install-toast__body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pwa-install-toast__icon {
  flex-shrink: 0;
  border-radius: 8px;
}

.pwa-install-toast__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.3;
}

.pwa-install-toast__text strong {
  font-weight: 700;
  font-size: 0.95rem;
}

.pwa-install-toast__text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.pwa-install-toast__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.pwa-install-toast__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.pwa-install-toast__btn--primary {
  background: rgb(0, 200, 224);
  color: #06121f;
}

.pwa-install-toast__btn--primary:hover,
.pwa-install-toast__btn--primary:focus-visible {
  background: rgb(40, 215, 235);
}

.pwa-install-toast__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
}

.pwa-install-toast__btn--ghost:hover,
.pwa-install-toast__btn--ghost:focus-visible {
  color: rgba(255, 255, 255, 0.95);
}

/* =============================================
   DEMOS — Gallery grid + cards (demos.html)
   ============================================= */
.demo-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.demo-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive),
              border-color var(--transition-interactive);
}

.demo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent-dim);
}

.demo-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--color-surface-2);
  overflow: hidden;
  position: relative;
}

.demo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

a.demo-card__media:hover img,
a.demo-card__media:focus-visible img {
  transform: scale(1.03);
}

.demo-card__media--static {
  cursor: default;
}

.demo-card__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.demo-card__niche {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 0 var(--space-2);
}

.demo-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-2);
  line-height: 1.2;
}

.demo-card__desc {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-5);
  flex: 1;
}

.demo-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.demo-card__badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}

.demo-card__cta {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
}

.demo-card__cta:hover,
.demo-card__cta:focus-visible {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.demo-card__note {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.demo-cta {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}

.demo-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 var(--space-3);
}

.demo-cta p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
}

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

@media (max-width: 640px) {
  .demo-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .demo-card__body { padding: var(--space-4) var(--space-5) var(--space-5); }
}
