/* ============================================================
   Kontrora Website — Editorial Luxury Dark
   Black · Bone · Syne · Hairline
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@500;600;700;800&display=swap');

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

:root {
  /* ── Backgrounds — true black family ── */
  --black:    #050505;
  --dark:     #0A0A0A;
  --surface:  #111111;
  --elevated: #171717;

  /* ── Borders — hairlines ── */
  --border:        rgba(237, 232, 224, 0.12);
  --border-strong: rgba(237, 232, 224, 0.22);

  /* ── Bone accent (no blue/teal glow) ── */
  --bone:      #EDE8E0;
  --bone-dim:  rgba(237, 232, 224, 0.08);
  --blue:      #EDE8E0;
  --blue-bright:#F5F1EA;
  --blue-dim:  rgba(237, 232, 224, 0.08);
  --blue-glow: transparent;
  --teal:      #EDE8E0;
  --teal-dim:  rgba(237, 232, 224, 0.1);
  --teal-glow: transparent;
  --grad: #EDE8E0;
  --grad-text: #EDE8E0;

  /* ── Text ── */
  --text-primary:   #EDE8E0;
  --text-secondary: #9A958C;
  --text-muted:     #5C5852;

  /* ── Semantic ── */
  --success: #6B8F71;
  --warning: #C4A574;
  --error:   #C45C5C;
  --info:    #EDE8E0;

  --radius:    0;
  --radius-lg: 2px;
  --radius-xl: 2px;

  --transition: 0.25s ease;
  --font: 'DM Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(237,232,224,0.2); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: rgba(237,232,224,0.4); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -0.02em; }
p  { color: var(--text-secondary); }

a { color: inherit; text-decoration: none; }

/* Neutralize legacy gradient text — solid bone */
.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--text-primary);
  background-clip: unset;
  color: var(--text-primary);
}

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 120px 0; }

/* ── Buttons — square, bone, editorial ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--bone);
  color: var(--black);
  font-weight: 700;
  box-shadow: none;
  z-index: 0;
}
.btn-primary::before,
.btn-primary::after { display: none !important; }
.btn-primary:hover {
  background: #fff;
  color: var(--black);
  transform: none;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--border-strong);
  z-index: 0;
}
.btn-outline::before { display: none !important; }
.btn-outline:hover {
  color: var(--black);
  background: var(--bone);
  border-color: var(--bone);
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
  letter-spacing: 0.08em;
  border: none;
}
.btn-ghost:hover { color: var(--text-primary); }

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a .chevron {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-dropdown:hover > a .chevron { transform: rotate(180deg); }
.nav-dropdown:hover > a { color: #EDE8E0; }

/* Invisible bridge so cursor can move into the menu without closing it */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 16px;
  display: none;
}
.nav-dropdown:hover::after { display: block; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(8px);
  width: 200px;
  min-width: 200px;
  max-width: 220px;
  background: #0A0A0A;
  border: 1px solid rgba(237,232,224,0.14);
  border-radius: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16,1,0.3,1), visibility 0.22s;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.65),
    0 0 0 1px rgba(237,232,224,0.04);
  z-index: 200;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #0A0A0A;
  border-left: 1px solid rgba(237,232,224,0.14);
  border-top: 1px solid rgba(237,232,224,0.14);
  z-index: 1;
}
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,232,224,0.35), transparent);
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  position: relative;
  padding: 12px 14px 12px 16px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A8A39A;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
}
.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #EDE8E0;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.dropdown-item::after {
  content: '→';
  font-size: 0.75rem;
  letter-spacing: 0;
  color: #EDE8E0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.dropdown-item:hover {
  background: rgba(237,232,224,0.06);
  color: #EDE8E0;
  padding-left: 18px;
}
.dropdown-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.dropdown-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(237,232,224,0.06);
}
.dropdown-item h4 {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  margin: 0;
  font-family: inherit;
}
.dropdown-item p {
  display: none;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 84px;
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  overflow: visible;
}
nav::before { display: none; }
nav.scrolled {
  background: var(--black);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
nav.scrolled::before { display: none; }

.nav-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: auto;
  width: auto;
  overflow: visible;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.nav-logo img {
  height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 100%;
  filter: none !important;
  transition: opacity 0.2s ease;
  transform: none !important;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav-logo:hover img {
  filter: none !important;
  transform: none !important;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 2px;
  list-style: none;
  position: static;
  left: auto;
  transform: none;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  background: none !important;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--bone);
  background: none !important;
}
.nav-links a::after { display: none !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--bone);
  border-radius: 0;
}

/* ── Hero buttons ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--bone);
  background: var(--bone);
  color: var(--black);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before { display: none !important; }
.btn-hero-primary:hover {
  background: #fff;
  color: var(--black);
  transform: none;
  box-shadow: none;
}
.btn-hero-primary span,
.btn-hero-primary svg { position: relative; z-index: 1; }
.btn-hero-primary svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--border-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-hero-ghost::before { display: none !important; }
.btn-hero-ghost:hover {
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
  transform: none;
}
.btn-hero-ghost span { position: relative; z-index: 1; }

.btn-hero-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: var(--bone);
  color: var(--black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  white-space: nowrap;
  box-shadow: none;
}
.btn-hero-solid:hover {
  background: #fff;
  transform: none;
  box-shadow: none;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--border-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-hero-outline:hover {
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
  transform: none;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: clip;
  background: var(--black);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: brightness(0.92) contrast(1.08);
}
.hero-video-bg::after {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 50% 48%, rgba(5,5,5,0.62) 0%, rgba(5,5,5,0.15) 55%, transparent 75%),
    linear-gradient(180deg, rgba(5,5,5,0.2) 0%, transparent 30%, transparent 70%, rgba(5,5,5,0.25) 100%);
}

.hero-bg { display: none; }
.hero-grid { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 28px;
  display: block;
}

.hero-badge { display: none !important; }

.hero h1 { margin-bottom: 24px; color: var(--bone); text-align: center; }
.hero p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(237,232,224,0.72);
  text-align: center;
  line-height: 1.7;
}
.hero p strong { color: var(--bone); font-weight: 600; }

.hero-stats { display: none; }

/* ── Section headers ── */
.section-label {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--text-muted);
  background-clip: unset;
  margin: 0 0 16px;
}
.section-header {
  text-align: left;
  margin-bottom: 64px;
  max-width: 640px;
}
.section-header h2 { margin-bottom: 16px; color: var(--bone); }
.section-header p {
  max-width: 520px;
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ── Problem/Solution — VS Layout ── */
.vs-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 56px;
  align-items: stretch;
}

/* Side panels */
.vs-side {
  padding: 48px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vs-before {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.vs-before::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.5), transparent);
}
.vs-after {
  background: rgba(0, 194, 168, 0.04);
  border: 1px solid rgba(59,130,246,0.14);
}
.vs-after::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), transparent);
}

/* Label row */
.vs-side-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.vs-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vs-dot-red  { background: #EF4444; box-shadow: 0 0 8px rgba(239,68,68,0.6); }
.vs-dot-teal { background: var(--blue); box-shadow: 0 0 8px rgba(59,130,246,0.6); }
.vs-before .vs-side-label { color: rgba(239,68,68,0.8); }
.vs-after  .vs-side-label { color: rgba(59,130,246,0.9); }

/* List */
.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.93rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.vs-list li:last-child { border-bottom: none; }
.vs-list li:hover { color: var(--text-primary); }

/* Numbered items (before) */
.vs-num {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(239,68,68,0.4);
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
  min-width: 20px;
}
.vs-list li:hover .vs-num { color: rgba(239,68,68,0.7); }

/* Check icon (after) */
.vs-check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
}

/* Center VS divider */
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  gap: 12px;
  align-self: stretch;
}
.vs-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
}
.vs-divider-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
}


/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.feature-card {
  background: var(--dark);
  border: none;
  border-radius: 0;
  padding: 32px 28px;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Accent line — unique color per card via nth-child */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:nth-child(1)::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #06B6D4, #22D3EE); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, #10B981, #34D399); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, #EF4444, #F87171); }
.feature-card:nth-child(7)::before { background: linear-gradient(90deg, #EC4899, #F472B6); }
.feature-card:nth-child(8)::before { background: linear-gradient(90deg, #3B82F6, #00C2A8); }
.feature-card:nth-child(9)::before { background: linear-gradient(90deg, #6366F1, #818CF8); }

/* Card number badge */
.feature-card::after {
  content: counter(feature-counter, decimal-leading-zero);
  counter-increment: feature-counter;
  position: absolute;
  top: 28px; right: 24px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.1);
  font-variant-numeric: tabular-nums;
}

.features-grid { counter-reset: feature-counter; }

.feature-card:hover {
  background: var(--elevated);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Icon color per card */
.feature-card:nth-child(1) .feature-icon { background: transparent; color: #60A5FA; border: none; }
.feature-card:nth-child(2) .feature-icon { background: transparent; color: #A78BFA; border: none; }
.feature-card:nth-child(3) .feature-icon { background: transparent; color: #22D3EE; border: none; }
.feature-card:nth-child(4) .feature-icon { background: transparent; color: #34D399; border: none; }
.feature-card:nth-child(5) .feature-icon { background: transparent; color: #FCD34D; border: none; }
.feature-card:nth-child(6) .feature-icon { background: transparent; color: #F87171; border: none; }
.feature-card:nth-child(7) .feature-icon { background: transparent; color: #F472B6; border: none; }
.feature-card:nth-child(8) .feature-icon { background: transparent; color: #60A5FA; border: none; }
.feature-card:nth-child(9) .feature-icon { background: transparent; color: #818CF8; border: none; }

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.feature-card p { font-size: 0.87rem; line-height: 1.65; color: var(--text-secondary); }

/* ── Comparison table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-table th {
  background: var(--elevated);
  padding: 16px 24px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.comparison-table th.highlight { color: var(--blue); }
.comparison-table td {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  background: var(--surface);
}
.comparison-table td.highlight {
  color: var(--blue);
  font-weight: 600;
}
.comparison-table tr:hover td { background: var(--elevated); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 0;
  overflow: visible;
}

.pricing-card {
  background: var(--elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card.featured {
  padding-top: 36px;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.15);
}

/* Featured card — dramatic gradient */
.pricing-card.featured {
  background: linear-gradient(145deg, #0d1f3c 0%, #0a1628 40%, #0d1a2e 100%);
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 8px 40px rgba(59,130,246,0.15);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(59,130,246,0.4), 0 28px 64px rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.7);
}

/* Decorative corner glow on featured */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.pricing-badge {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  background: var(--bone);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  box-shadow: none;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}

.pricing-name { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pricing-price { font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-features li .check {
  width: 18px; height: 18px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0;
  line-height: 0;
}
.pricing-features li .check::before {
  content: '\2713';
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}
.pricing-card.featured .pricing-features li .check {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.4);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--elevated);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Large decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; right: 20px;
  font-size: 7rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(59,130,246,0.08);
  pointer-events: none;
  user-select: none;
}

/* Bottom gradient border on hover */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #00C2A8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.testimonial-card:hover::after {
  transform: scaleX(1);
}
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-name { font-size: 0.88rem; font-weight: 600; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA ── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 36px; font-size: 1.05rem; }

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* CTA primary — larger, pill */
.cta-actions .btn-primary {
  padding: 14px 32px;
  font-size: 0.82rem;
  border-radius: 100px;
}
/* CTA outline — pill to match */
.cta-actions .btn-outline {
  padding: 14px 28px;
  font-size: 0.78rem;
  border-radius: 100px;
}

/* ── Video section wrapper (body sections) ── */
.video-section-wrap {
  position: relative;
  overflow: visible;
}
/* Allow pricing badge to overflow the clip boundary */
.video-section-wrap .pricing-grid {
  position: relative;
  z-index: 2;
}
.video-section-wrap section:has(.pricing-grid) {
  overflow: visible;
}
/* Network demo video must not be clipped by the page wrap */
.video-section-wrap section.home-network {
  overflow: visible;
}
.video-section-wrap .section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-section-wrap .section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.video-section-wrap .section-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,11,15,0.45);
}
.video-section-wrap > .container,
.video-section-wrap > section > .container,
.video-section-wrap section {
  position: relative;
  z-index: 1;
}

/* ── Home: product preview (immediately after hero) ── */
.home-product-preview {
  padding: 72px 0 88px;
}
@media (max-width: 768px) {
  .home-product-preview {
    padding: 48px 0 56px;
  }
}
.home-product-preview .section-header {
  margin-bottom: 48px;
}
.home-product-preview .home-preview-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 auto 8px;
  max-width: 640px;
  letter-spacing: -0.01em;
}
.home-preview-frame {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--elevated);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  line-height: 0;
  max-width: min(760px, 90%);
  margin-left: auto;
  margin-right: auto;
}
.home-preview-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .home-preview-frame {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .home-preview-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  }
}

/* ── Home: pain + solution (story beats) ── */
.home-pain {
  padding: 0 0 72px;
}
@media (max-width: 768px) {
  .home-pain {
    padding: 0 0 48px;
  }
}
.home-pain .section-header {
  margin-bottom: 40px;
}
.home-pain-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .home-pain-metrics {
    grid-template-columns: 1fr;
  }
}
.home-pain-metric {
  text-align: center;
  padding: 22px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--elevated);
}
.home-pain-num,
.home-pain-word {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.home-pain-num {
  color: #f87171;
}
.home-pain-word {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fca5a5;
}
.home-pain-cap {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}
.home-pain-bullets {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-pain-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.home-pain-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.home-network {
  padding: 72px 0 88px;
}
@media (max-width: 768px) {
  .home-network {
    padding: 48px 0 56px;
  }
}
.home-network .section-header {
  margin-bottom: 40px;
}
.home-network-frame {
  max-width: min(920px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #080b0f;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  line-height: 0;
  min-width: 0;
}
.home-network-frame img,
.home-network-frame video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: contain;
  object-position: center top;
  background: #080b0f;
}

/* ── Home: outcome / solution (after pain) ── */
.home-outcome {
  padding: 0 0 72px;
}
@media (max-width: 768px) {
  .home-outcome {
    padding: 0 0 48px;
  }
}
.home-outcome .section-header {
  margin-bottom: 40px;
}
.home-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .home-outcome-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
.home-outcome-card {
  padding: 28px 24px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--elevated);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Colored left accent bar per card */
.home-outcome-card:nth-child(1) { border-left: 3px solid #3B82F6; }
.home-outcome-card:nth-child(2) { border-left: 3px solid #00C2A8; }
.home-outcome-card:nth-child(3) { border-left: 3px solid #8B5CF6; }

/* Decorative large number */
.home-outcome-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -12px; right: 16px;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.home-outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.home-outcome-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.home-outcome-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ── Home: four spotlight rows (marketing depth) ── */
.home-spotlight {
  padding: 72px 0 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .home-spotlight {
    padding: 48px 0 56px;
  }
}
.home-spotlight .section-header {
  margin-bottom: 48px;
}
.home-spot-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.home-spot-row:last-child {
  margin-bottom: 0;
}
.home-spot-row--reverse .home-spot-copy {
  order: 2;
}
.home-spot-row--reverse .home-spot-visual {
  order: 1;
}
@media (max-width: 900px) {
  .home-spot-row,
  .home-spot-row.home-spot-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .home-spot-row--reverse .home-spot-copy,
  .home-spot-row--reverse .home-spot-visual {
    order: unset;
  }
}
.home-spot-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.home-spot-copy > p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.home-spot-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-spot-benefits li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
.home-spot-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.home-spot-frame {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--elevated);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59,130,246,0.08);
  line-height: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.home-spot-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59,130,246,0.15);
}
.home-spot-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.home-spot-visual--card {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.home-spot-placeholder {
  width: 100%;
  min-height: 220px;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59,130,246,0.2);
  background: linear-gradient(145deg, rgba(59,130,246,0.08) 0%, var(--elevated) 60%, rgba(0,194,168,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.home-spot-placeholder::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,194,168,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.home-spot-placeholder-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 194, 168, 0.95);
}
.home-spot-placeholder p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 340px;
}

/* ── Home: benefits band ── */
.home-benefits {
  padding: 64px 0 80px;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .home-benefits {
    padding: 48px 0 56px;
  }
}
.home-benefits .section-header {
  margin-bottom: 40px;
}
.home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 960px) {
  .home-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .home-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.home-benefit-card {
  padding: 28px 24px;
  border-radius: 0;
  border: none;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
  counter-increment: benefit-counter;
}
.home-benefits-grid { counter-reset: benefit-counter; }

/* Unique color top bar per card */
.home-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.home-benefit-card:nth-child(1)::before { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
.home-benefit-card:nth-child(2)::before { background: linear-gradient(90deg, #10B981, #34D399); }
.home-benefit-card:nth-child(3)::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.home-benefit-card:nth-child(4)::before { background: linear-gradient(90deg, #3B82F6, #00C2A8); }

/* Ghost number watermark */
.home-benefit-card::after {
  content: counter(benefit-counter, decimal-leading-zero);
  position: absolute;
  bottom: -10px; right: 14px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.home-benefit-card:hover {
  background: var(--elevated);
}
.home-benefit-card:hover::before { opacity: 1; }

.home-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.home-benefit-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Benefit card icon — unique color per card */
.benefit-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.home-benefit-card:nth-child(1) .benefit-icon { background: transparent; color: #FCD34D; border: none; }
.home-benefit-card:nth-child(2) .benefit-icon { background: transparent; color: #34D399; border: none; }
.home-benefit-card:nth-child(3) .benefit-icon { background: transparent; color: #A78BFA; border: none; }
.home-benefit-card:nth-child(4) .benefit-icon { background: transparent; color: #60A5FA; border: none; }

.home-benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Other icon types used across pages */
.value-card .icon {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--bone);
}
.hosting-card .icon {
  width: 56px; height: 56px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--bone);
}
.group-icon {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--bone);
}
.priority-card .icon {
  width: 52px; height: 52px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--bone);
}
.channel-icon {
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bone);
}
.visual-icon {
  position: relative;
  z-index: 1;
  color: var(--blue);
}

/* ── Kontrora PSA overview (Features page — architecture + product shots) ── */
.psa-showcase {
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .psa-showcase {
    padding: 40px 0 52px;
  }
}
.psa-showcase .section-header {
  margin-bottom: 36px;
}
.psa-showcase .section-header p {
  max-width: 520px;
}
.home-psa-visual-wrap {
  position: relative;
  margin-top: 8px;
}
.home-psa-visual-wrap::before {
  content: '';
  position: absolute;
  inset: -12% -8% 35%;
  background: url('/images/Home/Network.gif') 50% 40% / min(900px, 140%) no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.home-psa-flow,
.home-psa-bento {
  position: relative;
  z-index: 1;
}
.home-psa-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px 6px;
  margin-bottom: 40px;
}
.home-psa-flow-step {
  flex: 0 1 132px;
  text-align: center;
  padding: 22px 14px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(8, 11, 15, 0.75) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.home-psa-flow-step-accent {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 16px 44px rgba(59, 130, 246, 0.12);
}
.home-psa-flow-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
}
.home-psa-flow-step-accent .home-psa-flow-icon {
  background: rgba(0, 194, 168, 0.15);
  color: #00c2a8;
}
.home-psa-flow-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.home-psa-flow-sub {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.home-psa-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
  padding: 0 2px;
}
.home-psa-flow-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-psa-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .home-psa-bento {
    grid-template-columns: 1fr;
  }
  .home-psa-flow {
    flex-direction: column;
    align-items: center;
  }
  .home-psa-flow-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}
.home-psa-shot {
  margin: 0;
  text-align: center;
}
.home-psa-shot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 11, 15, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  line-height: 0;
}
.home-psa-shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.home-psa-shot figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Footer (old rules removed — see new footer below) ── */
.footer-video-bg { display: none; }
footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; color: rgba(255,255,255,0.7); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-social-link:hover {
  background: transparent;
  border: none;
  color: var(--bone);
  transform: none;
  box-shadow: none;
  opacity: 0.85;
}
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #ffffff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.75); transition: color var(--transition), padding-left 0.2s ease; }
.footer-col ul li a:hover { color: var(--blue); padding-left: 6px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--blue); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: visible;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}
.page-hero::before { display: none; }
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 {
  margin-bottom: 20px;
  max-width: 720px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.2;
  overflow: visible;
  padding-bottom: 0.08em;
  text-align: center;
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ── Tag ── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.10s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.20s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.30s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.35s; }
.features-grid .feature-card:nth-child(9) { transition-delay: 0.40s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.06s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.12s; }

/* Glow pulse on teal elements */
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 12px rgba(59,130,246,0.2); }
  50%      { box-shadow: 0 0 28px rgba(59,130,246,0.5); }
}

/* Nav link underline slide */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Feature card hover — handled by grid tile system */
.feature-card {
  transition: background 0.25s ease;
}
.feature-card:hover {
  background: var(--elevated);
}

/* Primary btn — gradient reveal handled by ::before */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after { display: none; }
.btn-primary:hover::after { display: none; }

/* Hero badge float — removed */

/* Section label slide in */
.section-label {
  display: inline-block;
  animation: none;
}

/* Teal line draw on section headers */
.section-header h2 {
  position: relative;
}

/* Smooth card entrance for pricing */
.pricing-card {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.3s ease;
}

/* Testimonial card hover lift */
.testimonial-card {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
/* (hover styles consolidated below) */

/* Comparison table row highlight */
.comparison-table tr {
  transition: background 0.2s ease;
}

/* Footer link hover */
.footer-col ul li a {
  position: relative;
  padding-left: 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col ul li a:hover {
  padding-left: 6px;
}

/* Page hero text reveal */
.page-hero h1, .page-hero p {
  animation: heroReveal 0.6s ease both;
}
.page-hero p { animation-delay: 0.1s; }
@keyframes heroReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Teal dot in badge */
.hero-badge .dot {
  animation: pulse 2s infinite;
}

/* Mobile menu slide down */
.mobile-menu {
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

/* ── Mobile nav ── */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(8,11,15,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Hide crowded desktop nav earlier — long translations need room */
@media (max-width: 1200px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .vs-layout { grid-template-columns: 1fr; }
  .vs-divider { flex-direction: row; padding: 20px 0; align-self: auto; }
  .vs-divider-line { flex: 1; width: auto; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent); }
  .vs-side { padding: 32px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 12px 16px; }
}

/* Hide Download button on mid-size screens to keep Sign In + Get Started visible */
@media (max-width: 1100px) {
  .nav-download-wrap { display: none; }
}
@media (max-width: 900px) {
  .nav-lang-btn span:last-of-type { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Download Section ── */
.hero-version-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding-top: 28px; /* room for the badge */
  overflow: visible;
}

.download-card {
  background: var(--elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.download-card::before {
  display: none;
}
.download-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.download-card:hover::before { opacity: 0; }

.download-card-featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(145deg, #0d1f3c 0%, var(--elevated) 60%);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.12);
}
.download-card-featured::before { display: none; }

.download-badge-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}

.download-os-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
  transition: background 0.25s ease;
}
.download-card:hover .download-os-icon {
  background: rgba(59,130,246,0.15);
}

.download-os-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.download-os-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.download-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.download-version {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.download-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.download-footnote strong { color: var(--text-secondary); }
.download-footnote a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.download-footnote a:hover { opacity: 0.8; }

/* btn-sm variant */
.btn-sm {
  padding: 7px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* Stagger download cards */
.download-grid .download-card:nth-child(1) { transition-delay: 0s; }
.download-grid .download-card:nth-child(2) { transition-delay: 0.08s; }
.download-grid .download-card:nth-child(3) { transition-delay: 0.16s; }

@media (max-width: 768px) {
  .download-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 32px; }
}

/* ── All Download Dropdown Menus (nav, hero, cta) ── */
.nav-download-wrap {
  position: relative;
  z-index: 9999;
}

.nav-download-btn,
.hero-dl-btn,
.cta-dl-btn {
  cursor: pointer;
  user-select: none;
}
.nav-download-btn .chevron,
.hero-dl-btn .chevron,
.cta-dl-btn .chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav-download-menu,
.hero-dl-menu,
.cta-dl-menu {
  display: none;
  position: fixed;
  width: 240px;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  z-index: 9999;
}

.nav-download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s ease;
}
.nav-download-item:hover {
  background: rgba(255,255,255,0.07);
}

.nav-dl-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.nav-dl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dl-os {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.nav-dl-ext {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Hero & CTA wrap ── */
.hero-dl-wrap,
.cta-dl-wrap {
  position: relative;
  display: inline-flex;
}
.hero-dl-btn,
.cta-dl-btn {
  gap: 8px;
}
.hero-dl-btn .chevron,
.cta-dl-btn .chevron {
  width: 14px;
  height: 14px;
}

/* ── Advanced Animations & Effects ── */

/* Scroll progress bar */
body { position: relative; }

/* Cursor glow — only on desktop */
@media (hover: hover) {
  #cursor-glow { display: block; }
}
@media (hover: none) {
  #cursor-glow { display: none !important; }
}

/* Button smooth transitions */
.btn-primary, .btn-hero-primary, .btn-hero-ghost, .btn-hero-solid, .btn-hero-outline {
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* Card base — no 3D tilt */
.feature-card, .pricing-card, .download-card {
  will-change: auto;
  transform-style: flat;
}
.testimonial-card {
  will-change: auto;
  transform-style: flat;
}

/* Feature card inner glow on hover — handled by tile system */
.feature-card:hover {
  background: var(--elevated);
}

/* Section header h2 — static, no shimmer */
.section-header h2 {
  color: var(--text-primary);
}

/* Glowing teal border on cards hover — removed */
.feature-card::after {
  content: none;
}
.feature-card:hover::after { opacity: 0; }

/* Fade-up — no blur, just opacity + translate */
.fade-up {
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  filter: none;
}

/* Home network video: skip blur on this frame — compositing can crop/wash video edges */
.home-network .home-network-frame.fade-up {
  filter: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-network .home-network-frame.fade-up:not(.visible) {
  opacity: 0;
  transform: translateY(32px);
}
.home-network .home-network-frame.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

/* Badge ring — removed */

/* Blue glow pulse — removed */
.download-card-featured {
  box-shadow: 0 0 0 1px rgba(59,130,246,0.12);
}

/* Hero badge — static, no float */
.hero-badge {
  position: relative;
}

/* Nav logo subtle hover scale — handled above */

/* Comparison table row slide */
.comparison-table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}
.comparison-table tbody tr:hover {
  transform: translateX(4px);
}

/* Footer social link spin on hover */
.footer-social-link:hover svg {
  animation: spinOnce 0.4s ease;
}
@keyframes spinOnce {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Page hero text reveal — simple fade, no movement */
.page-hero h1,
.page-hero p,
.page-hero .section-label {
  animation: heroReveal 0.6s ease both;
}
.page-hero p { animation-delay: 0.1s; }
@keyframes heroReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* gradientShift on featured card — removed, static gradient */
.download-card-featured {
  background-position: 0% 50%;
}

/* Smooth underline on footer links */
.footer-col ul li a::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.footer-col ul li a:hover::after {
  transform: scaleX(1);
}
.footer-col ul li a:hover {
  padding-left: 0;
}
/* Constrain underline to text width */
.footer-col ul li {
  display: inline-flex;
}
.footer-col ul {
  align-items: flex-start;
}

/* We are hiring badge */
.hiring-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--teal-dim);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 7px;
  vertical-align: middle;
  animation: hiringPulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}
.hiring-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: hiringDot 2.5s ease-in-out infinite;
}
@keyframes hiringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.25); }
  50%       { box-shadow: 0 0 0 4px rgba(0,194,168,0); }
}
@keyframes hiringDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL CARD HOVER EFFECTS — Clean & Professional
═══════════════════════════════════════════════════════════ */

/* ── Shared base: all cards get position for effects ── */
.feature-card,
.pricing-card,
.testimonial-card,
.download-card,
.hosting-card,
.perk-card,
.job-card,
.group-card,
.priority-card,
.mini-card,
.faq-item {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* ── No shimmer sweep ── */
.feature-card::before,
.testimonial-card::before,
.hosting-card::before,
.perk-card::before,
.job-card::before,
.group-card::before,
.priority-card::before,
.mini-card::before {
  content: none;
}
.feature-card.shimmer-play::before,
.testimonial-card.shimmer-play::before,
.hosting-card.shimmer-play::before,
.perk-card.shimmer-play::before,
.job-card.shimmer-play::before,
.group-card.shimmer-play::before,
.priority-card.shimmer-play::before,
.mini-card.shimmer-play::before {
  content: none;
}

/* ── Clean border on hover ── */
.feature-card:hover,
.hosting-card:hover,
.perk-card:hover,
.group-card:hover,
.priority-card:hover {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
/* ── Pricing card: creative lift ── */
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.15);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(59,130,246,0.4), 0 28px 64px rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.7);
}

/* ── Testimonial card ── */
.testimonial-card {
  position: relative;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #00C2A8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.testimonial-card:hover::after {
  transform: scaleX(1);
}

/* ── Download card ── */
.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

/* ── Job card: slide-right accent line ── */
.job-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), rgba(0, 194, 168, 0));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 2px 2px 0;
}
.job-card:hover {
  transform: translateX(6px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.job-card:hover::after {
  transform: scaleY(1);
}

/* ── Mini card (features page stats) ── */
.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  background: var(--elevated);
}

/* ── FAQ item: subtle left glow ── */
.faq-item {
  transition: background 0.25s ease, padding-left 0.25s ease;
  border-radius: var(--radius);
  padding-left: 0;
}
.faq-item:hover {
  background: rgba(0, 194, 168, 0.03);
  padding-left: 8px;
}

/* ── Perk card icon pop ── */
.perk-card:hover .perk-icon {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.4);
  transform: scale(1.12) rotate(-4deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}
.perk-icon {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}

/* ── Group card (roadmap): clean hover ── */
.group-card::after {
  content: none;
}
.group-card:hover::after { opacity: 0; }

/* ── Priority card: clean hover ── */
.priority-card::after {
  content: none;
}
.priority-card:hover::after { transform: none; }

/* ── Hosting card icon spin ── */
.hosting-card:hover .icon svg {
  transform: rotate(8deg) scale(1.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--blue);
}
.hosting-card .icon svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

/* ── Feature card icon — scale on hover ── */
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.feature-icon {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

/* Fix: pricing-card badge clipping — override global overflow:hidden */
.pricing-card {
  overflow: visible;
}
/* Re-clip only the shimmer pseudo-element via clip-path instead */
.pricing-card::before {
  clip-path: inset(0 0 0 0 round var(--radius-xl));
}

/* Download card: keep overflow visible for badge */
.download-card {
  overflow: visible;
}
.download-card::before {
  display: none;
}
/* Also ensure the section doesn't clip the grid */
#download .container {
  overflow: visible;
}

/* ── Auth Nav User Menu ── */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--elevated);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  cursor: pointer;
  font-family: var(--font);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-user-btn:hover { border-color: var(--blue); background: var(--surface); }
.nav-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  overflow: hidden;
}
.nav-user-dropdown.open { display: block; }
.nav-user-info { padding: 14px 16px; }
.nav-user-fullname { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.nav-user-email { display: block; font-size: 0.78rem; color: var(--text-muted); }
.nav-user-divider { height: 1px; background: var(--border); }
.nav-user-signout {
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--error);
  cursor: pointer;
  transition: background 0.15s ease;
}
.nav-user-signout:hover { background: rgba(239,68,68,0.08); }

.nav-user-profile-link {
  display: block;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s ease;
}
.nav-user-profile-link:hover { background: var(--elevated); color: var(--blue); }

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #FFFFFF;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1;
  font-size: 0.72rem;
  color: #5C5852;
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-text a {
  color: #050505;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #3D3A36; }
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cookie-btn-manage,
.cookie-btn-decline,
.cookie-btn-accept {
  padding: 6px 14px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  line-height: 1.8;
}
.cookie-btn-manage {
  background: transparent;
  color: #3D3A36;
  border: 1px solid rgba(5, 5, 5, 0.28);
}
.cookie-btn-manage:hover { background: rgba(5, 5, 5, 0.06); color: #050505; }
.cookie-btn-decline {
  background: transparent;
  color: #3D3A36;
  border: 1px solid rgba(5, 5, 5, 0.28);
}
.cookie-btn-decline:hover { background: rgba(5, 5, 5, 0.06); color: #050505; }
.cookie-btn-accept {
  background: #050505;
  color: #EDE8E0;
  border: 1px solid #050505;
}
.cookie-btn-accept:hover { background: #171717; border-color: #171717; color: #EDE8E0; }
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 12px;
  }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}

/* ── Language Switcher ── */
.nav-lang-menu { position: relative; }

.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 6px 4px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

/* Underline that draws in on hover */
.nav-lang-btn::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 4px; right: 4px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.nav-lang-btn:hover {
  color: #fff;
}
.nav-lang-btn:hover::after {
  transform: scaleX(1);
}

/* Chevron */
.nav-lang-btn svg {
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.nav-lang-btn:hover svg {
  opacity: 1;
}
.nav-lang-menu:hover .nav-lang-btn svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Flag badge — replaced with plain text, hide the badge styling */
.nav-lang-flag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: none;
  color: inherit;
  border-radius: 0;
  padding: 0;
  line-height: 1;
}

/* Dropdown — sharp, editorial */
.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  background: #0a0e18;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
  z-index: 9999;
  overflow: hidden;
  padding: 4px 0;
  backdrop-filter: none;
}
.nav-lang-dropdown.open { display: block; }

.nav-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 0;
  transition: color 0.15s ease, background 0.15s ease;
  border: none;
  background: none;
  width: 100%;
  font-family: var(--font);
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

/* Active indicator — left bar */
.nav-lang-option.active {
  color: #fff;
  font-weight: 800;
}
.nav-lang-option.active::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: #fff;
  border-radius: 0 2px 2px 0;
}
.nav-lang-option:hover {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.9);
}

/* ── Search ── */
.nav-search-btn {
  width: 36px; height: 36px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}
.nav-search-btn:hover {
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.9;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 99998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  overflow: hidden;
  transform: translateY(-16px);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  margin: 0 16px;
}
.search-overlay.open .search-box { transform: translateY(0); }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.search-input-wrap svg { color: var(--text-muted); flex-shrink: 0; }
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-primary);
}
.search-input::placeholder { color: var(--text-muted); }
.search-close {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.15s ease;
}
.search-close:hover { border-color: var(--text-muted); color: var(--text-primary); }
.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
}
.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
.search-result-item:hover { background: var(--elevated); }
.search-result-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.search-result-title { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.search-result-snippet { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.search-result-snippet mark { background: rgba(59,130,246,0.2); color: var(--blue); border-radius: 2px; padding: 0 2px; }
.search-empty {
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.search-footer {
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.search-footer kbd {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-family: var(--font);
  font-size: 0.7rem;
}

/* ── Nav actions layout fix ── */
.nav-actions {
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 6px !important;
}
#nav-actions-auth {
  display: contents; /* makes it invisible to flex layout — children participate directly */
}
.nav-download-wrap { flex-shrink: 0; }
.nav-lang-menu { flex-shrink: 0; }
.nav-search-btn { flex-shrink: 0; }

/* Divider between utility controls and CTA buttons */
.nav-actions-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 2px;
}

/* Nav CTA button sizing */
.nav-actions .btn {
  padding: 8px 14px;
  font-size: 0.68rem;
  border-radius: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
  max-width: none;
  flex-shrink: 0;
}

/* Nav "Start free trial" — bone outline, no GT-breaking overflow tricks */
.nav-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(237,232,224,0.45);
  color: #EDE8E0;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: visible;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Disable arrow pseudo — conflicts with Google Translate text nodes */
.nav-actions .btn-outline::after {
  content: none !important;
  display: none !important;
}

.nav-actions .btn-outline:hover {
  background: #EDE8E0;
  border-color: #EDE8E0;
  color: #050505;
  transform: none;
}
.nav-actions .btn-outline:hover::after { display: none !important; }
.nav-actions .btn-outline:hover::before { display: none !important; }

/* ── Hide Google Translate toolbar ── */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-gadget,
.goog-te-gadget-simple,
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}
body {
  top: 0 !important;
}
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

/* ── Lang button loading spinner ── */
.nav-lang-btn[data-loading='true'] {
  pointer-events: none;
  opacity: 0.4;
}
.nav-lang-btn[data-loading='true'] span,
.nav-lang-btn[data-loading='true'] svg {
  opacity: 0;
}
.nav-lang-btn[data-loading='true']::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: langSpin .6s linear infinite;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes langSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.nav-lang-btn { position: relative; display: flex; align-items: center; }

/* ── Chatbot widget — always on top ── */
#wl-btn,
#wl-panel {
  z-index: 2147483647 !important;
  position: fixed !important;
  pointer-events: auto !important;
}
#wl-btn {
  bottom: 88px !important;
  right: 24px !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
#wl-btn img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
}
#wl-panel {
  z-index: 2147483646 !important;
  bottom: 168px !important;
  right: 24px !important;
}

.footer-video-bg { display: none; }

/* ── End of styles ── */

/* ── Lucide icon sizing ── */
/* Lucide replaces <i data-lucide> with <svg> — target the SVG */
.feature-icon svg,
.benefit-icon svg,
.perk-icon svg,
.group-icon svg,
.priority-card .icon svg,
.hosting-card .icon svg,
.value-card .icon svg,
.channel-icon svg,
.modal-icon-box svg,
.stack-icon svg {
  display: block;
  stroke-width: 1.75;
}

.feature-icon svg  { width: 20px; height: 20px; }
.benefit-icon svg  { width: 18px; height: 18px; }
.perk-icon svg     { width: 22px; height: 22px; }
.group-icon svg    { width: 22px; height: 22px; }
.priority-card .icon svg { width: 24px; height: 24px; }
.hosting-card .icon svg  { width: 28px; height: 28px; }
.value-card .icon svg    { width: 22px; height: 22px; }
.channel-icon svg  { width: 18px; height: 18px; }
.modal-icon-box svg{ width: 24px; height: 24px; }

/* Button icons */
.btn-hero-primary svg,
.btn svg { width: 16px; height: 16px; stroke-width: 2.25; display: block; }

/* Bio / back buttons */
.bio-btn svg,
.back-close-btn svg { width: 13px; height: 13px; stroke-width: 2.5; display: block; }

/* Nav chevron */
.chevron svg,
svg.chevron { width: 14px; height: 14px; stroke-width: 2.5; }

/* Ensure icon wrapper <i> doesn't collapse before Lucide runs */
i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}

/* ═══════════════════════════════════════════════════════════
   EDITORIAL LUXURY — Homepage + Footer + Neutralize
   ═══════════════════════════════════════════════════════════ */

/* Kill rainbow / glow card accents */
.feature-card::before,
.feature-card::after,
.home-outcome-card::before,
.home-benefit-card::before { display: none !important; }
.feature-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.feature-card:hover {
  transform: none !important;
  border-color: var(--border-strong) !important;
  box-shadow: none !important;
}
.feature-icon {
  background: var(--bone-dim) !important;
  color: var(--bone) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
}

.pricing-card,
.testimonial-card,
.download-card,
.job-card,
.mini-card {
  border-radius: 0 !important;
}

/* CTA */
.cta-section {
  background: var(--dark) !important;
  border-top: 1px solid var(--border);
  text-align: left;
  padding: 120px 0;
}
.cta-section .section-label { margin-bottom: 16px; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  max-width: 640px;
}
.cta-section > .container > p,
.cta-section p {
  max-width: 480px;
  margin: 0 0 40px;
  text-align: left;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Mobile menu — editorial */
.mobile-menu {
  background: var(--black) !important;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-family: var(--font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-radius: 0;
}
.mobile-menu a:hover { color: var(--bone); background: var(--bone-dim); }

/* ── Editorial homepage sections ── */
.ed-wrap {
  background: var(--black);
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.ed-product {
  padding: 0 0 120px;
  border-top: 1px solid var(--border);
}
.ed-product-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.ed-product-caption span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.ed-product-caption p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 420px;
  text-align: right;
}
.ed-product-frame {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 8px;
  overflow: visible;
  background: transparent;
  box-sizing: border-box;
}
.ed-product-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
  border: 1px solid var(--border);
  background: var(--dark);
}

.ed-pain {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.ed-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ed-pain-copy h2 { margin-bottom: 20px; }
.ed-pain-copy > p {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 0;
}
.ed-metrics {
  display: flex;
  flex-direction: column;
}
.ed-metric {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.ed-metric:last-child { border-bottom: 1px solid var(--border); }
.ed-metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.ed-metric-cap {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ed-shift {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--dark);
}
.ed-shift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
}
.ed-shift-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ed-shift-item.visible,
.fade-up.visible .ed-shift-item,
.ed-shift .fade-up.visible + .ed-shift-list .ed-shift-item {
  opacity: 1;
  transform: none;
}
.ed-shift-list.fade-up.visible .ed-shift-item {
  opacity: 1;
  transform: none;
}
.ed-shift-list.fade-up.visible .ed-shift-item:nth-child(1) { transition-delay: 0.05s; }
.ed-shift-list.fade-up.visible .ed-shift-item:nth-child(2) { transition-delay: 0.15s; }
.ed-shift-list.fade-up.visible .ed-shift-item:nth-child(3) { transition-delay: 0.25s; }
.ed-shift-item:last-child { border-bottom: 1px solid var(--border); }
.ed-shift-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 6px;
}
.ed-shift-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--bone);
}
.ed-shift-body p {
  margin: 0;
  max-width: 520px;
  font-size: 0.95rem;
}

.ed-spot {
  padding: 0;
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}
.ed-spot-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.ed-spot-row--reverse { grid-template-columns: 1.2fr 1fr; }
.ed-spot-row--reverse .ed-spot-copy { order: 2; }
.ed-spot-row--reverse .ed-spot-visual { order: 1; }
.ed-spot-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  border-right: 1px solid var(--border);
}
.ed-spot-row--reverse .ed-spot-copy { border-right: none; border-left: 1px solid var(--border); }
.ed-spot-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.ed-spot-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  max-width: 360px;
}
.ed-spot-copy p {
  font-size: 0.98rem;
  max-width: 360px;
  margin: 0;
  line-height: 1.7;
}
.ed-spot-visual {
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.ed-spot-visual img,
.ed-spot-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.ed-close {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}
.ed-close-inner {
  max-width: 720px;
}
.ed-close h2 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 24px;
}
.ed-close p {
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 0 40px;
}
.ed-close-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Rule draw-in on scroll */
.ed-rule {
  height: 1px;
  background: var(--border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.ed-rule.visible,
.fade-up.visible .ed-rule { transform: scaleX(1); }

/* ── Footer (shared) ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
footer .container { position: relative; z-index: 1; }
.fnw {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.fnw .c1 h4,
.fnw .c2 h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bone);
  margin: 0 0 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  -webkit-text-fill-color: var(--bone);
}
.fnw .socials { display: flex; gap: 8px; margin-bottom: 28px; }
.fnw .socials a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
  flex-shrink: 0;
}
.fnw .socials a svg { width: 14px; height: 14px; }
.fnw .socials a:hover {
  background: transparent;
  color: var(--bone);
  border: none;
  transform: none;
  opacity: 0.7;
}
.fnw .ph-block { margin-bottom: 22px; }
.fnw .ph-block > svg,
.fnw .ad-block > svg {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  width: 18px;
  height: 18px;
}
.fnw .ph-block a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.9;
  transition: color 0.2s;
}
.fnw .ph-block a:hover { color: var(--bone); }
.fnw .logo-banner {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}
.fnw .logo-banner img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none !important;
}
.fnw .c2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fnw .c2 ul li a {
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 0;
}
.fnw .c2 ul li a:hover { color: var(--bone); }
.fnw .c3 h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
  background: none;
  -webkit-text-fill-color: var(--bone);
}
.fnw .c3 .sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.fnw .c3 form { display: flex; flex-direction: column; gap: 0; }
.fnw .c3 input,
.fnw .c3 select,
.fnw .c3 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 0;
  font-family: var(--font);
  font-size: 0.84rem;
  color: var(--text-secondary);
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s;
}
.fnw .c3 input::placeholder,
.fnw .c3 textarea::placeholder { color: var(--text-muted); }
.fnw .c3 input:focus,
.fnw .c3 select:focus,
.fnw .c3 textarea:focus {
  border-bottom-color: var(--border-strong);
  background: transparent;
  box-shadow: none;
}
.fnw .c3 select {
  color: var(--text-muted);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.fnw .c3 select option { background: #111; color: #fff; }
.fnw .c3 textarea { resize: none; min-height: 72px; }
.fnw .c3 button {
  width: 100%;
  padding: 16px;
  border-radius: 0;
  background: var(--bone);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s;
}
.fnw .c3 button:hover {
  background: #fff;
  transform: none;
}
.fn-bot {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.fn-bot p { font-size: 0.72rem; color: var(--text-muted); margin: 0; letter-spacing: 0.04em; }
.fn-bot-links { display: flex; gap: 20px; }
.fn-bot-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.fn-bot-links a:hover { color: var(--bone); }

@media (max-width: 960px) {
  .ed-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .fnw { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fnw .c3 { grid-column: 1 / -1; }
  .ed-pain-grid { grid-template-columns: 1fr; gap: 48px; }
  .ed-spot-row,
  .ed-spot-row--reverse { grid-template-columns: 1fr; min-height: 0; }
  .ed-spot-row--reverse .ed-spot-copy,
  .ed-spot-row--reverse .ed-spot-visual { order: unset; }
  .ed-spot-copy,
  .ed-spot-row--reverse .ed-spot-copy {
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 48px 24px;
  }
  .ed-spot-visual img,
  .ed-spot-visual video { min-height: 280px; }
  .hero-content { padding: 0 0 72px; }
  .ed-product-caption { flex-direction: column; align-items: flex-start; }
  .ed-product-caption p { text-align: left; }
}

@media (max-width: 600px) {
  .fnw { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 0 0; }
  .fnw .logo-banner img { height: 36px; }
  .fnw .c3 h3 { font-size: 1.5rem; }
  .fn-bot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .container { padding: 0 20px; }
  nav { padding: 0 20px; }
  .ed-metric { grid-template-columns: 80px 1fr; gap: 16px; }
  .ed-shift-item { grid-template-columns: 40px 1fr; gap: 16px; }
}

.nav-links a::after{display:none!important;}
.nav-logo img{filter:none!important;}

/* ═══════════════════════════════════════════════════════════
   PASS 2 — Inner page editorial overrides
   ═══════════════════════════════════════════════════════════ */

/* Kill orbs / glass / tilt noise */
.orb, .orb-teal, .orb-blue, .orb-purple { display: none !important; }
.tilt-card { transform: none !important; }

/* Feature page rows */
.feature-section {
  padding: 100px 0 !important;
  border-bottom: 1px solid var(--border) !important;
  position: relative;
}
.feature-section::after { display: none !important; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  background: var(--dark) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.feature-visual:hover img {
  transform: none !important;
  box-shadow: none !important;
}
.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--bone);
}
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.feature-bullets li:last-child { border-bottom: 1px solid var(--border); }
.feature-bullets li::before {
  content: "" !important;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--bone);
  flex-shrink: 0;
  color: transparent !important;
}

/* Mini metric cards — editorial hairline grid */
.mini-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
}
.mini-card {
  background: transparent !important;
  border: none !important;
  border-right: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 24px 20px !important;
  transform: none !important;
  box-shadow: none !important;
}
.mini-card:nth-child(2n) { border-right: none !important; }
.mini-card:nth-child(n+3) { border-bottom: none !important; }
.mini-card:hover {
  background: var(--bone-dim) !important;
  border-color: var(--border) !important;
  transform: none !important;
}
.mini-card .label {
  font-size: 0.65rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.14em !important;
}
.mini-card .value {
  font-family: var(--font-display) !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--bone) !important;
  letter-spacing: -0.03em !important;
}
.mini-card .sub {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
}

/* PSA showcase */
.psa-showcase { padding: 100px 0; border-bottom: 1px solid var(--border); }
.home-psa-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.home-psa-shot {
  margin: 0;
  background: var(--dark);
}
.home-psa-shot-frame { overflow: hidden; }
.home-psa-shot-frame img { width: 100%; height: auto; display: block; }
.home-psa-shot figcaption {
  padding: 14px 18px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  padding: 0;
  align-items: stretch;
}
.pricing-card {
  background: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 28px 22px !important;
  box-shadow: none !important;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured,
.pricing-card.popular {
  background: var(--dark) !important;
  transform: none !important;
  box-shadow: none !important;
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  transform: none;
  background: var(--bone) !important;
  color: var(--black) !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 6px 10px !important;
  border-radius: 0 !important;
  background-image: none !important;
  box-shadow: none !important;
}
.billing-toggle, .billing-pill {
  border-radius: 0 !important;
  background: var(--dark) !important;
  border: 1px solid var(--border) !important;
}
.billing-pill span,
.billing-option {
  border-radius: 0 !important;
}
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.hosting-card {
  background: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 36px 28px !important;
  box-shadow: none !important;
}
.hosting-card::before,
.hosting-card::after { display: none !important; }
.hosting-card .icon {
  background: var(--bone-dim) !important;
  color: var(--bone) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
}
.faq-item {
  border: none !important;
  border-top: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.faq-item:last-child { border-bottom: 1px solid var(--border) !important; }

/* Roadmap */
.status-badge {
  border-radius: 0 !important;
  background: var(--bone-dim) !important;
  color: var(--bone) !important;
  border: 1px solid var(--border) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.status-badge .dot,
.status-badge::before { display: none !important; }
.group-card, .priority-card {
  background: var(--black) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.group-card::before,
.priority-card::before,
.group-card::after,
.priority-card::after { display: none !important; }
.group-icon, .priority-card .icon {
  background: transparent !important;
  color: var(--bone) !important;
  border: none !important;
  border-radius: 0 !important;
}

/* About */
.stats-row, .values-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-card, .value-card, .home-benefit-card {
  background: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.stat-card::before, .value-card::before,
.stat-card::after, .value-card::after { display: none !important; }
.origin-block, .mission-block {
  border-top: 1px solid var(--border);
}
.stack-list li {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.timeline-item::before,
.timeline .dot {
  background: var(--bone) !important;
  box-shadow: none !important;
}

/* Careers */
.job-card {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 28px 32px !important;
}
@media (max-width: 768px) {
  .job-card { padding: 20px 20px !important; }
}
.job-card:last-child { border-bottom: 1px solid var(--border) !important; }
.job-card::before { display: none !important; }
.job-tag {
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
.job-tag.remote {
  color: var(--bone) !important;
  border-color: var(--border-strong) !important;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.perk-card {
  background: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 36px 28px !important;
}
.perk-card::before, .perk-card::after { display: none !important; }
.perk-icon {
  background: transparent !important;
  color: var(--bone) !important;
  border: none !important;
  border-radius: 0 !important;
}
.jfp-badge {
  border-radius: 0 !important;
  background: var(--bone-dim) !important;
  color: var(--bone) !important;
  border: 1px solid var(--border) !important;
}
.jfp-apply-btn, .afp-submit-btn {
  border-radius: 0 !important;
  background: var(--bone) !important;
  color: var(--black) !important;
  background-image: none !important;
}
.jfp-apply-btn:hover, .afp-submit-btn:hover {
  background: #fff !important;
  opacity: 1 !important;
}
.jfp-section h4 { color: var(--text-muted) !important; }
.jfp-salary { color: var(--bone) !important; }
.jfp-about-heading { color: var(--text-muted) !important; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-left, .contact-form-panel {
  padding: 64px 48px;
}
.contact-form-panel {
  border-left: 1px solid var(--border);
  background: var(--dark);
}
.contact-row {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.contact-row-dot { display: none !important; }

/* Legal */
.legal-wrap { max-width: 760px; padding: 64px 0 120px; }
.legal-toc {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 24px !important;
}
.legal-highlight {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  border-left: 2px solid var(--bone) !important;
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .pricing-grid, .hosting-grid, .home-psa-bento { grid-template-columns: 1fr; }
  .perks-grid, .values-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form-panel { border-left: none; border-top: 1px solid var(--border); }
  .contact-left, .contact-form-panel { padding: 40px 24px; }
}

.hosting-card .icon,
.perk-icon,
.group-icon,
.value-card .icon,
.priority-card .icon,
.feature-icon,
.benefit-icon,
.channel-icon,
.nav-search-btn,
.footer-social-link,
.fnw .socials a,
#wl-btn {
  background: transparent !important;
  color: var(--bone) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.hosting-card::before,
.job-card::before,
.perk-card::before,
.group-card::before,
.priority-card::before,
.value-card::before,
.stat-card::before,
.hosting-card::after,
.job-card::after,
.perk-card::after,
.group-card::after,
.priority-card::after,
.value-card::after,
.stat-card::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}
.contact-eyebrow::before,
.contact-note::before { background: var(--bone) !important; box-shadow: none !important; }
.billing-option.active {
  background: var(--bone) !important;
  color: var(--black) !important;
  border-radius: 0 !important;
}
.pricing-price { color: var(--bone) !important; font-family: var(--font-display) !important; }


/* ═══════════════════════════════════════════════════════════
   FINAL EDITORIAL LOCK — wins over legacy layers
   ═══════════════════════════════════════════════════════════ */
:root {
  --black: #050505 !important;
  --dark: #0A0A0A !important;
  --surface: #111111 !important;
  --elevated: #171717 !important;
  --bone: #EDE8E0 !important;
  --text-primary: #EDE8E0 !important;
  --text-secondary: #9A958C !important;
  --text-muted: #5C5852 !important;
  --border: rgba(237,232,224,0.12) !important;
  --border-strong: rgba(237,232,224,0.22) !important;
  --blue: #EDE8E0 !important;
  --teal: #EDE8E0 !important;
  --grad: #EDE8E0 !important;
  --grad-text: #EDE8E0 !important;
  --font: 'DM Sans', sans-serif !important;
  --font-display: 'Syne', sans-serif !important;
  --radius: 0 !important;
  --radius-lg: 2px !important;
  --radius-xl: 2px !important;
}

body {
  background: #050505 !important;
  color: #EDE8E0 !important;
  font-family: 'DM Sans', sans-serif !important;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif !important;
  color: #EDE8E0 !important;
}

.gradient-text {
  background: none !important;
  -webkit-text-fill-color: #EDE8E0 !important;
  color: #EDE8E0 !important;
}

nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
}
nav.scrolled {
  background: #050505 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(237,232,224,0.12) !important;
  box-shadow: none !important;
}
.nav-logo {
  height: auto !important;
  width: auto !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
.nav-logo img {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  max-width: 100% !important;
  filter: none !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: left center !important;
}

/* Keep nav logo identical to footer logo size */
@media (max-width: 600px) {
  .nav-logo img {
    height: 36px !important;
    max-height: 36px !important;
  }
}
nav {
  height: 84px !important;
  overflow: visible !important;
}
.nav-inner {
  overflow: visible !important;
  align-items: center !important;
  gap: 16px !important;
}
.nav-links {
  position: static !important;
  left: auto !important;
  transform: none !important;
  flex: 1 1 auto !important;
  justify-content: center !important;
  min-width: 0 !important;
  flex-wrap: nowrap !important;
}
.nav-links a {
  color: #9A958C !important;
  background: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-size: 0.72rem !important;
  white-space: nowrap !important;
  padding: 8px 10px !important;
}
.nav-links a:hover, .nav-links a.active {
  color: #EDE8E0 !important;
  background: none !important;
}
.nav-actions {
  flex-shrink: 0 !important;
  margin-left: auto !important;
  gap: 8px !important;
}
.nav-actions .btn,
.nav-actions .btn-outline {
  overflow: visible !important;
  white-space: nowrap !important;
}
.nav-actions .btn-outline::after {
  content: none !important;
  display: none !important;
}
@media (max-width: 1200px) {
  .nav-links,
  .nav-actions { display: none !important; }
  .nav-toggle { display: flex !important; }
}

.hero {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #050505 !important;
  padding: 0 !important;
}
.hero-grid, .hero-bg, .hero-badge, .hero-stats { display: none !important; }
.hero-video-bg::after {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 65% 50% at 50% 48%, rgba(5,5,5,0.62) 0%, rgba(5,5,5,0.15) 55%, transparent 75%),
    linear-gradient(180deg, rgba(5,5,5,0.2) 0%, transparent 30%, transparent 70%, rgba(5,5,5,0.25) 100%) !important;
  pointer-events: none !important;
}
.hero::after { display: none !important; }
.hero-content {
  text-align: center !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 5 !important;
}
.hero-brand {
  display: block !important;
  text-align: center !important;
}
.hero h1 {
  text-align: center !important;
  color: #EDE8E0 !important;
  font-weight: 800 !important;
}
.hero p {
  text-align: center !important;
  margin: 0 auto 40px !important;
  max-width: 560px !important;
  color: rgba(237,232,224,0.72) !important;
}
.hero-actions { justify-content: center !important; }

.btn-hero-primary,
.btn-primary {
  background: #EDE8E0 !important;
  color: #050505 !important;
  border-radius: 0 !important;
  border: 1px solid #EDE8E0 !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  transform: none !important;
}
.btn-hero-primary:hover,
.btn-primary:hover {
  background: #fff !important;
  color: #050505 !important;
  transform: none !important;
  box-shadow: none !important;
}
.btn-hero-primary::before,
.btn-primary::before { display: none !important; }

.btn-hero-ghost,
.btn-outline {
  background: transparent !important;
  color: #EDE8E0 !important;
  border: 1px solid rgba(237,232,224,0.22) !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  transform: none !important;
}
.btn-hero-ghost:hover,
.btn-outline:hover {
  background: #EDE8E0 !important;
  color: #050505 !important;
  transform: none !important;
}
.btn-hero-ghost::before,
.btn-outline::before { display: none !important; }

.page-hero {
  text-align: center !important;
  padding: 140px 0 72px !important;
  border-bottom: 1px solid rgba(237,232,224,0.12) !important;
  background: #050505 !important;
}
.page-hero::before { display: none !important; }
.page-hero .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.page-hero h1 {
  text-align: center !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-hero p {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 480px !important;
}
.page-hero .section-label {
  text-align: center !important;
}

.section-label {
  background: none !important;
  -webkit-text-fill-color: #5C5852 !important;
  color: #5C5852 !important;
  letter-spacing: 0.18em !important;
}

.section-header { text-align: left !important; }
.cta-section { text-align: left !important; }
.cta-actions { justify-content: flex-start !important; }

.video-section-wrap::before { display: none !important; }

footer { background: #050505 !important; border-top: 1px solid rgba(237,232,224,0.12) !important; }


/* ── CRITICAL FIX: readable type + static labels ── */
.section-label,
.page-hero .section-label,
.cta-section .section-label,
.ed-spot-kicker,
.ed-product-caption span {
  opacity: 1 !important;
  animation: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #9A958C !important;
  color: #9A958C !important;
  visibility: visible !important;
}

h1, h2, h3, h4, h5, h6,
.page-hero h1,
.hero h1,
.hero-brand,
.cta-section h2,
.ed-close h2,
.ed-pain-copy h2,
.section-header h2 {
  opacity: 1 !important;
  animation: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #EDE8E0 !important;
  color: #EDE8E0 !important;
  visibility: visible !important;
}

.hero p, .page-hero p, .section-header p, p {
  -webkit-text-fill-color: unset !important;
}

.pricing-card,
.pricing-card.featured {
  transform: none !important;
  position: relative !important;
  top: auto !important;
  box-shadow: none !important;
  background: #050505 !important;
  border: none !important;
}
.pricing-card.featured {
  background: #0A0A0A !important;
}
.pricing-card.featured::after { display: none !important; }
.pricing-card:hover { transform: none !important; box-shadow: none !important; }
.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1px !important;
  align-items: stretch !important;
  padding: 0 !important;
  background: rgba(237,232,224,0.12) !important;
  border: 1px solid rgba(237,232,224,0.12) !important;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}
.pricing-card,
.pricing-card.featured {
  height: 600px !important;
  min-height: 600px !important;
  max-height: 600px !important;
  box-sizing: border-box !important;
}

/* ── Scroll reveals: hidden until JS marks visible (text stays readable) ── */
html:not(.js) .fade-up,
html:not(.js) .reveal,
html:not(.js) .reveal-left,
html:not(.js) .reveal-right {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

html.js .fade-up:not(.visible),
html.js .reveal:not(.visible),
html.js .reveal-left:not(.visible),
html.js .reveal-right:not(.visible) {
  opacity: 0 !important;
  visibility: hidden;
  will-change: opacity, transform;
}
html.js .fade-up:not(.visible),
html.js .reveal:not(.visible) {
  transform: translateY(32px) !important;
}
html.js .reveal-left:not(.visible) {
  transform: translateX(-36px) !important;
}
html.js .reveal-right:not(.visible) {
  transform: translateX(36px) !important;
}

html.js .fade-up.visible,
html.js .reveal.visible,
html.js .reveal-left.visible,
html.js .reveal-right.visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

.hero p,
.hero p strong,
.page-hero p,
.section-header p,
.ed-pain-copy > p,
.ed-close p,
.ed-spot-copy p,
.contact-sub,
.home-psa-lead {
  color: #C8C2B8 !important;
  -webkit-text-fill-color: #C8C2B8 !important;
  opacity: 1 !important;
}

.hero .btn-hero-primary,
.btn-hero-primary {
  background: #EDE8E0 !important;
  color: #050505 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero .btn-hero-ghost,
.btn-hero-ghost {
  background: transparent !important;
  color: #EDE8E0 !important;
  border: 1px solid rgba(237,232,224,0.45) !important;
  opacity: 1 !important;
}

/* Pricing: kill featured float/glow overlap */
.pricing-card.featured {
  background: #0A0A0A !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  margin: 0 !important;
  top: 0 !important;
  z-index: 1 !important;
}
.pricing-grid {
  overflow: visible !important;
  align-items: stretch !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pricing-grid > .pricing-card {
  height: 600px !important;
  min-height: 600px !important;
  max-height: 600px !important;
  align-self: stretch !important;
}
.video-section-wrap {
  overflow: visible !important;
  position: relative !important;
}
.video-section-wrap::before,
.video-section-wrap::after {
  display: none !important;
}

/* Page heroes: less dead space */
.page-hero {
  padding: 120px 0 56px !important;
  overflow: visible !important;
}

/* ── HARD FIX: tame Syne distortion + pricing type ── */
/* Syne’s lowercase g is designed to look truncated (known issue) — keep it off page heroes */
h1, h2, h3, h4, h5, h6,
.hero h1,
.section-header h2,
.cta-section h2,
.ed-close h2,
.ed-pain-copy h2,
.contact-headline {
  font-family: 'Syne', 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  font-stretch: normal !important;
  font-variation-settings: 'wght' 700 !important;
  line-height: 1.2 !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  overflow: visible !important;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem) !important;
  line-height: 1.15 !important;
}
.page-hero h1 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.45 !important;
  overflow: visible !important;
  padding: 0.12em 0 0.22em !important;
  text-rendering: geometricPrecision !important;
  font-variation-settings: 'opsz' 40, 'wght' 700 !important;
  -webkit-font-smoothing: antialiased !important;
}
.page-hero {
  overflow: visible !important;
}
.page-hero .container {
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}
h2, .section-header h2, .cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  line-height: 1.2 !important;
}

.hero-brand {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #9A958C !important;
  -webkit-text-fill-color: #9A958C !important;
  margin-bottom: 20px !important;
}

.pricing-name {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #9A958C !important;
  margin-bottom: 16px !important;
}
.pricing-price {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2rem, 3vw, 2.75rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  color: #EDE8E0 !important;
  -webkit-text-fill-color: #EDE8E0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}
.pricing-price span {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  color: #9A958C !important;
  -webkit-text-fill-color: #9A958C !important;
}
.pricing-desc {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #9A958C !important;
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
}
.pricing-card {
  padding: 28px 22px !important;
  height: 600px !important;
  min-height: 600px !important;
  max-height: 600px !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}
.pricing-card .btn {
  margin-top: auto !important;
}
.pricing-name {
  margin-bottom: 10px !important;
}
.pricing-price {
  margin-bottom: 8px !important;
}
.pricing-desc {
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  color: #9A958C !important;
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(237,232,224,0.12) !important;
}
.pricing-features {
  gap: 8px !important;
  margin-bottom: 20px !important;
}
.pricing-badge {
  position: static !important;
  display: inline-block !important;
  align-self: flex-start !important;
  margin: 0 0 12px 0 !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  transform: none !important;
  box-shadow: none !important;
  width: auto !important;
  max-width: 100% !important;
}

.container {
  padding-left: 32px !important;
  padding-right: 32px !important;
}


/* ── FINAL LAYOUT FIXES ── */
.billing-toggle {
  background: transparent !important;
  border: none !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  margin: 0 auto 28px !important;
}
.billing-pill {
  display: inline-flex !important;
  width: auto !important;
  background: #111 !important;
  border: 1px solid rgba(237,232,224,0.12) !important;
  border-radius: 0 !important;
  padding: 4px !important;
}
.billing-option.active {
  background: #EDE8E0 !important;
  color: #050505 !important;
}

.pricing-card.featured {
  padding-top: 28px !important;
  transform: none !important;
  margin-top: 0 !important;
  position: relative !important;
  z-index: auto !important;
}
.pricing-badge {
  position: static !important;
  display: inline-block !important;
  align-self: flex-start !important;
  margin: 0 0 14px 0 !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  transform: none !important;
  width: auto !important;
}

.hero .btn-hero-primary {
  background: #EDE8E0 !important;
  color: #050505 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  z-index: 6 !important;
  position: relative !important;
}
.hero .btn-hero-ghost {
  background: rgba(5,5,5,0.55) !important;
  color: #EDE8E0 !important;
  border: 1px solid rgba(237,232,224,0.55) !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  z-index: 6 !important;
  position: relative !important;
}
.hero-actions {
  position: relative !important;
  z-index: 6 !important;
}
.hero-content {
  z-index: 6 !important;
}

.nav-links a {
  color: #C8C2B8 !important;
}


.hero > .container {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.nav-inner {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
nav {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (max-width: 960px) {
  nav {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero > .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.ed-wrap {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.ed-wrap .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 960px) {
  .ed-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.container {
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box !important;
}
@media (max-width: 960px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .ed-wrap .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.hero-video-bg,
.hero-video-bg::before,
.hero-video-bg::after {
  z-index: 0 !important;
  pointer-events: none !important;
}
.hero-video-bg img {
  filter: brightness(0.92) contrast(1.08) !important;
  opacity: 1 !important;
}

.hero-content,
.hero-actions,
.hero h1,
.hero p {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero .btn-hero-primary,
.hero .btn-hero-primary span {
  opacity: 1 !important;
}

/* Hero vertically centered — no bottom offset needed */
.hero-content {
  padding-bottom: 0 !important;
}
.hero-actions {
  gap: 12px !important;
}
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-ghost {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
}

/* ── No outlines on icon controls ── */
#wl-btn,
#wl-btn:hover,
#wl-btn:focus,
.nav-search-btn,
.nav-search-btn:hover,
.footer-social-link,
.footer-social-link:hover,
.fnw .socials a,
.fnw .socials a:hover,
.feature-icon,
.benefit-icon,
.perk-icon,
.group-icon,
.channel-icon,
.hosting-card .icon,
.value-card .icon,
.priority-card .icon,
.modal-icon-box,
.stack-icon,
.careers-modal-icon {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
#wl-btn,
#wl-btn:hover {
  /* chatbot launcher styles live in chatbot.js */
}

/* Company dropdown — editorial polish */
.dropdown-menu {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 220px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(8px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  grid-template-columns: none !important;
  background: #0A0A0A !important;
  border: 1px solid rgba(237,232,224,0.14) !important;
  padding: 8px !important;
  box-shadow: 0 24px 48px rgba(0,0,0,0.65), 0 0 0 1px rgba(237,232,224,0.04) !important;
}
.nav-dropdown:hover .dropdown-menu {
  transform: translateX(-50%) translateY(0) !important;
}
.dropdown-menu::before {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  top: -5px !important;
  left: 50% !important;
  transform: translateX(-50%) rotate(45deg) !important;
  width: 8px !important;
  height: 8px !important;
  background: #0A0A0A !important;
  border-left: 1px solid rgba(237,232,224,0.14) !important;
  border-top: 1px solid rgba(237,232,224,0.14) !important;
}
.dropdown-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 14px 12px 16px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #A8A39A !important;
  background: transparent !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 2 !important;
}
.dropdown-item:hover {
  color: #EDE8E0 !important;
  background: rgba(237,232,224,0.06) !important;
  padding-left: 18px !important;
}
.dropdown-item p { display: none !important; }


/* ═══════════════════════════════════════════════════════════
   SITE MOTION — editorial luxury dark
═══════════════════════════════════════════════════════════ */

html.js .fade-up,
html.js .reveal,
html.js .reveal-left,
html.js .reveal-right {
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero — staggered entrance on load */
html.js .hero-brand {
  animation: edSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both !important;
}
html.js .hero h1 {
  animation: edSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both !important;
}
html.js .hero p {
  animation: edSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both !important;
}
html.js .hero-actions {
  animation: edSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both !important;
}
html.js .ed-shift-list.fade-up.visible .ed-shift-item {
  animation: edSlideUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html.js .ed-shift-list.fade-up.visible .ed-shift-item:nth-child(1) { animation-delay: 0.06s; }
html.js .ed-shift-list.fade-up.visible .ed-shift-item:nth-child(2) { animation-delay: 0.14s; }
html.js .ed-shift-list.fade-up.visible .ed-shift-item:nth-child(3) { animation-delay: 0.22s; }
html.js .hero-video-bg img,
html.js .hero-video-bg video {
  animation: heroBgIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  transition: transform 0.15s linear;
}

@keyframes edSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBgIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

/* Page heroes */
html.js .page-hero .section-label {
  animation: edSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both !important;
}
html.js .page-hero h1 {
  animation: edSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both !important;
}
html.js .page-hero p {
  animation: edSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both !important;
}

/* Section labels — hairline draw */
html.js .section-label {
  position: relative;
}
html.js .section-header.fade-up.visible .section-label::after,
html.js .cta-section.fade-up.visible .section-label::after,
html.js .ed-close.fade-up.visible .section-label::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: rgba(237, 232, 224, 0.35);
  margin-top: 10px;
  animation: lineDraw 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@keyframes lineDraw {
  to { width: 48px; }
}

/* Editorial spotlight rows — split reveal */
html.js .ed-spot-row.fade-up.visible .ed-spot-copy {
  animation: edRevealLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html.js .ed-spot-row.fade-up.visible .ed-spot-visual {
  animation: edRevealRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
html.js .ed-spot-row--reverse.fade-up.visible .ed-spot-copy {
  animation: edRevealRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html.js .ed-spot-row--reverse.fade-up.visible .ed-spot-visual {
  animation: edRevealLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
@keyframes edRevealLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes edRevealRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Product frame — subtle scale in */
html.js .ed-product-frame.fade-up.visible img {
  animation: frameIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes frameIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* Metrics — count-up feel */
html.js .ed-metrics.fade-up.visible .ed-metric {
  animation: metricPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html.js .ed-metrics.fade-up.visible .ed-metric:nth-child(1) { animation-delay: 0.05s; }
html.js .ed-metrics.fade-up.visible .ed-metric:nth-child(2) { animation-delay: 0.12s; }
html.js .ed-metrics.fade-up.visible .ed-metric:nth-child(3) { animation-delay: 0.19s; }
@keyframes metricPop {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons — editorial lift */
.btn, .btn-primary, .btn-outline, .btn-hero-primary, .btn-hero-ghost {
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease !important;
}
.btn-primary:hover,
.btn-hero-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 28px rgba(237, 232, 224, 0.12) !important;
}
.btn-outline:hover,
.btn-hero-ghost:hover {
  transform: translateY(-2px) !important;
}

/* Cards — hover lift (pricing hard-fix overrides transform on cards, skip) */
.feature-card,
.job-card,
.perk-card,
.hosting-card,
.faq-item {
  transition:
    background 0.25s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease !important;
}
.feature-card:hover,
.perk-card:hover,
.hosting-card:hover {
  transform: translateY(-4px);
}

/* Nav — subtle slide-down on load */
html.js nav {
  animation: navDrop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll progress — bone editorial */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 9999;
  pointer-events: none;
  background: #EDE8E0;
  transform-origin: left;
  transition: width 0.08s linear;
}

/* Footer links — slide underline */
.footer-col ul li a {
  transition: color 0.2s ease, padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.footer-col ul li a:hover {
  padding-left: 8px !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.js .fade-up,
  html.js .reveal,
  html.js .reveal-left,
  html.js .reveal-right,
  html.js .hero-brand,
  html.js .hero h1,
  html.js .hero p,
  html.js .hero-actions,
  html.js .page-hero h1,
  html.js .page-hero p,
  html.js nav,
  #wl-btn {
    animation: none !important;
    transition: none !important;
  }
  html.js .fade-up:not(.visible),
  html.js .reveal:not(.visible) {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* Cookie banner — light gray bar (wins over cached / legacy rules) */
.cookie-banner {
  background: #FFFFFF !important;
  border-top: 1px solid rgba(5, 5, 5, 0.12) !important;
}
.cookie-banner-text { color: #5C5852 !important; }
.cookie-banner-text a { color: #050505 !important; }
.cookie-banner-text a:hover { color: #3D3A36 !important; }
.cookie-btn-manage,
.cookie-btn-decline {
  background: transparent !important;
  color: #3D3A36 !important;
  border: 1px solid rgba(5, 5, 5, 0.28) !important;
}
.cookie-btn-manage:hover,
.cookie-btn-decline:hover {
  background: rgba(5, 5, 5, 0.06) !important;
  color: #050505 !important;
}
.cookie-btn-accept {
  background: #050505 !important;
  color: #EDE8E0 !important;
  border: 1px solid #050505 !important;
}
.cookie-btn-accept:hover {
  background: #171717 !important;
  border-color: #171717 !important;
  color: #EDE8E0 !important;
}
