/* ============================================
   ClearMind — Global Styles
   Dark theme, layered mesh gradients, glassmorphism
   Accent: #4962E7 → #51BDE5 + #A044EB → #45C2EF
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #09080A;
  --bg-secondary: #09080A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-tertiary: #5a5a6e;
  --accent: #4962E7;
  --accent-light: #6B9BFF;
  --accent-glow: rgba(73, 98, 231, 0.15);
  --gradient-1: #4962E7;
  --gradient-2: #51BDE5;
  --gradient-3: #A044EB;
  --gradient-4: #45C2EF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'EB Garamond', Georgia, serif;
  --font-hero: 'Instrument Serif', Georgia, serif;
  --text-muted: #9a9aae;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #09080A;
}

body {
  font-family: var(--font);
  background: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Layered background — disabled, flat bg */
body::before {
  display: none;
}

body::after {
  display: none;
}

.body-overlay {
  display: none;
}

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

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

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { color: var(--text-secondary); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* Display font for timers/numbers */
.font-display {
  font-family: var(--font-display);
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 70vw;
  margin: 0 auto;
  padding: 0;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}


/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-glass);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 70vw;
  margin: 0 auto;
  padding: 0;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  top: 4px;
}

.nav-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.logo-text-full {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  transition: transform 0.2s;
}

.nav-cta.liquid-glass {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--text-primary) !important;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-cta.liquid-glass:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: scale(1.03);
}

.nav-cta:hover {
  transform: scale(1.03);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — Linear-style full-screen overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 8, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 101;
  flex-direction: column;
  overflow: hidden;
}

.mobile-menu.active {
  display: flex;
}

/* Header row inside the menu — logo left, actions right */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 58px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.mobile-menu-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-header-login {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.mobile-menu-header-login:hover {
  color: var(--text-primary);
}

.mobile-menu-header-signup {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary) !important;
}

/* Close button */
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  transition: color 0.2s;
  cursor: pointer;
}

.mobile-menu-close:hover {
  color: var(--text-primary);
}

/* Body */
.mobile-menu-body {
  flex: 1;
  overflow: hidden;
  padding: 32px 28px 48px;
  display: flex;
  flex-direction: column;
}

/* Section group */
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Section label — small muted caps */
.mobile-menu-section {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

/* Individual links — large, left-aligned */
.mobile-menu-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 5px 0;
  transition: color 0.15s;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: block;
}

.mobile-menu-link:hover {
  color: var(--accent-light);
}

/* Separator between sections */
.mobile-menu-sep {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
  flex-shrink: 0;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: white;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gradient-3), var(--gradient-4));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(73, 98, 231, 0.3);
}

.btn-primary:hover::before {
  opacity: 0.4;
}

.btn-primary svg,
.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Hero Section — Cinematic Image Background
   ============================================ */

.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  height: 35%;
  background: linear-gradient(to top, rgba(42, 36, 161, 0.5) 0%, transparent 100%);
  border-radius: 0 0 12px 12px;
  pointer-events: none;
  z-index: 0;
}

/* Two-column hero layout */
.hero-two-col {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
}

.hero-desc {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 0;
  text-align: right;
  white-space: nowrap;
}

/* Product image in hero */
.hero-product-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-product-img {
  width: 100%;
  border-radius: 16px;
}

/* Divider between nav links */
.nav-divider {
  color: var(--text-secondary);
  opacity: 0.4;
  font-size: 0.875rem;
  pointer-events: none;
  user-select: none;
}

/* Log in link in nav */
.nav-link-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: color 0.2s;
}

.nav-link-login:hover {
  color: var(--text-primary) !important;
}

/* ============================================
   Dropdown Navigation (Linear-inspired)
   ============================================ */

.nav-dropdown-parent {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-trigger .dropdown-chevron {
  width: 11px;
  height: 11px;
  max-width: 11px;
  max-height: 11px;
  display: block;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown-parent:hover .nav-dropdown-trigger .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(12, 12, 18, 0.97);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 32px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 200;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

/* Invisible bridge to prevent gap hover loss */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown-parent:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

/* Grid columns */
.nav-dropdown-grid {
  display: grid;
  gap: 0;
}

.nav-dropdown-product {
  grid-template-columns: repeat(3, 1fr);
  min-width: 500px;
}

.nav-dropdown-resources {
  grid-template-columns: repeat(3, 1fr);
  min-width: 580px;
}

/* Each column */
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
}

.nav-dropdown-col:last-child {
  padding-right: 0;
}

.nav-dropdown-col + .nav-dropdown-col {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 28px;
  padding-right: 28px;
}

.nav-dropdown-col:last-child {
  padding-right: 0;
}

/* Each item = a link with label + subtitle */
.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 0;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.15s;
}

.nav-dropdown-item:hover {
  opacity: 1;
}

.nav-dropdown-item:hover .nav-dropdown-item-label {
  color: #ffffff !important;
}

.nav-dropdown-item-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
  transition: color 0.15s;
}

.nav-dropdown-item-title {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32) !important;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Mobile: dropdowns hidden on small screens */
@media (max-width: 768px) {
  .nav-dropdown-parent:hover .nav-dropdown {
    display: none;
  }
  .nav-dropdown {
    display: none;
  }
}

/* Phone mockup in hero (legacy) */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
}

.hero-phone-mockup {
  width: 320px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 36px;
  padding: 24px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.phone-screen {
  background: rgba(10, 10, 18, 0.9);
  border-radius: 28px;
  padding: 16px 20px 12px;
  position: relative;
  overflow: hidden;
}

.phone-status-bar {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.phone-timer {
  text-align: center;
  margin-bottom: 48px;
}

.phone-timer .timer-display {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.phone-tab-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-tab {
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.phone-tab.active {
  color: var(--text-primary);
}

.hero-phone {
  max-height: 520px;
  width: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Hero headline — EB Garamond */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 0;
  white-space: nowrap;
  /* Reset any gradient text from previous styles */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero-h1 em {
  font-style: italic;
}

/* Layered gradient for "clarity" — mirrors UIMeshGradient from ColorTheme.swift */
.hero-h1 em.clarity-gradient {
  background:
    linear-gradient(to bottom left, rgba(160, 68, 235, 0.6), rgba(69, 194, 239, 0.4)),
    linear-gradient(to bottom right, #4962E7, #51BDE5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
  margin-right: -0.08em;
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  max-width: 600px;
  margin-top: 32px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Hero CTA buttons */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-btn:hover {
  transform: scale(1.04);
}

.hero-cta-filled {
  background: #fff;
  color: #000;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-filled svg {
  width: 16px;
  height: 16px;
}

.hero-cta-filled:hover {
  transform: scale(1.04);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
   Liquid Glass Effect
   ============================================ */

.liquid-glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
}

/* ============================================
   Fade Rise Animations
   ============================================ */

@keyframes fade-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-rise {
  animation: fade-rise 0.8s ease-out both;
}

.animate-fade-rise-delay {
  animation: fade-rise 0.8s ease-out 0.2s both;
}

.animate-fade-rise-delay-2 {
  animation: fade-rise 0.8s ease-out 0.4s both;
}

/* ============================================
   Live Counter Section
   ============================================ */

/* Fixed bottom pill counter */
.clarity-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 1;
}

.clarity-pill-value {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.clarity-pill-label {
  color: var(--text-secondary);
}

/* Legacy counter styles kept for reference */
.live-counter-legacy {
  display: none;
  overflow: hidden;
}


.counter-content-legacy {
  display: none;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 50%, var(--gradient-4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.counter-sub {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 8px;
}

.counter-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   Hero Stats
   ============================================ */

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ============================================
   Features Section
   ============================================ */

.features {
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.features-header p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Glassmorphism cards */
.feature-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(73, 98, 231, 0.15), rgba(81, 189, 229, 0.1));
  border: 1px solid rgba(73, 98, 231, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Large feature card spanning 2 columns */
.feature-card.feature-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-large .feature-visual {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-glass);
}

/* ============================================
   App Mockup
   ============================================ */

.app-mockup {
  width: 260px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.app-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    linear-gradient(to top right, rgba(30, 36, 92, 0.3) 0%, transparent 60%),
    linear-gradient(to bottom left, rgba(73, 98, 231, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}

.mockup-logo {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.mockup-logo img {
  width: 100%;
  height: 100%;
}

.mockup-icons {
  display: flex;
  gap: 8px;
}

.mockup-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.mockup-timer {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  margin: 24px 0;
  letter-spacing: 0.05em;
  position: relative;
}

.mockup-timer span {
  opacity: 0.4;
  margin: 0 2px;
}

.mockup-stats {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  position: relative;
}

.mockup-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  padding: 6px 0;
}

.mockup-stat-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-stat-label {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.6rem;
}

.mockup-stat-value {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- Card 1: App allow-list mockup ---- */
.mockup-app-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-app-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.mockup-app-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mockup-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Placeholder icons for blocked apps */
.mockup-icon-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
}

.mockup-icon-tt {
  background: #010101 !important;
  position: relative;
}

.mockup-icon-tt::after {
  content: '♪';
  color: #25f4ee;
  font-size: 0.85rem;
  font-weight: 700;
}

.mockup-icon-x {
  background: #000 !important;
  position: relative;
}

.mockup-icon-x::after {
  content: '𝕏';
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.mockup-app-name {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
}

.mockup-app-status {
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.mockup-app-status.allowed {
  color: #34d399;
}

.mockup-app-status.blocked {
  color: #f87171;
}

/* ---- Card 2: Clarity timer additions ---- */
.mockup-clarity {
  width: 100%;
  text-align: center;
}

.mockup-streak-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

/* ---- Card 3: Distraction settings mockup ---- */
.mockup-distraction {
  width: 100%;
}

.mockup-distraction-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-toggle {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.mockup-toggle-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-secondary);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s, background 0.3s;
}

.mockup-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
}

.mockup-setting-label {
  color: var(--text-secondary);
  font-weight: 400;
}

.mockup-setting-value {
  color: var(--text-primary);
  font-weight: 600;
}

.mockup-distraction-footer {
  text-align: center;
  font-size: 0.65rem;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 16px;
  padding-top: 10px;
}

.mockup-btn {
  width: 100%;
  padding: 24px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  position: relative;
}

.mockup-tab-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 16px;
  padding: 8px 0 4px;
  position: relative;
}

.mockup-tab {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-tab.active {
  background: rgba(255, 255, 255, 0.1);
}

.mockup-tab svg {
  width: 14px;
  height: 14px;
  color: var(--text-tertiary);
}

.mockup-tab.active svg {
  color: var(--text-secondary);
}

/* ============================================
   Process Section (Interfere-style)
   ============================================ */

.process-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

/* Ambient glow behind process section */
.process-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gradient-1) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.04;
  top: 30%;
  right: -15%;
  pointer-events: none;
}

/* Gradient divider below process section — removed for seamless flow */
.process-section::after {
  display: none;
}

/* Headline */
.process-headline {
  margin-bottom: 28px;
}

.process-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.01em;
}

.process-h2 sup {
  font-size: 0.34em;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Fira Code', monospace;
  font-weight: 400;
  position: relative;
  top: -0.9em;
  margin-left: -2px;
  letter-spacing: 0;
  transition: color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-word.active + sup {
  color: rgba(255, 255, 255, 0.9);
}

.highlight-word {
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  padding: 1px 5px;
  border-radius: 6px;
  transition: color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.06);
}

.highlight-word.active {
  color: #fff;
  background:
    linear-gradient(to bottom left, rgba(160, 68, 235, 0.15), rgba(69, 194, 239, 0.1)),
    linear-gradient(to bottom right, rgba(73, 98, 231, 0.2), rgba(81, 189, 229, 0.15));
}

/* Cards grid */
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.55s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

/* Cycling state: dim inactive, elevate active */
.process-cards.cycling .process-card {
  opacity: 0.35;
  transform: translateY(0);
}

.process-cards.cycling .process-card.process-active {
  opacity: 1;
  transform: translateY(-8px);
}

.process-cards.cycling .process-card.process-active .process-card-visual {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(255, 255, 255, 0.04);
}

/* Card visual area — the glass rectangle */
.process-card-visual {
  height: 262px;
  padding: 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Gradient border on hover */
.process-card-visual::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(73, 98, 231, 0.3) 0%,
    rgba(81, 189, 229, 0.15) 50%,
    rgba(160, 68, 235, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-card:hover .process-card-visual::after {
  opacity: 1;
}

.process-card:hover .process-card-visual {
  border-color: transparent;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(73, 98, 231, 0.04);
}

.process-card-inner {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover .process-card-inner {
  transform: scale(1.02);
}

/* App-accurate sizing, scaled down to fit card 01 */
.process-card-visual .mockup-app-list {
  gap: 2px;
}
.process-card-visual .mockup-app-row {
  padding: 5px 8px;
  border-radius: 8px;
}
.process-card-visual .mockup-app-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.process-card-visual .mockup-app-icon img {
  border-radius: 6px;
}

/* Card text area — outside the glass box */
.process-card-text {
  padding: 24px 4px 0;
}

.process-step-num {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  background:
    linear-gradient(to bottom left, rgba(160, 68, 235, 0.6), rgba(69, 194, 239, 0.4)),
    linear-gradient(to bottom right, #4962E7, #51BDE5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.process-card-text h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.process-card-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* --- Mockup: Shield (App List) --- */
.process-mockup-shield {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.shield-app-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.shield-app {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 5px 6px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, transform 0.3s ease;
}

.shield-app.blocked {
  background: rgba(248, 80, 80, 0.08);
  border-color: rgba(248, 113, 113, 0.12);
}

.process-card:hover .shield-app {
  background: rgba(255, 255, 255, 0.05);
}

.process-card:hover .shield-app.blocked {
  background: rgba(248, 80, 80, 0.12);
}

.app-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-icon-img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}

.app-icon-img.app-icon-padded {
  width: 26px;
  height: 26px;
  background: #000;
  border-radius: 6px;
  object-fit: contain;
  padding: 2px;
}

.app-name {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.8rem;
}

.app-limit {
  font-size: 0.7rem;
  font-weight: 500;
  flex-shrink: 0;
}

.allowed-limit {
  color: rgba(74, 222, 128, 0.8);
}

.blocked-limit {
  color: rgba(248, 113, 113, 0.7);
}

/* --- Mockup: Timer --- */
.process-mockup-timer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.timer-display {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

.timer-sep {
  opacity: 0.3;
  margin: 0 2px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.timer-label-row {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timer-stats-row {
  display: flex;
  gap: 48px;
  margin-top: 12px;
}

.timer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.timer-stat-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.timer-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Mockup: Control --- */
.process-mockup-control {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.control-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.control-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
}

.control-toggle {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
}

.process-card:hover .control-toggle {
  background: rgba(74, 222, 128, 0.3);
}

.control-toggle-knob {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover .control-toggle-knob {
  transform: translateX(20px);
}

.control-limits {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-limit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.control-limit-val {
  font-weight: 600;
  color: var(--text-primary);
}

.control-timer-reset {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
  font-style: italic;
  padding-top: 4px;
}

/* Process section responsive */
@media (max-width: 768px) {
  .process-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Scroll-driven: smooth fade rather than instant snap */
  .process-cards.cycling .process-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* No lift on mobile — just opacity highlight */
  .process-cards.cycling .process-card.process-active {
    transform: none;
  }

  .process-h2 {
    font-size: 1.6rem;
  }

  .process-headline {
    margin-bottom: 48px;
  }
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-it-works-header h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  counter-increment: step;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================
   Philosophy Section
   ============================================ */

.philosophy {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.philosophy-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content h2 {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.philosophy-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.philosophy-content p:last-child {
  font-size: 1rem;
  line-height: 1.7;
}

/* Cheat Day callout */
.philosophy-callout {
  margin: 40px auto 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  max-width: 560px;
}

.philosophy-callout p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================
   Social Proof / Testimonials
   ============================================ */

/* Single featured testimonial */
.testimonial-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.testimonial-wrap {
  border-radius: var(--radius-xl);
}

.testimonial-featured {
  width: 100%;
  padding: 74px 64px;
  border-radius: var(--radius-xl);
  text-align: center;
  background: transparent;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.6s ease;
}

.testimonial-featured:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Layer 1: Gradient background at 50% opacity */
.testimonial-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%),
    linear-gradient(to top left, rgba(18,18,18,0.4) 0%, rgba(0,0,0,1) 100%),
    linear-gradient(to top right, rgba(30,36,92,1) 0%, rgba(0,0,0,1) 100%);
  opacity: 0.5;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-featured:hover::before {
  opacity: 0.7;
}

/* Layer 2: Dark frosted overlay */
.testimonial-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.testimonial-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* Each word starts dim, lights up on scroll */
.testimonial-featured blockquote .word {
  display: inline;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.testimonial-featured blockquote .word.lit {
  color: var(--text-primary);
}

.testimonial-attribution {
  text-align: center;
  position: relative;
  z-index: 1;
}

.social-proof {
  text-align: center;
  position: relative;
  padding-bottom: 120px;
}

/* Ambient glow */
.social-proof::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gradient-3);
  filter: blur(140px);
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.social-proof-header {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.social-proof-header h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Featured middle card */
.testimonial-card:nth-child(2) {
  background: rgba(73, 98, 231, 0.04);
  border: 1px solid rgba(73, 98, 231, 0.12);
}

.testimonial-card:nth-child(2)::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(73, 98, 231, 0.25) 0%,
    rgba(160, 68, 235, 0.1) 50%,
    transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-card:nth-child(2) blockquote {
  color: rgba(255, 255, 255, 0.7);
}

/* Review highlight — Basecamp-style emphasis on key phrases */
.review-highlight {
  background: rgba(42, 36, 161, 0.5);
  border-radius: 3px;
  padding: 1px 4px;
  margin: 0 -1px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}

.testimonial-featured .testimonial-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.testimonial-featured .testimonial-role {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 1px;
  line-height: 1.2;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  text-align: center;
  position: relative;
  padding: 220px 0;
  border-top: 1px solid var(--border);
}

/* Glow orbs removed */
.cta-section::before,
.cta-section::after {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.cta-section .hero-cta-btn {
  font-size: 0.85rem;
  padding: 9px 24px;
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

.cta-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px calc(15vw);
}

.cta-bottom-ask {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-bottom-ask-label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.cta-bottom-llm-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cta-llm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
  opacity: 0.7;
}

.cta-llm-btn img {
  display: block;
  border-radius: 3px;
}

.cta-llm-btn:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  opacity: 1;
}

.cta-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.8rem;
  font-weight: 500;
  color: #4ade80;
  white-space: nowrap;
}

.cta-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: status-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 72px 0 32px;
  position: relative;
  z-index: 1;
}

/* Gradient divider instead of solid border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px repeat(5, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-col {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.footer-logo-c {
  font-family: 'EB Garamond', serif;
  font-weight: 800;
  font-size: 4rem;
  color: #ffffff;
  line-height: 1;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-transform: capitalize;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--text-tertiary);
  transition: color 0.2s;
  font-size: 0.85rem;
}

.footer-socials a:hover {
  color: var(--text-primary);
}

/* ============================================
   Animations — Scroll Reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 500ms; }

/* Detail section visual: fade in from below with slight scale */
.detail-section .detail-visual.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.detail-section .detail-visual.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Detail text slides in with subtle delay */
.detail-section .detail-text.reveal {
  transition-delay: 150ms;
}

/* ============================================
   Feature Icon (inline SVG style)
   ============================================ */

.feature-icon-inline {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(73, 98, 231, 0.15), rgba(81, 189, 229, 0.1));
  border: 1px solid rgba(73, 98, 231, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-light);
}

.feature-icon-inline svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   Feature Visual — Whitelist Stack
   ============================================ */

.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
}

.visual-app.allowed {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  color: var(--text-primary);
}

.visual-app.blocked {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.12);
  color: var(--text-tertiary);
}

.app-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.allow-tag {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.block-tag {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
}

/* ============================================
   Page-specific: Legal / Text Pages
   ============================================ */

.page-header {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}

.pricing-page-header {
  text-align: left;
  max-width: 70vw;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-page-header {
    max-width: 95vw;
    margin: 0 auto;
  }
}


.page-header h1 {
  position: relative;
  margin-bottom: 16px;
}

.page-header p {
  position: relative;
  font-size: 1.1rem;
}

.legal-content,
.article-content {
  padding: 0 0 100px;
}

.legal-content h2,
.article-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type,
.article-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content p,
.article-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content ul,
.article-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li,
.article-content li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(73, 98, 231, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-content blockquote p {
  color: var(--text-primary);
  font-style: italic;
}

.legal-content h3,
.article-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

/* ============================================
   About Page
   ============================================ */

.about-section {
  padding: 0 0 100px;
}

.about-block {
  margin-bottom: 64px;
  transition: box-shadow 0.55s ease, padding-left 0.55s ease;
}

.about-block h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  transition: color 0.55s ease;
}

/* About keyword cycling animation */
.about-kw {
  display: inline-block;
  color: var(--text-tertiary);
  opacity: 0.35;
  transition: opacity 0.55s ease, color 0.55s ease;
  cursor: pointer;
  font-style: italic;
}

.about-kw.active {
  opacity: 1;
  font-style: normal;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-kw-sep {
  color: var(--text-tertiary);
  opacity: 0.25;
}

.about-block.about-active {
  box-shadow: inset 2px 0 0 0 var(--accent);
  padding-left: 20px;
}

.about-block.about-active h2 {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-block p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.about-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.about-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-step-num {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 40px;
  opacity: 0.5;
}

.about-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.about-step p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-section {
  padding: 0 0 80px;
}

/* Global billing toggle */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.billing-toggle {
  display: inline-flex;
  gap: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.billing-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.billing-opt:hover:not(.billing-opt--active) {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
}

.billing-opt--active {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: #fff;
  box-shadow: 0 2px 12px rgba(73, 98, 231, 0.45);
}

.billing-save {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 2px 6px;
  line-height: 1;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

/* Outer card — thin shell like v1 p-1.5 */
.pricing-card {
  padding: 6px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(73, 98, 231, 0.55);
}

/* Inner header block — v1 Header component */
.pricing-card-inner-header {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px 22px 20px;
  margin-bottom: 4px;
}

/* Glass sheen on top of inner header */
.pricing-card-inner-header::before {
  content: '';
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 120px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 40%, transparent 100%);
}

/* Featured card: accent tint on inner header */
.pricing-card.featured .pricing-card-inner-header {
  background: linear-gradient(160deg, rgba(73,98,231,0.14) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(73,98,231,0.28);
}

.pricing-card.featured .pricing-card-inner-header::before {
  background: linear-gradient(180deg, rgba(73,98,231,0.18) 0%, rgba(73,98,231,0.04) 45%, transparent 100%);
}

/* Plan name + badge row */
.pricing-card-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pricing-plan-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: white;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-badge--soon {
  background: rgba(255,255,255,0.1) !important;
  color: var(--text-tertiary) !important;
}

/* Price display */
.pricing-price-block {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 8px;
}

.price-main {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 400;
  padding-bottom: 4px;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  position: relative;
}

/* Card body — features + CTA */
.pricing-card-body {
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-card-body .btn-primary,
.pricing-card-body .btn-secondary {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.pricing-card--muted {
  opacity: 0.6;
  pointer-events: none;
}

.pricing-card--muted button {
  pointer-events: none;
}

.pricing-faq {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faq-item {
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================
   Invite Page
   ============================================ */

.invite-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.invite-code-display {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  background: var(--bg-glass);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  font-size: 2rem;
  font-weight: 700;
  font-family: 'DM Sans', monospace;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  margin: 32px 0;
  box-shadow: 0 0 40px var(--accent-glow);
  backdrop-filter: blur(16px);
}

.invite-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.invite-step {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.invite-step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(73, 98, 231, 0.15), rgba(81, 189, 229, 0.1));
  border: 1px solid rgba(73, 98, 231, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ============================================
   Blog Navigation
   ============================================ */

.blog-nav {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.blog-nav span {
  color: var(--text-tertiary);
}

.blog-nav a {
  color: var(--accent-light);
  font-weight: 500;
  transition: opacity 0.2s;
}

.blog-nav a:hover {
  opacity: 0.8;
}

/* ============================================
   Gradient Accent Bar (reusable)
   ============================================ */

.gradient-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3), var(--gradient-4));
  border-radius: 2px;
}

/* ============================================
   Detailed Breakdown Sections
   ============================================ */

.detail-section {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow orb behind each section — removed */
.detail-section::before {
  display: none;
}

/* Gradient divider line between sections — removed for seamless flow */
.detail-section + .detail-section::after {
  display: none;
}

.detail-header {
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.detail-num {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.6s ease 0.15s;
}

.detail-text.reveal.visible .detail-num {
  color: rgba(255, 255, 255, 0.95);
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary);
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  text-wrap: balance;
}

.detail-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
}

.detail-content {
  display: grid;
  grid-template-columns: min(420px, 38%) 1fr;
  gap: 0 80px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  min-height: 640px;
}

/* Visual column — bleeds right, fades with mask + overlay */
.detail-visual {
  margin-right: -18vw;
  position: relative;
  display: flex;
  flex-direction: column;
  /* Single-layer right fade — universally supported, no compositing needed */
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 88%);
  mask-image: linear-gradient(to right, black 50%, transparent 88%);
}

/* Radial glow orb behind the mockup card */
.detail-visual::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(73, 98, 231, 0.07) 0%,
    rgba(81, 189, 229, 0.04) 40%,
    transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom fade — painted overlay, works on every browser and every device */
.detail-visual::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #09080A);
  pointer-events: none;
  z-index: 2;
}

.detail-visual .detail-mockup-card {
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Detail stats grid */
.detail-stats {
  padding-top: 0;
  margin-top: auto;
}

.detail-stats-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.detail-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-stat-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.detail-stat-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Mockup placeholder */
.detail-mockup-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Mockup card — large-scale, Linear/Framer-style */
.detail-mockup-card {
  padding: 52px 56px;
  border-radius: 28px;
  position: relative;
  background: rgba(18, 17, 22, 0.9);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.04) inset,
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(73, 98, 231, 0.06);
}

.detail-mockup-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.06) inset,
    0 60px 120px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(73, 98, 231, 0.1);
}

.detail-visual .process-mockup-shield {
  max-width: 100%;
}

.detail-visual .shield-app {
  padding: 12px 14px;
  font-size: 0.85rem;
}

.detail-visual .shield-app .app-icon-img,
.detail-visual .shield-app .app-icon {
  width: 32px;
  height: 32px;
}

.detail-visual .shield-app .app-name {
  font-size: 0.88rem;
}

.detail-visual .shield-app .app-limit {
  font-size: 0.75rem;
}

.detail-visual .process-mockup-timer {
  text-align: center;
  padding: 32px 0;
}

.detail-visual .timer-display {
  font-size: clamp(3rem, 5vw, 4.2rem);
}

.detail-visual .timer-stat-val {
  font-size: 1.1rem;
}

.detail-visual .timer-stats-row {
  margin-top: 20px;
}

.detail-visual .process-mockup-control {
  padding: 12px 0;
}

.detail-visual .control-toggle-row {
  padding: 14px 18px;
}

.detail-visual .control-limit-item {
  padding: 12px 18px;
  font-size: 0.85rem;
}

/* Text column — flex column so title pins top, description+stats pin bottom */
.detail-text {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
}

.detail-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.detail-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 32px;
  margin-bottom: 0;
}

.detail-features {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.detail-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
  transition: color 0.3s ease;
}

.detail-features li:hover {
  color: var(--text-primary);
}

.detail-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.detail-features li:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* ============================================
   Changelog Section
   ============================================ */

.changelog-section {
  padding: 100px 0;
  position: relative;
}

.changelog-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 48px;
}

/* Horizontal timeline */
.changelog-timeline {
  margin-bottom: 24px;
}

.changelog-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.changelog-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
  z-index: 0;
}

.changelog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(80, 80, 90, 1);
  flex-shrink: 0;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
  justify-self: start;
}

.changelog-dot.active {
  background:
    linear-gradient(to bottom left, rgba(160, 68, 235, 0.6), rgba(69, 194, 239, 0.4)),
    linear-gradient(to bottom right, #4962E7, #51BDE5);
  box-shadow: 0 0 10px rgba(73, 98, 231, 0.4);
}

.changelog-line {
  display: none;
}

.changelog-entries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.changelog-entry {
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.changelog-entry:hover {
  transform: scale(1.04);
}

.changelog-entry h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}

.changelog-entry p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.changelog-date {
  font-size: 0.68rem;
  color: #6b6b6b;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Fira Code', monospace;
  letter-spacing: 0.04em;
}

.changelog-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  transition: color 0.2s, gap 0.2s;
  margin-top: 48px;
}

.changelog-see-all:hover {
  color: var(--text-primary);
  gap: 10px;
}

/* Carousel wrap — position context for arrows */
.changelog-carousel-wrap {
  position: relative;
}

/* Arrow buttons — hidden on desktop, shown on mobile */
.changelog-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, opacity 0.2s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.changelog-arrow:hover {
  background: rgba(255, 255, 255, 0.13);
}

.changelog-arrow:disabled {
  opacity: 0.2;
  pointer-events: none;
}

/* ============================================
   Responsive
   ============================================ */

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

  .feature-card.feature-large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .container, .container-narrow, .nav-inner {
    max-width: 95vw;
  }

  .changelog-section {
    display: none !important;
  }

  section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    letter-spacing: -0.5px;
    white-space: normal;
  }

  .hero-right {
    align-items: flex-start;
  }

  .hero-desc {
    text-align: left;
  }

  .hero-cta-btn,
  .hero-cta-filled {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .hero-product-wrap {
    justify-content: flex-start;
    overflow: hidden;
  }

  .hero-product-img {
    width: auto;
    min-width: 880px;
    max-width: none;
  }

  .hero-phone-mockup {
    width: 260px;
  }

  .detail-content {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
  }

  .detail-text {
    display: block;
  }

  .detail-stats {
    margin-top: 32px;
  }

  /* Mobile bleed — right fade + bottom overlay, same technique as desktop */
  .detail-visual {
    margin-right: -22vw;
    display: block;
    -webkit-mask-image: linear-gradient(to right, black 45%, transparent 88%);
    mask-image: linear-gradient(to right, black 45%, transparent 88%);
  }

  .detail-mockup-card {
    padding: 32px 28px;
    min-height: auto;
  }

  .detail-num {
    font-size: 0.7rem;
  }

  .testimonial-featured {
    padding: 36px 28px;
  }

  .changelog-track {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .changelog-entries {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer-logo-col {
    display: none;
  }

  .cta-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-bottom-ask {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-bottom-llm-buttons {
    justify-content: center;
  }

  .about-step {
    flex-direction: column;
    gap: 12px;
  }

  .blog-nav {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Results page — review cards in a single vertical column, slightly smaller */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 16px 18px !important;
  }

  .testimonial-card blockquote {
    font-size: 0.85rem !important;
    margin-bottom: 12px;
  }

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

  .pricing-faq {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .changelog-track {
    display: none;
  }

  .changelog-carousel-wrap {
    padding: 0 48px;
  }

  .changelog-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .changelog-arrow-prev {
    left: 0;
  }

  .changelog-arrow-next {
    right: 0;
  }

  .changelog-entries {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .changelog-entries::-webkit-scrollbar {
    display: none;
  }

  .changelog-entry {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow, .nav-inner {
    max-width: 95vw;
    padding: 0;
  }

  h1 {
    font-size: 2.2rem;
  }

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

/* ============================================
   Detail Section Mockups — Rich UI Panels
   ============================================ */

/* ========================
   01 — Define Mockup
   ======================== */

.dmk-define {
  width: 100%;
  flex: 1;
}

.dmk-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dmk-panel-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

.dmk-panel-status {
  font-size: 0.76rem;
  font-weight: 600;
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

.dmk-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.dmk-section-label-mt {
  margin-top: 20px;
}

.dmk-app-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dmk-app-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.dmk-row-blocked {
  background: rgba(248, 113, 113, 0.04);
  border-color: rgba(248, 113, 113, 0.1);
}

.detail-mockup-card:hover .dmk-app-row {
  background: rgba(255, 255, 255, 0.05);
}

.detail-mockup-card:hover .dmk-row-blocked {
  background: rgba(248, 113, 113, 0.07);
}

.dmk-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dmk-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.dmk-app-name {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.dmk-app-chip {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.dmk-chip-allowed {
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
}

.dmk-chip-blocked {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.dmk-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dmk-footer-text {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.dmk-footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* ========================
   02 — Track Mockup
   ======================== */

.dmk-track {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dtk-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.dtk-timer {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 11vw, 9rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0;
}

.dtk-sep {
  opacity: 0.2;
  margin: 0 2px;
  animation: blink 2s infinite;
}

.dtk-since {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-bottom: 30px;
}

.dtk-week {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.dtk-day-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dtk-day-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.detail-mockup-card:hover .dtk-day-dot {
  transform: translateY(-3px);
}

.dtk-clear {
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.24);
}

.dtk-partial {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.dtk-today-dot {
  background: rgba(73, 98, 231, 0.24);
  border: 1px solid rgba(107, 155, 255, 0.45);
  box-shadow: 0 0 14px rgba(73, 98, 231, 0.25);
}

.dtk-day-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.dtk-today-col .dtk-day-lbl {
  color: var(--accent-light);
}

.dtk-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
}

.dtk-stat-item {
  flex: 1;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.dtk-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  align-self: stretch;
}

.dtk-stat-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.dtk-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Live badge */
.dtk-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.18);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.dtk-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero timer block */
.dtk-hero {
  text-align: center;
  padding: 20px 0 32px;
  position: relative;
  flex-shrink: 0;
}

.dtk-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
}

/* Bar chart */
.dtk-chart {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 24px 0 20px;
}

.dtk-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dtk-chart-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

.dtk-chart-avg {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.dtk-bars {
  display: flex;
  gap: 8px;
  height: 120px;
  align-items: stretch;
}

.dtk-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dtk-bar-track {
  flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.3s ease;
}

.detail-mockup-card:hover .dtk-bar-track {
  border-color: rgba(255, 255, 255, 0.09);
}

.dtk-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(73, 98, 231, 0.55), rgba(107, 155, 255, 0.28));
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dtk-bar-low {
  background: linear-gradient(to top, rgba(251, 191, 36, 0.35), rgba(251, 191, 36, 0.14));
}

.dtk-bar-today {
  background: linear-gradient(to top, rgba(73, 98, 231, 0.9), rgba(107, 155, 255, 0.55));
  box-shadow: 0 0 20px rgba(73, 98, 231, 0.35);
}

.dtk-bar-day {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.dtk-bar-col-today .dtk-bar-day {
  color: var(--accent-light);
}

/* Insight cards — Average / Best / Recent */
.dtk-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
}

.dtk-insight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.detail-mockup-card:hover .dtk-insight-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dtk-insight-card-best {
  background: rgba(73, 98, 231, 0.07);
  border-color: rgba(107, 155, 255, 0.2);
}

.detail-mockup-card:hover .dtk-insight-card-best {
  background: rgba(73, 98, 231, 0.11);
  border-color: rgba(107, 155, 255, 0.3);
}

.dtk-insight-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.dtk-insight-val {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.dtk-insight-val-best {
  color: var(--accent-light);
}

.dtk-insight-sub {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ========================
   02 — App Card Sections (Streak stats + Recent Streaks)
   ======================== */

.dtk-app-sections {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 0 0 4px;
}

.dtk-app-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0.035));
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.detail-mockup-card:hover .dtk-app-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.055));
  border-color: rgba(255,255,255,0.14);
}

/* Base row — horizontal flex, 48px tall */
.dtk-app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 48px;
}

/* Header row (RECENT STREAKS) — 40px, no extra padding */
.dtk-app-row-header {
  height: 40px;
}

/* Divider between rows */
.dtk-app-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 16px;
}

/* Left-side label: "AVERAGE", "BEST", "RECENT STREAKS" — matches DM Sans 13pt semibold */
.dtk-app-label {
  font-family: var(--font);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #a9a9a9;
}

/* Right-side value: EB Garamond semibold ~22px, #888 */
.dtk-app-val {
  font-family: var(--font-display);
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  color: #888888;
  line-height: 1;
}

/* Best row value — subtle blue accent */
.dtk-app-val-best {
  color: rgba(170,185,255,0.9);
}

/* Recent streak rows — 10px v-padding top, 4px bottom (mirrors SwiftUI padding) */
.dtk-app-row-streak {
  height: auto;
  padding: 10px 16px 4px;
  align-items: center;
}

/* Streak duration — EB Garamond 22px semibold, #888 */
.dtk-app-duration {
  font-family: var(--font-display);
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  color: #888888;
  line-height: 1;
}

/* Right-side meta: date + time stacked */
.dtk-app-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.dtk-app-date {
  font-family: var(--font);
  font-size: 0.625rem; /* 10px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

.dtk-app-time {
  font-family: var(--font);
  font-size: 0.75rem; /* 12px */
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

/* ========================
   03 — Control Mockup
   ======================== */

.dmk-control {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.dck-main-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.detail-mockup-card:hover .dck-main-card {
  background: rgba(73, 98, 231, 0.08);
  border-color: rgba(73, 98, 231, 0.22);
}

.dck-main-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dck-main-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dck-main-sub {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.dck-toggle {
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  flex-shrink: 0;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-mockup-card:hover .dck-toggle {
  background: rgba(74, 222, 128, 0.38);
}

.dck-toggle-knob {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.detail-mockup-card:hover .dck-toggle-knob {
  transform: translateX(24px);
}

.dck-settings-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

.dck-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 0.92rem;
  gap: 14px;
}

.dck-setting-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dck-setting-label {
  color: var(--text-secondary);
  flex: 1;
  font-size: 0.92rem;
}

.dck-uses-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dck-use-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.dck-dot-used {
  background: #f87171;
  border-color: rgba(248, 113, 113, 0.5);
}

.dck-setting-val {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.dck-used-val {
  color: #f87171;
}

.dck-enable-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  background: rgba(73, 98, 231, 0.1);
  border: 1px solid rgba(73, 98, 231, 0.2);
  color: var(--accent-light);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.detail-mockup-card:hover .dck-enable-btn {
  background: rgba(73, 98, 231, 0.18);
  border-color: rgba(73, 98, 231, 0.35);
}

.dck-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-tertiary);
  font-style: italic;
  padding-top: 2px;
}


/* ============================================
   INTERACTIVE ENHANCEMENTS v2
   Animated background orbs, cursor glint,
   hero float + parallax, word reveal,
   mockup animations, section bleed
   ============================================ */

/* Ambient orbs — subtle, scroll-linked */
body::before {
  display: block;
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 98, 231, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  top: -200px;
  left: -150px;
  transform: translate(var(--orb-a-x, 0px), var(--orb-a-y, 0px));
  will-change: transform;
}

body::after {
  display: block;
  content: '';
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 98, 231, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  bottom: -150px;
  right: -100px;
  transform: translate(var(--orb-b-x, 0px), var(--orb-b-y, 0px));
  will-change: transform;
}

.body-overlay {
  display: block;
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 98, 231, 0.06) 0%, transparent 70%);
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  top: 40%;
  left: 60%;
  transform: translate(calc(-50% + var(--orb-c-x, 0px)), calc(-50% + var(--orb-c-y, 0px)));
  will-change: transform;
}

/* Ensure all content layers sit above body orbs */
nav, footer {
  position: relative;
  z-index: 1;
}

/* Pill must stay fixed — do not override its position */
.clarity-pill {
  z-index: 999;
  width: auto !important;
}

@media (max-width: 768px) {
  .clarity-pill {
    bottom: 8px;
  }
}

/* --- 2. Hero Product Ambient Glow — removed --- */
.hero-product-wrap {
  position: relative;
}

.hero-product-wrap::before {
  display: none;
}

.hero-product-img {
  position: relative;
  z-index: 1;
}

/* --- 3. Hero Headline Staggered Line Reveal --- */
.hero-line {
  display: inline-block;
  opacity: 0;
  animation: line-rise 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--line-i, 0) * 210ms + 60ms);
}

@keyframes line-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

/* --- 4. Cursor Glint removed --- */

/* --- 5. Process Card Mockup Entry Animations --- */
.process-card.card-visible .mockup-app-row:nth-child(1) {
  animation: row-slide-in 0.5s 0.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.process-card.card-visible .mockup-app-row:nth-child(2) {
  animation: row-slide-in 0.5s 0.14s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.process-card.card-visible .mockup-app-row:nth-child(3) {
  animation: row-slide-in 0.5s 0.23s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.process-card.card-visible .mockup-app-row:nth-child(4) {
  animation: row-slide-in 0.5s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.process-card.card-visible .mockup-app-row:nth-child(5) {
  animation: row-slide-in 0.5s 0.41s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.process-card.card-visible .mockup-app-row:nth-child(6) {
  animation: row-slide-in 0.5s 0.50s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes row-slide-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Blocked status badge pulse */
.mockup-app-status.blocked {
  animation: blocked-pulse 3s ease-in-out infinite;
}

@keyframes blocked-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; text-shadow: 0 0 8px rgba(248, 113, 113, 0.55); }
}

/* --- 6. Looping Toggle Animation (Card 3) --- */
@keyframes toggle-knob-loop {
  0%, 38%  { transform: translateX(0); }
  52%, 88% { transform: translateX(18px); }
  100%     { transform: translateX(0); }
}

@keyframes toggle-bg-loop {
  0%, 38%  { background: rgba(255, 255, 255, 0.1); }
  52%, 88% { background: rgba(74, 222, 128, 0.38); }
  100%     { background: rgba(255, 255, 255, 0.1); }
}

.mockup-toggle {
  animation: toggle-bg-loop 6s ease-in-out 1.5s infinite;
}

.mockup-toggle-knob {
  animation: toggle-knob-loop 6s ease-in-out 1.5s infinite;
}

/* --- 7. Section Gradient Bleed Lines — removed for seamless flow --- */
.testimonial-section {
  position: relative;
}

.testimonial-section::before {
  display: none;
}

/* --- 8. Hero Scroll Parallax CSS var --- */
.hero-product-wrap {
  --parallax-y: 0px;
  /* transform applied by JS scroll handler */
}

/* --- 9. Nav Link Hover --- */
.nav-links a:hover {
  color: #ffffff !important;
}

/* ============================================
   News Hub Page  (nh- prefix)
   ============================================ */

/* Page header */
.nh-page-header {
  padding: 140px 0 56px;
  position: relative;
  z-index: 1;
}

.nh-page-header-inner {
  max-width: 70vw;
  margin: 0 auto;
  text-align: center;
}

.nh-page-header .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}

.nh-page-header h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.nh-page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Filter bar */
.nh-filters-wrap {
  padding: 0;
}

.nh-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 70vw;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nh-filters::-webkit-scrollbar { display: none; }

.nh-filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-tertiary);
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  letter-spacing: 0.01em;
}

.nh-filter-tab:hover {
  color: var(--text-secondary);
}

.nh-filter-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

/* Main content container */
.nh-content {
  max-width: 70vw;
  margin: 0 auto;
  padding: 64px 0 140px;
  position: relative;
  z-index: 1;
}

/* Section labels */
.nh-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  display: block;
}

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

/* ---- Featured card ---- */
.nh-featured-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  min-height: 340px;
}

.nh-featured-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.nh-featured-visual {
  background: linear-gradient(135deg,
    rgba(73, 98, 231, 0.22) 0%,
    rgba(160, 68, 235, 0.18) 50%,
    rgba(69, 194, 239, 0.14) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.nh-featured-glyph {
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.nh-featured-visual-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(160, 68, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.nh-featured-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.nh-featured-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nh-meta-date {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.nh-featured-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  flex: 1;
}

.nh-featured-excerpt {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.nh-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.nh-read-time {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* Arrow button */
.nh-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.nh-featured-card:hover .nh-arrow,
.nh-card:hover .nh-arrow {
  background: var(--text-primary);
  color: #09080A;
  border-color: var(--text-primary);
  transform: translateX(2px);
}

/* ---- Category tags ---- */
.nh-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nh-tag-science {
  background: rgba(139, 92, 246, 0.14);
  color: #b4a4fd;
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.nh-tag-focus {
  background: rgba(73, 98, 231, 0.14);
  color: #93a8fb;
  border: 1px solid rgba(73, 98, 231, 0.22);
}

.nh-tag-mindset {
  background: rgba(16, 185, 129, 0.12);
  color: #4ade9e;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.nh-tag-updates {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.nh-tag-press {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.22);
}

.nh-tag-company {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.nh-tag-book {
  background: rgba(217, 184, 124, 0.12);
  color: #e8c98a;
  border: 1px solid rgba(217, 184, 124, 0.24);
}

/* ---- Article grid ---- */
.nh-grid-section { }

.nh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Article card */
.nh-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.nh-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.nh-card-soon {
  cursor: default;
  opacity: 0.55;
}

.nh-card-soon:hover {
  border-color: var(--border);
  background: var(--bg-card);
}

/* Card visual band */
.nh-card-visual {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nh-card-visual-science {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(73, 98, 231, 0.12) 100%);
}

.nh-card-visual-focus {
  background: linear-gradient(135deg, rgba(73, 98, 231, 0.18) 0%, rgba(69, 194, 239, 0.12) 100%);
}

.nh-card-visual-mindset {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(69, 194, 239, 0.1) 100%);
}

.nh-card-visual-updates {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.nh-card-visual-press {
  height: 140px;
  padding: 0;
}

.nh-card-visual-press img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.nh-card-glyph {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.12);
  user-select: none;
  line-height: 1;
}

.nh-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.nh-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nh-soon-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
}

.nh-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}

.nh-card-excerpt {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.62;
  flex: 1;
  margin: 0;
}

.nh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.nh-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-tertiary);
}

.nh-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-tertiary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Empty state */
.nh-empty {
  display: none;
  text-align: center;
  padding: 80px 0;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* CTA block */
.nh-cta-block {
  margin-top: 80px;
  padding: 1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(73, 98, 231, 0.3), rgba(160, 68, 235, 0.2), rgba(69, 194, 239, 0.2));
}

.nh-cta-inner {
  background: rgba(9, 8, 10, 0.92);
  border-radius: calc(var(--radius-xl) - 1px);
  padding: 56px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nh-cta-inner .eyebrow {
  margin-bottom: 4px;
}

.nh-cta-inner h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.nh-cta-inner p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .nh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nh-featured-card {
    grid-template-columns: 1fr;
  }

  .nh-featured-visual {
    min-height: 180px;
  }

  .nh-featured-body {
    padding: 28px 32px 36px;
  }
}

@media (max-width: 768px) {
  .nh-page-header {
    padding: 110px 24px 44px;
  }

  .nh-page-header-inner {
    max-width: 100%;
  }

  .nh-filters {
    max-width: 100%;
    padding: 0 20px;
  }

  .nh-content {
    max-width: 100%;
    padding: 48px 24px 100px;
  }

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

  .nh-cta-inner {
    padding: 40px 28px;
  }
}


/* ============================================
   Founder Quote (quote-v1)
   ============================================ */

.quote-v1-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.quote-v1-wrap {
  width: 100%;
}

.quote-v1-card {
  position: relative;
  padding: 32px 40px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.quote-v1-card::before {
  display: none;
}

.quote-v1-columns {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.quote-v1-left {
  padding-right: 28px;
}

.quote-v1-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 28px;
}

.quote-v1-left blockquote,
.quote-v1-right blockquote {
  margin: 0;
  padding: 0;
}

.quote-v1-quote {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(0.78rem, 0.88vw, 0.88rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
}

.quote-v1-quote p {
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0 0 1.3em;
  width: auto;
}

.quote-v1-quote p:last-child {
  margin-bottom: 0;
}

.quote-v1-accent {
  font-style: italic;
}

.quote-v1-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-v1-vision-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  line-height: 1;
  color: var(--accent-light, #6B9BFF);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.quote-v1-vision-link:hover {
  gap: 12px;
}

.quote-v1-signature-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.9;
  margin-bottom: 4px;
  align-self: flex-start;
}

.quote-v1-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.quote-v1-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 16px;
}

.quote-v1-title {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  line-height: 1.15;
  margin: 0;
}

.quote-v1-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.12);
}

.quote-v1-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.quote-v1-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-v1-attr-top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.quote-v1-name {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.quote-v1-email {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quote-v1-email:hover {
  color: var(--accent-light, #6B9BFF);
}

.quote-v1-role {
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .quote-v1-columns {
    grid-template-columns: 1fr;
  }
  .quote-v1-left {
    padding-right: 0;
  }
  .quote-v1-right {
    padding-left: 0;
    padding-top: 1.3em;
  }
}

@media (max-width: 768px) {
  .quote-v1-section { padding: 48px 0; }
  .quote-v1-card { padding: 28px 24px; }
  .quote-v1-header { gap: 12px; margin-bottom: 24px; }
  .quote-v1-quote { font-size: 0.85rem; line-height: 1.55; }
  .quote-v1-quote p { margin-bottom: 1em; }
  .quote-v1-footer { margin-top: 16px; gap: 10px; }
  .quote-v1-signature-img { height: 38px; }
  .quote-v1-footer-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Page-specific hero overrides ── */
.results-hero::before { display: none; }
.results-hero { overflow: visible; }

.vision-hero-override::before { display: none; }
.vision-hero-override { overflow: visible; }

@media (max-width: 768px) {
  .vision-hero-override .hero-h1 {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
  }
}
