/* ==========================================
   CLAIRVOS MARKETING SITE
   Premium Light Theme - Clean & Professional
   Violet (#864AEC) Accent
   ========================================== */

/* Fonts */
@font-face {
  font-family: 'Satoshi';
  src: url('https://cdn.fontshare.com/wf/EIXZ6KPGWAIGIUHNZKLEYZCWPZXB3SE7/XHYI77TQN5V4EFQJ5LBOCWLVGCGWRLBV/WSQAFKSTLHTLNVDYDHBMMFM5YQVLLCPH.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('https://cdn.fontshare.com/wf/EIXZ6KPGWAIGIUHNZKLEYZCWPZXB3SE7/PI7C6RX6SLSBBQ6HFIBR6KQAHDRQNWLM/V5IGMKOXJQOQR4JIWWDGHJNMRUGQKWMS.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('https://cdn.fontshare.com/wf/EIXZ6KPGWAIGIUHNZKLEYZCWPZXB3SE7/2GFDXS7RLCGPJNFR6ETZXKNJ6COZG3SN/6P5QENHLXXHTFHRK7JSPNPXTBNAQYRGK.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Colors - Portal Violet */
  --accent: #864AEC;
  --accent-light: #9F6EF2;
  --accent-dark: #6D28D9;
  --accent-muted: rgba(134, 74, 236, 0.08);
  --accent-glow: rgba(134, 74, 236, 0.4);
  
  /* Gradient */
  --gradient-text: linear-gradient(135deg, #864AEC 0%, #6D28D9 50%, #7C3AED 100%);
  --gradient-border: linear-gradient(135deg, #864AEC, #6D28D9, #9F6EF2, #864AEC);
  --gradient-glow: radial-gradient(ellipse at center, rgba(134, 74, 236, 0.15) 0%, transparent 70%);
  
  /* Light Backgrounds - Clean like portal */
  --bg: #FAFAFA;
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-muted: rgba(0, 0, 0, 0.03);
  
  /* Text */
  --text: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  
  /* Borders - Subtle like portal */
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.12);
  --border-accent: rgba(134, 74, 236, 0.25);
  
  /* Semantic */
  --success: #22C55E;
  --success-muted: rgba(34, 197, 94, 0.1);
  
  /* Effects - Understated */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(134, 74, 236, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(134, 74, 236, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle ambient glow - very muted */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 70%;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(134, 74, 236, 0.06) 0%, rgba(109, 40, 217, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Legal Pages - account for fixed nav */
.legal-page {
  padding-top: 200px;
  padding-bottom: 80px;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 16px 0;
  animation: fadeIn 0.4s ease-out;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-inner > .logo {
  justify-self: start;
}

.nav-inner > .nav-links {
  justify-self: center;
}

.nav-inner > .nav-cta {
  justify-self: end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.logo-sep {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 18px;
  margin: 0 -2px;
}

.logo-product {
  color: var(--accent);
  font-weight: 600;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.logo-mark svg {
  width: 36px;
  height: 36px;
}

.logo:hover .logo-mark {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-muted);
}

/* Active Nav Link State */
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-muted);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

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

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--bg-muted);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  color: var(--text);
  background: var(--bg-muted);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

/* Button arrow */
.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Very subtle cursor glow effect */
.cursor-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(134, 74, 236, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Floating decorative shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.floating-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(134, 74, 236, 0.04) 0%, transparent 70%);
  animation: floatShape1 15s ease-in-out infinite;
}

.floating-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.03) 0%, transparent 70%);
  animation: floatShape2 18s ease-in-out infinite;
}

.floating-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: radial-gradient(circle, rgba(159, 110, 242, 0.03) 0%, transparent 70%);
  animation: floatShape3 12s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

@keyframes floatShape2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 20px) scale(0.9); }
}

@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

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

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

/* Gradient text for hero highlight */
.hero h1 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 14px;
}

.trust-item svg {
  color: var(--success);
}

/* Hero Screenshot Container */
.hero-screenshot-container {
  margin-top: 48px;
  padding-bottom: 40px;
}

.hero-screenshot {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portal-iframe {
  width: 1280px;
  height: 1080px;
  border: 0;
  display: block;
  background: var(--bg-elevated);
  transform-origin: 0 0;
  transform: scale(0.86);
}

.screenshot-content {
  padding: 0;
  line-height: 0;
  width: 100%;
  height: 928px;
  overflow: hidden;
  position: relative;
}

.screenshot-content .portal-iframe {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1200px) {
  .screenshot-content { height: 720px; }
  .portal-iframe { transform: scale(0.72); }
}

@media (max-width: 768px) {
  .screenshot-content { height: 540px; }
  .portal-iframe { transform: scale(0.55); }
}

.portal-image {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-browser {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
  border-bottom: 1px solid var(--border);
}

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

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

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-url {
  font-size: 12px;
  color: var(--text-muted);
  background: white;
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.screenshot-content {
  padding: 0;
  line-height: 0;
}

.portal-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
  padding: 100px 0;
  position: relative;
}

section.alt {
  background: var(--bg-elevated);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================
   LOGO BAR
   ========================================== */

.logo-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.logo-bar-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.4;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 0.7;
}

.logo-placeholder {
  width: 120px;
  height: 40px;
}

.logo-placeholder svg {
  width: 100%;
  height: 100%;
}

/* ==========================================
   RESULTS BAR - Dramatic Counters
   ========================================== */

.results-bar {
  padding: 64px 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-badge {
  display: inline-block;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.result-item {
  padding: 32px 24px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.result-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.result-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.result-value .counter-value {
  display: inline-block;
  transition: transform 0.3s ease;
}

.result-value .counter-value.counting {
  animation: countPulse 0.1s ease-in-out;
}

.result-unit {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-secondary);
}

.result-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.result-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-label {
  font-size: 13px;
  color: var(--text-muted);
}

.compare-value {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.compare-diff {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.compare-diff.positive {
  background: var(--success-muted);
  color: var(--success);
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.comparison-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.comparison-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-icon svg {
  width: 24px;
  height: 24px;
}

.comparison-icon.diy {
  background: var(--bg-muted);
  color: var(--text-muted);
}

.comparison-icon.clairvos {
  background: var(--accent-muted);
  color: var(--accent);
}

/* Featured card with animated gradient border */
.comparison-card.highlight {
  position: relative;
  border: none;
  background: var(--bg-card);
}

.comparison-card.highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: var(--gradient-border);
  background-size: 300% 300%;
  animation: gradientRotate 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(134, 74, 236, 0.3);
}

.comparison-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.comparison-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.comparison-list .icon svg {
  width: 12px;
  height: 12px;
}

.comparison-list .icon.check {
  color: var(--success);
  background: var(--success-muted);
}

.comparison-list .icon.x {
  color: var(--text-muted);
  background: var(--bg-muted);
}

.comparison-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.comparison-bottom strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.comparison-bottom span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================
   FEATURE TABS - Portal-Style Pill Navigation
   ========================================== */

.feature-tabs {
  margin-top: 48px;
}

/* Pill Navigation - Portal Style */
.tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-nav-track {
  display: inline-flex;
  align-items: center;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  position: relative;
}

/* Sliding pill indicator */
.tab-nav-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--bg-card);
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.tab-nav-btn {
  position: relative;
  z-index: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tab-nav-btn:hover {
  color: var(--text-secondary);
}

.tab-nav-btn.active {
  color: var(--text);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-panel.active {
  display: grid;
}

.tab-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.tab-text > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.tab-features {
  list-style: none;
  margin-bottom: 24px;
}

.tab-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
}

.tab-features .check {
  color: var(--success);
  flex-shrink: 0;
}

.tab-features .check svg {
  width: 16px;
  height: 16px;
}

/* Tab Visuals */
.tab-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  width: 100%;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
}

.visual-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pipeline Visual */
.pipeline-visual {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.pipeline-step {
  text-align: center;
  padding: 14px 6px;
  background: var(--bg);
  border-radius: 8px;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pipeline-step.highlight {
  background: var(--accent-muted);
  border: 1px solid var(--accent);
}

.pipe-num {
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2px;
}

.pipe-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

.pipe-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pipe-desc {
  font-size: 10px;
  line-height: 1.3;
  color: var(--text-muted);
  text-align: center;
}

.pipeline-arrow {
  color: var(--text-muted);
  font-size: 16px;
  flex-shrink: 0;
}

/* Pipeline arrow rule replaced above */
.pipeline-arrow.legacy-rule {
  display: none;
}

/* Email Preview */
.email-mock {
  font-size: 13px;
}

.email-to {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.email-subject {
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.email-body p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ai-highlight {
  background: linear-gradient(to right, rgba(134, 74, 236, 0.15), rgba(134, 74, 236, 0.05));
  padding: 2px 4px;
  border-radius: 4px;
}

.email-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 12px;
  background: var(--accent-muted);
  border-radius: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* Deliverability Visual */
.deliverability-visual {
  display: flex;
  align-items: center;
  gap: 24px;
}

.score-circle {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.score-circle svg {
  transform: rotate(-90deg);
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
}

.score-breakdown {
  flex: 1;
}

.score-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.green { background: var(--success); }
.dot.yellow { background: #EAB308; }
.dot.red { background: #EF4444; }

/* Analytics Visual */
.analytics-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.analytics-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.analytics-label {
  width: 100px;
  font-size: 13px;
  color: var(--text-muted);
}

.analytics-value {
  font-weight: 600;
  font-size: 14px;
  margin-left: auto;
}

.analytics-value.highlight {
  color: var(--accent);
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 1s ease-out;
}

/* ==========================================
   PROCESS STEPS
   ========================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connecting line with gradient */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  border-radius: 2px;
  opacity: 0.5;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.process-step:hover .step-number {
  background: var(--accent);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(134, 74, 236, 0.35);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS - Arrow Carousel (like Instantly)
   ========================================== */

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

.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* Arrow Buttons */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-muted);
  box-shadow: var(--shadow);
}

.carousel-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* Viewport */
.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Card */
.testimonial-card {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.testimonial-quote {
  color: var(--accent);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.testimonial-text strong {
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  background: var(--accent-muted);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================
   TRUST SECTION
   ========================================== */

.trust-section {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.trust-badge:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================
   FOUNDING CLIENTS SECTION
   ========================================== */

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

.founding-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 64px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  transition: all 0.25s ease;
  position: relative;
  border: 1px solid var(--border);
}

.founding-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-accent);
}

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent-muted);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.founding-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.founding-card > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.founding-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.founding-benefit {
  text-align: center;
  transition: transform 0.2s ease;
}

.founding-benefit:hover {
  transform: translateY(-4px);
}

.founding-benefit .icon {
  width: 48px;
  height: 48px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.founding-benefit .icon svg {
  width: 24px;
  height: 24px;
}

.founding-benefit:hover .icon {
  border-color: var(--accent);
  background: var(--accent-muted);
  color: var(--accent);
}

.founding-benefit strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.founding-benefit span {
  font-size: 13px;
  color: var(--text-muted);
}

.founding-slots {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 20px;
}

.founding-slots strong {
  color: var(--accent);
}

/* ==========================================
   FAQ - Premium Design
   ========================================== */

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

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.faq-item.active {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

/* ==========================================
   PRICING PREVIEW
   ========================================== */

.pricing-preview {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-highlight {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.price-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.price-option {
  text-align: center;
}

.price-option .label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-option .price {
  display: block;
  font-family: 'Satoshi', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.price-option .detail {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-option.old .price {
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-option.new .price {
  color: var(--accent);
}

.price-vs {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================
   HOW IT WORKS PAGE
   ========================================== */

.hiw-hero {
  padding-bottom: 60px;
}

/* Timeline Section */
.timeline-section {
  padding: 40px 0 100px;
}

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-phase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-phase:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 50px;
  bottom: -30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

.timeline-marker {
  text-align: right;
  padding-top: 4px;
}

.phase-label {
  display: inline-block;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 8px 16px;
}

.timeline-marker.featured .phase-label {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 12px rgba(134, 74, 236, 0.3);
}

.phase-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

/* Step Cards */
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-card:last-child {
  margin-bottom: 0;
}

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

.step-card.highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--accent-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.step-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.step-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  line-height: 1.6;
}

.step-list svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.example-email {
  margin-top: 20px;
  padding: 20px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  border: 1px solid var(--border-accent);
}

.example-email p {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* Workload Grid */
.workload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.workload-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.workload-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.workload-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.workload-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.workload-icon svg {
  width: 24px;
  height: 24px;
}

.workload-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.workload-time {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.workload-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workload-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-muted);
}

.workload-list li:last-child {
  border-bottom: none;
}

.workload-list svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tech Card */
.tech-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tech-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.tech-icon svg {
  width: 28px;
  height: 28px;
}

.tech-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.tech-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.stat-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-hero {
  padding-bottom: 60px;
}

/* Problem Grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.problem-card.featured {
  background: linear-gradient(135deg, rgba(134, 74, 236, 0.08) 0%, rgba(134, 74, 236, 0.02) 100%);
  border-color: var(--border-accent);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Principles Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.principle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.principle-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
}

.principle-icon svg {
  width: 28px;
  height: 28px;
}

.principle-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.capability-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.capability-icon svg {
  width: 20px;
  height: 20px;
}

.capability-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Values List */
.values-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.value-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
  padding: 140px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Expect Card */
.expect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 24px;
}

.expect-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.expect-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

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

.expect-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  line-height: 1.5;
}

.expect-list svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Email Card */
.email-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.email-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

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

.email-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.email-card a {
  font-size: 16px;
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.email-card a:hover {
  color: var(--accent);
}

/* Founding Card (Contact Page) */
.contact-info .founding-card {
  background: linear-gradient(135deg, rgba(134, 74, 236, 0.08) 0%, rgba(134, 74, 236, 0.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  max-width: none;
  box-shadow: none;
}

.contact-info .founding-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  border: none;
}

.contact-info .founding-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 8px 0 8px;
}

.contact-info .founding-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Cal Embed */
.contact-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 650px;
}

.cal-iframe {
  width: 100%;
  height: 650px;
  border: none;
}

/* Contact FAQ */
.contact-faq {
  max-width: 700px;
  margin: 0 auto;
}

.contact-faq .faq-icon svg {
  width: 16px;
  height: 16px;
}

/* ==========================================
   PRICING PAGE
   ========================================== */

.pricing-hero {
  padding-bottom: 60px;
}

/* SDR Comparison Card */
.sdr-comparison {
  padding: 0 0 80px;
}

.sdr-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.sdr-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.sdr-icon svg {
  width: 24px;
  height: 24px;
}

.sdr-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.sdr-card strong {
  color: var(--text);
}

/* Pricing Section */
.pricing-section {
  padding-top: 0;
  padding-bottom: 100px;
}

/* Pricing Grid - 4 columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Pricing Cards */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
  box-shadow: var(--shadow-glow-strong);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.pricing-price {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price .price-monthly,
.pricing-price .price-annual {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-price .price-monthly span,
.pricing-price .price-annual span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 12px;
}

.pricing-highlight-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  padding: 14px 16px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.pricing-highlight-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-muted);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Included Grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.included-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

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

.included-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.included-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Scales Grid */
.scales-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scales-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.scales-item:hover {
  transform: translateY(-2px);
}

.scales-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

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

.scales-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.scales-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================
   CTA SECTION - Clean, No Purple Gradient
   ========================================== */

.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  background: var(--bg);
}

.cta-section h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px 0 36px;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.cta-features svg {
  color: var(--success);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-trust {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

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

.footer h4 {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Active State */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  display: none;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta .btn {
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-carousel {
    max-width: 100%;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-card {
    padding: 28px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .founding-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .tab-panel {
    grid-template-columns: 1fr;
  }
  
  .tab-visual {
    order: -1;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* How It Works Responsive */
  .timeline-phase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline-phase::after {
    display: none;
  }
  
  .timeline-marker {
    text-align: left;
  }
  
  .phase-title {
    font-size: 24px;
  }
  
  .step-card {
    padding: 24px;
  }
  
  .workload-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-card {
    padding: 28px;
  }
  
  .tech-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-value {
    font-size: 36px;
  }
  
  /* Contact Page Responsive */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info h1 {
    font-size: 36px;
  }
  
  .contact-embed {
    min-height: 550px;
  }
  
  .cal-embed {
    height: 550px;
  }
  
  /* Pricing Page Responsive */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  /* Mobile Menu Open State */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active li {
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links.active li:last-child {
    border-bottom: none;
  }
  
  .nav-links.active a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }
  
  section {
    padding: 64px 0;
  }
  
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .result-value {
    font-size: 40px;
  }
  
  .result-item {
    padding: 24px 16px;
  }
  
  .process-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-carousel {
    gap: 12px;
  }
  
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  
  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .founding-card {
    padding: 40px 24px;
  }
  
  .price-compare {
    flex-direction: column;
    gap: 24px;
  }
  
  .price-vs {
    display: none;
  }
  
  .sticky-cta {
    display: flex;
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .tab-buttons {
    gap: 8px;
  }
  
  .tab-nav-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .tab-nav-track {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .deliverability-visual {
    flex-direction: column;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  /* About Page Responsive */
  .problem-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .value-item {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Contact Page Responsive */
  .contact-section {
    padding: 120px 0 60px;
  }
  
  .contact-info h1 {
    font-size: 32px;
  }
  
  /* Pricing Page Responsive */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .sdr-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
  
  .sdr-icon {
    margin: 0 auto;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
  }
  
  .included-item {
    flex-direction: column;
    text-align: center;
  }
  
  .included-icon {
    margin: 0 auto 12px;
  }
  
  .scales-item {
    flex-direction: column;
    text-align: center;
  }
  
  .scales-icon {
    margin: 0 auto 12px;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .result-value {
    font-size: 48px;
  }
  
  .hero-screenshot {
    margin: 0 -12px;
    border-radius: var(--radius);
  }
  
  .pipeline-visual {
    flex-direction: column;
    gap: 4px;
  }
  .pipeline-step {
    width: 100%;
  }
  .pipeline-arrow {
    transform: rotate(90deg);
  }
  
  /* Hide carousel arrows on very small screens - use swipe */
  .carousel-arrow {
    display: none;
  }
  
  .testimonials-carousel {
    padding: 0;
  }
  
  .carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .carousel-viewport::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-track {
    transform: none !important;
  }
  
  .testimonial-card {
    scroll-snap-align: start;
    padding: 20px;
  }
}

/* ==========================================
   ACTIVITY BAR - Live Social Proof
   ========================================== */

.activity-bar {
  padding: 20px 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.activity-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.activity-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0;
  animation: pulseRing 2s ease-in-out infinite;
}

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

@keyframes pulseRing {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}

.activity-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.activity-feed {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.activity-item strong {
  color: var(--text);
  font-weight: 600;
}

.activity-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-icon svg {
  width: 14px;
  height: 14px;
}

.activity-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

@media (max-width: 768px) {
  .activity-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .activity-feed {
    flex-direction: column;
    gap: 12px;
  }
  
  .activity-divider {
    display: none;
  }
}

/* ==========================================
   ENHANCED MICRO-INTERACTIONS
   ========================================== */

/* Visual cards hover effect */
.visual-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Trust badge icon animation on hover */
.trust-badge:hover .trust-icon {
  transform: scale(1.1);
}

.trust-badge .trust-icon {
  transition: transform 0.25s ease;
}

/* Founding benefit icon animation */
.founding-benefit:hover .icon svg {
  transform: scale(1.15);
}

.founding-benefit .icon svg {
  transition: transform 0.25s ease;
}

/* Process step number pulse on hover */
.process-step:hover .step-number {
  box-shadow: 0 0 0 8px rgba(134, 74, 236, 0.1), 0 4px 20px rgba(134, 74, 236, 0.35);
}

/* ==========================================
   UTILITIES
   ========================================== */

::selection {
  background: var(--accent);
  color: white;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================
   MOBILE OPTIMIZATIONS
   Touch-first refinements: kill desktop-only effects,
   hide portal demo, tighten spacing, scale type.
   ========================================== */

/* Hide hero portal mockup entirely on mobile — not designed for narrow viewports */
@media (max-width: 768px) {
  .hero-screenshot-container { display: none; }
}

/* Kill desktop-only hero effects on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
  .floating-shape { display: none; }
  .hero-screenshot:hover { transform: none !important; }
}

/* Tablet + small desktop — the wordmark squeezes */
@media (max-width: 900px) {
  .logo { font-size: 18px; }
  .logo-mark, .logo-mark svg { width: 30px; height: 30px; }
  .logo-sep { font-size: 16px; }
}

/* Mobile — 768px and below */
@media (max-width: 768px) {
  .container, .container-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ===== Mobile nav: orbit-left, wordmark-center, hamburger-right ===== */
  /* Strategy: flatten the .nav-inner grid to a 3-col layout (orbit / wordmark / hamburger).
     The .logo link wraps the orbit AND the wordmark, but on mobile we use display:contents
     to pull the orbit and wordmark out as direct grid children of .nav-inner. */
  .nav { padding: 12px 0; }
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }
  .nav-inner > .logo {
    display: contents; /* let .logo-mark and .logo-text become grid children */
  }
  .nav-inner > .logo .logo-mark {
    grid-column: 1;
    width: 28px;
    height: 28px;
    justify-self: start;
  }
  .nav-inner > .logo .logo-mark svg { width: 28px; height: 28px; }
  .nav-inner > .logo .logo-text {
    grid-column: 2;
    justify-self: center;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    gap: 4px;
    white-space: nowrap;
  }
  .nav-inner > .logo .logo-sep { font-size: 14px; margin: 0 -1px; }

  .nav-inner > .nav-links,
  .nav-inner > .nav-cta { display: none !important; }

  .nav-inner > .mobile-menu-btn {
    grid-column: 3;
    justify-self: end;
  }

  /* Hide hero CTAs on mobile — sticky "Book a Call" bar at the bottom covers it */
  .hero-cta { display: none !important; }

  /* Hero — cleaner mobile rhythm with generous breathing room before next section */
  .hero {
    padding: 100px 0 160px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }
  .trust-item { font-size: 13px; }

  /* Section padding */
  section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(26px, 7vw, 32px); }
  .section-header p { font-size: 15px; }

  /* Comparison cards — tighter padding */
  .comparison-card { padding: 28px 24px; }
  .comparison-card h3 { font-size: 19px; }
  .comparison-list li { font-size: 14px; padding: 10px 0; }

  /* Tab nav — all 4 pills fit on one row, no scroll */
  .tab-nav { width: 100%; }
  .tab-nav-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100%;
    padding: 3px !important;
    border-radius: 100px;
    justify-content: stretch !important;
  }
  .tab-nav-btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 7px 6px !important;
    font-size: 11px !important;
    white-space: nowrap;
    text-align: center;
  }
  .tab-text h3 { font-size: 22px; }
  .visual-card { padding: 20px 16px; }

  /* Pipeline stays vertical — already handled at 480px, push it up to 768 */
  .pipeline-visual {
    flex-direction: column;
    gap: 6px;
  }
  .pipeline-step { width: 100%; padding: 12px 8px; }
  .pipe-value { font-size: 20px; }

  /* Process steps */
  .process-step h3 { font-size: 16px; }
  .step-number { width: 56px; height: 56px; font-size: 20px; }

  /* Testimonials — single card, no arrows (handled at 480px, but let's tighten 768) */
  .testimonial-text { font-size: 15px; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer p { padding: 0 20px 20px; font-size: 14px; line-height: 1.7; }
  .faq-icon { width: 28px; height: 28px; }

  /* CTA section */
  .cta-section { padding: 80px 0; }
  .cta-section h2 { font-size: clamp(28px, 7vw, 36px); }
  .cta-section p { font-size: 16px; margin-bottom: 28px; }

  /* Founding card */
  .founding-card { padding: 36px 24px; }
  .founding-card h2 { font-size: 26px; }
  .founding-card > p { font-size: 15px; }

  /* Footer — stack neatly */
  .footer { padding: 56px 0 28px; }
  .footer-grid { gap: 36px; }

  /* Activity bar — collapse divider, stack tightly */
  .activity-bar { padding: 16px 0; }
  .activity-feed { gap: 10px; }
  .activity-item { font-size: 13px; }

  /* Trust badges */
  .trust-grid { gap: 12px; }
  .trust-badge { padding: 16px; gap: 12px; }

  /* About page — problem cards */
  .problem-card { padding: 24px; }
  .problem-card h3 { font-size: 18px; }
  .principle-card { padding: 24px; }

  /* How It Works — timeline */
  .timeline-section { padding: 24px 0 64px; }
  .step-card { padding: 20px; }
  .step-card > p { font-size: 14px; }

  /* Workload card */
  .workload-card { padding: 24px; }
  .workload-card h3, .workload-header h3 { font-size: 19px; }

  /* Pricing */
  .pricing-card { padding: 28px 22px; }
  .pricing-price { font-size: 36px; }
  .pricing-price .price-monthly,
  .pricing-price .price-annual { font-size: 36px; }

  /* Contact page */
  .expect-card { padding: 22px; }
  .expect-list li { font-size: 14px; }

  /* Disable scroll animations that feel sluggish on mobile — keep but tighten */
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    transition-duration: 0.4s;
  }
}

/* Very small phones — 480px and below */
@media (max-width: 480px) {
  .container, .container-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Even tighter logo */
  .logo-text { gap: 4px; }

  /* Hero */
  .hero { padding: 90px 0 48px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 36px); }
  .hero-subtitle { font-size: 14px; }

  /* Sticky CTA — ensure it never overlays content */
  body.has-sticky-cta { padding-bottom: 88px; }

  /* Section header */
  .section-header h2 { font-size: clamp(24px, 7vw, 28px); }

  /* Founding benefits stack */
  .founding-card { padding: 28px 18px; }

  /* Footer typography */
  .footer h4 { font-size: 12px; }
  .footer-links a { font-size: 13px; }

  /* Trust badge avoids looking cramped */
  .trust-badge { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px; }

  /* Comparison cards */
  .comparison-card { padding: 24px 20px; }

  /* Pricing */
  .pricing-grid { gap: 16px; }

  /* Pipeline arrow rotation already handled, ensure step gap is tighter */
  .pipeline-step { padding: 10px 8px; }
  .pipe-value { font-size: 18px; }

  /* Cal embed and contact */
  .contact-section { padding: 100px 0 48px; }
  .contact-info h1 { font-size: 28px; }
}

/* Respect reduced motion — across all viewports */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .floating-shape { animation: none !important; }
  .pulse-dot, .pulse-dot::after { animation: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================
   TERMLY COOKIE BANNER — Mobile constraint
   The default Termly banner takes over the screen on mobile.
   Shrink it to a compact strip that doesn't dominate the viewport.
   ========================================== */
@media (max-width: 768px) {
  /* Target Termly's banner containers (they use various class/id patterns) */
  #termly-code-snippet-support,
  .termly-banner,
  div[id^="termly-"],
  div[class*="t-consent"] {
    max-width: 100vw !important;
  }
  /* Constrain inner banner content */
  .termly-banner-content,
  div[class*="t-consent-display"],
  div[class*="banner-container"] {
    max-height: 40vh !important;
    overflow-y: auto !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    padding: 12px !important;
  }
  /* Shrink banner buttons */
  div[class*="t-consent"] button,
  .termly-banner button {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  /* If Termly uses an iframe, constrain it */
  iframe[id^="termly-"],
  iframe[src*="termly"] {
    max-height: 40vh !important;
    max-width: 100vw !important;
  }
}
