/* ========================================
   SYNTRIK.IO — Custom Styles
   Black & white alternating sections
   Inspired by modern SaaS marketplace design
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --gray-950: #1F1E1D;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out-fast: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --transition: 0.2s var(--ease-out);

  /* Legacy compat aliases (used in inline styles) */
  --text-primary: var(--white);
  --text-secondary: var(--gray-400);
  --text-muted: var(--gray-500);
  --accent-blue: var(--white);
  --accent-purple: var(--white);
  --accent-green: var(--white);
  --bg-card: var(--gray-950);
  --border-color: var(--border-dark);
  --glass-border: var(--border-dark);
  --gradient-primary: var(--white);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

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

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0;
  transition: background 0.3s var(--ease-out), padding 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.625rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
}

/* Pill-shaped center nav */
.navbar-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.25rem;
}

.navbar-pill a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
  text-decoration: none;
}

.navbar-pill a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.navbar-pill a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Mega Menu Dropdown ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-trigger svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px) scale(0.97);
  transform-origin: top center;
  width: 680px;
  background: var(--gray-950);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
  z-index: 1001;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Invisible bridge between trigger and menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: 8px;
  transition: background 0.15s var(--ease-out), transform 120ms var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mega-menu-item:active {
  transform: scale(0.98);
}

.mega-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: background 0.15s var(--ease-out), border-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
}

.mega-menu-item:hover .mega-menu-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.mega-menu-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  transition: color var(--transition);
}

.mega-menu-item:hover h4 {
  color: var(--white);
}

.mega-menu-item p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.mega-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  text-align: center;
}

.mega-menu-viewall {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
}

.mega-menu-viewall:hover {
  color: var(--white);
}

/* Smaller mega menu for single-column dropdowns */
.mega-menu-sm {
  width: 400px;
}

.mega-menu-grid-single {
  grid-template-columns: 1fr;
}

/* ---------- Mobile Nav Submenu ---------- */
.mobile-nav-group {
  border-bottom: 1px solid var(--border-dark);
}

.mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color var(--transition);
}

.mobile-nav-toggle:hover {
  color: var(--white);
}

.mobile-nav-arrow {
  transition: transform var(--transition);
  font-size: 1.2rem;
}

.mobile-nav-group.open .mobile-nav-arrow {
  transform: rotate(90deg);
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}

.mobile-nav-group.open .mobile-nav-submenu {
  max-height: 400px;
}

.mobile-nav-submenu a {
  padding: 0.6rem 0 0.6rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: none;
  color: var(--gray-500);
}

.mobile-nav-submenu a:hover {
  color: var(--white);
}

/* Legacy support for inner pages using .navbar-links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.25rem;
}

.navbar-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.navbar-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.navbar-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.nav-link-subtle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
  text-decoration: none;
}

.nav-link-subtle:hover {
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: var(--gray-900);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-dark);
}

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

.btn-outline-black {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border-light);
}

.btn-outline-black:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.25);
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 0.925rem;
  border-radius: 100px;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: 100px;
}

/* Compat aliases */
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--gray-200); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border-dark); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.25); }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--gray-950);
  border-left: 1px solid var(--border-dark);
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-drawer);
  z-index: 999;
  will-change: transform;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
  border-bottom: 1px solid var(--border-dark);
}

.mobile-nav a:hover { color: var(--white); }

/* ==================================================
   DARK SECTIONS (black bg, white text)
   ================================================== */
.section-dark {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
}

/* ==================================================
   LIGHT SECTIONS — now dark for all-dark design
   (kept for inner page compatibility)
   ================================================== */
.section-light {
  background: var(--gray-900);
  color: var(--white);
  padding: 6rem 0;
}

.section-light .section-label { color: var(--gray-500); }
.section-light .section-subtitle { color: var(--gray-400); }

/* ==================================================
   ALT DARK SECTIONS (light black — subtle contrast)
   ================================================== */
.section-alt {
  background: var(--gray-950);
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--black);
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

/* Hero background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/images/bg-claw.jpeg') center center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

/* Top gradient: black → transparent (covers top 80%) */
.hero-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
  pointer-events: none;
}

/* Bottom gradient: transparent → black (covers full height) */
.hero-bg-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, transparent 100%);
  pointer-events: none;
}

/* Subtle dot grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Soft radial glow at top */
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero h1 .hero-serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 4.5rem;
}

.btn-ghost-clean {
  background: transparent;
  color: var(--gray-400);
  border: none;
  font-weight: 500;
}

.btn-ghost-clean:hover {
  color: var(--white);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
  margin-left: 0.125rem;
}

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

.hero-logos {
  max-width: 680px;
  margin: 0 auto;
}

.hero-logos-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s var(--ease-out);
}

.hero-logo-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hero-logo-item svg {
  flex-shrink: 0;
}

.hero-logo-item span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==================================================
   SECTION HEADERS
   ================================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ==================================================
   PRODUCT CARDS (used on light and dark sections)
   ================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

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

/* Dark section variant */
.section-dark .product-card {
  background: var(--gray-950);
  border-color: var(--border-dark);
}

.product-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--gray-100);
  overflow: hidden;
}

.section-dark .product-card-image {
  background: var(--gray-900);
}

.product-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.2;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.product-badge.free {
  background: var(--black);
  color: var(--white);
}

.product-badge.premium {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-200);
}

.section-dark .product-badge.free {
  background: var(--white);
  color: var(--black);
}

.section-dark .product-badge.premium {
  background: var(--gray-800);
  color: var(--white);
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--black);
}

.section-dark .product-card-body h3 { color: var(--white); }

.product-card-body p {
  font-size: 0.825rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-tags {
  display: flex;
  gap: 0.375rem;
}

.product-tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
}

.section-dark .product-tag {
  background: var(--gray-800);
  color: var(--gray-400);
}

.product-downloads {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ==================================================
   CATEGORY CARDS — "Who Is This For" style
   ================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  display: block;
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.section-light .category-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.18);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.section-light .category-icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.category-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.category-count svg { width: 14px; height: 14px; }

/* ==================================================
   PLATFORM PRODUCTS — Alternating image/text rows
   ================================================== */
.platform-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.section-light .platform-product {
  border-bottom-color: var(--border-dark);
}

.platform-product:last-child { border-bottom: none; }

.platform-product.reverse { direction: rtl; }
.platform-product.reverse > * { direction: ltr; }

.platform-product-text h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.platform-product-text p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.section-light .platform-product-text p { color: var(--gray-400); }

.platform-product-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.platform-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.section-light .platform-product-features li { color: var(--gray-400); }

.platform-product-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}

.section-light .platform-product-features li::before { color: var(--white); }

.platform-product-image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid var(--border-dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-product-image svg {
  width: 100%;
  height: 100%;
}

.section-light .platform-product-image {
  background: var(--gray-900);
  border-color: var(--border-dark);
}

/* ==================================================
   HOW IT WORKS / STEPS
   ================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.section-light .step-number {
  background: var(--white);
  color: var(--black);
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==================================================
   FRAMEWORKS / LOGOS GRID
   ================================================== */
.frameworks-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.framework-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  min-width: 90px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.section-dark .framework-item {
  background: var(--gray-950);
  border-color: var(--border-dark);
}

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

.framework-icon {
  font-size: 1.75rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.framework-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

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

.testimonial-card {
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.section-light .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.85rem;
}

.section-light .testimonial-stars { color: var(--white); }

.testimonial-text {
  font-size: 0.925rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section-light .testimonial-text { color: var(--gray-400); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.section-light .testimonial-avatar {
  background: var(--gray-800);
  color: var(--white);
}

.testimonial-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ==================================================
   CTA SECTION
   ================================================== */
.cta-section {
  padding: 6rem 0;
}

.cta-inner {
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
}

.section-light .cta-inner {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}

.cta-inner h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

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

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-card {
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
}

.section-light .pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}

.pricing-card.featured {
  border-color: var(--white);
  box-shadow: 0 0 0 1px var(--white);
  position: relative;
}

.section-light .pricing-card.featured {
  border-color: var(--white);
  box-shadow: 0 0 0 1px var(--white);
}

.pricing-card.featured .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.section-light .pricing-card.featured .pricing-badge {
  background: var(--white);
  color: var(--black);
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-card .price-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.section-light .pricing-features li { color: var(--gray-400); }

.pricing-features li .check { color: var(--white); font-weight: 700; }
.pricing-features li .cross { color: var(--gray-700); }
.section-light .pricing-features li .check { color: var(--white); }
.section-light .pricing-features li .cross { color: var(--gray-700); }

/* ==================================================
   FAQ
   ================================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.section-light .faq-item { border-bottom-color: var(--border-dark); }

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: opacity var(--transition);
}

.faq-question:hover { opacity: 0.7; }

.faq-icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
  color: var(--gray-500);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==================================================
   FOOTER
   ================================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 0.3rem 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ==================================================
   PAGE HEADER (inner pages)
   ================================================== */
.page-header {
  padding: 8rem 0 3rem;
  background: var(--black);
  text-align: center;
}

.page-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================================================
   UNDER CONSTRUCTION
   ================================================== */
.construction-content {
  text-align: center;
  padding: 4rem 0;
  max-width: 500px;
  margin: 0 auto;
}

.construction-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.construction-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.construction-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ==================================================
   LEGAL PAGES (Terms, Privacy)
   ================================================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  font-size: 0.925rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: var(--gray-200);
  font-weight: 600;
}

.legal-section a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color var(--transition);
}

.legal-section a:hover {
  text-decoration-color: var(--white);
}

/* ==================================================
   FILTERS
   ================================================== */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--gray-400);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.section-light .filter-btn {
  border-color: var(--border-dark);
  color: var(--gray-400);
}

.section-light .filter-btn:hover,
.section-light .filter-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ==================================================
   WORKFLOW CARDS
   ================================================== */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.workflow-card {
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.section-light .workflow-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}

.workflow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.workflow-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.workflow-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 1rem; }

.workflow-tools {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.workflow-tool-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-400);
  border: 1px solid var(--border-dark);
}

.section-light .workflow-tool-badge {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-400);
  border-color: var(--border-dark);
}

/* ==================================================
   TEAM GRID
   ================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.section-light .team-card { border-color: var(--border-dark); }

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
}

.section-light .team-avatar { background: var(--gray-800); color: var(--white); }

.team-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.825rem; color: var(--gray-500); }

/* ==================================================
   TIMELINE
   ================================================== */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-dark);
}

.section-light .timeline::before { background: var(--border-dark); }

.timeline-item {
  padding-left: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}

.section-light .timeline-item::before { background: var(--white); }

.timeline-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.timeline-item .timeline-date { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.875rem; color: var(--gray-500); }

/* ==================================================
   BLOG CARDS
   ================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
}

.section-light .blog-card { background: rgba(255, 255, 255, 0.03); border-color: var(--border-dark); }

.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255, 255, 255, 0.15); }

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.section-light .blog-card-image { background: var(--gray-900); }

.blog-card-body { padding: 1.5rem; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.625rem;
}

.blog-card-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.825rem; color: var(--gray-500); line-height: 1.5; }

/* ==================================================
   CONTACT FORM
   ================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-400);
}

.section-light .form-group label { color: var(--gray-400); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
  background: var(--gray-950);
  border-color: var(--border-dark);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--white);
}

.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus {
  border-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-card {
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.section-light .contact-info-card { border-color: var(--border-dark); }

.contact-info-card h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.375rem; }
.contact-info-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.contact-info-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color var(--transition);
}

.contact-info-link:hover {
  text-decoration-color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Form feedback messages */
.form-success-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(100, 255, 150, 0.08);
  border: 1px solid rgba(100, 255, 150, 0.2);
  color: rgba(100, 255, 150, 0.9);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-error-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 100, 100, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.2);
  color: rgba(255, 100, 100, 0.9);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-error {
  display: block;
  color: rgba(255, 100, 100, 0.8);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

/* Careers Page */
.careers-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.careers-perk-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
}

.careers-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}

.careers-perk-card h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.careers-perk-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.careers-positions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.careers-position-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s var(--ease-out);
}

.careers-position-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.careers-position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.careers-position-header h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.careers-position-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.careers-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

.careers-position-card > p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.careers-position-requirements {
  font-size: 0.825rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.careers-position-requirements strong {
  color: var(--gray-300);
}

.careers-form-wrapper {
  max-width: 680px;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .careers-perks-grid { grid-template-columns: 1fr; }
  .careers-position-header { flex-direction: column; }
  .careers-position-header .btn { align-self: flex-start; }
}

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

/* --- Hero entrance animations (above the fold, load-triggered) --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-enter {
  opacity: 0;
  animation: heroFadeUp 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-enter:nth-child(1) { animation-delay: 50ms; }
.hero-enter:nth-child(2) { animation-delay: 120ms; }
.hero-enter:nth-child(3) { animation-delay: 190ms; }
.hero-enter:nth-child(4) { animation-delay: 260ms; }
.hero-enter:nth-child(5) { animation-delay: 330ms; }

/* Hero background layers fade in softly with subtle scale for depth */
.hero-bg-enter {
  opacity: 0;
  animation: heroBgIn 1400ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes heroBgIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-grid-bg { animation-delay: 0ms; }
.hero-glow    { animation-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-enter,
  .hero-bg-enter {
    animation: none;
    opacity: 1;
  }
}

/* --- Scroll-triggered animations (below the fold) --- */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   BLOG
   ================================================== */

/* ----- Blog Listing ----- */
.blog-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
}

.blog-filters::-webkit-scrollbar {
  height: 4px;
}

.blog-filters::-webkit-scrollbar-track {
  background: transparent;
}

.blog-filters::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 2px;
}

.blog-filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  text-decoration: none;
  cursor: pointer;
}

.blog-filter-tab:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.blog-filter-tab.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.blog-card-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: 'Georgia', serif;
  transition: color var(--transition);
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--gray-400);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-card-author {
  color: var(--gray-400);
  font-weight: 500;
}

.blog-card-divider {
  color: var(--gray-600);
}

.blog-card-reading-time {
  color: var(--gray-500);
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: 0.75rem;
}

.blog-card-link:hover {
  color: var(--gray-400);
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pagination-prev,
.pagination-next {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
  min-width: 100px;
  text-align: center;
}

.pagination-prev:hover,
.pagination-next:hover {
  color: var(--white);
}

.pagination-prev.disabled,
.pagination-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-info {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
}

.blog-empty p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ----- Blog Single Post ----- */
.blog-article {
  max-width: 760px;
  margin: 0 auto 4rem;
}

.blog-article-category-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.blog-article-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-article-author-name {
  color: var(--white);
  font-weight: 600;
}

.blog-article-author-role {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.blog-article-date,
.blog-article-reading-time {
  color: var(--gray-500);
}

.blog-article-separator {
  color: var(--gray-700);
}

.blog-article-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-400);
}

.blog-article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
  font-family: 'Georgia', serif;
}

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

.blog-article-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
  font-family: 'Georgia', serif;
}

.blog-article-content p {
  margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 1.25rem 0 1.25rem 1.5rem;
  color: var(--gray-400);
}

.blog-article-content ul li,
.blog-article-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.blog-article-content ul li::marker {
  color: var(--gray-600);
}

.blog-article-content ol li::marker {
  color: var(--gray-600);
}

.blog-article-content a {
  color: var(--white);
  text-decoration: underline;
  transition: color var(--transition);
}

.blog-article-content a:hover {
  color: var(--gray-400);
}

.blog-article-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.7;
}

.blog-article-content code {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.85em;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-article-content pre {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.5;
}

.blog-article-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--gray-300);
}

.blog-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-article-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
}

.blog-back-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-back-link:hover {
  color: var(--white);
}

.blog-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-related h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  font-family: 'Georgia', serif;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ==================================================
   OPENCLAW PAGE — White Theme
   ================================================== */

/* Page wrapper — inverts to white */
.oc {
  background: var(--white);
  color: var(--black);
}

/* Hero */
.oc-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--white);
  overflow: hidden;
}

.oc-hero .hero-grid-bg {
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 100%);
}

.oc-hero .hero-glow {
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
}

.oc-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.oc-hero-text { max-width: 540px; }

.oc-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.oc-hero h1 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.oc-accent {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.oc-hero-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.oc-hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.oc-hero-proof {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.oc-proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.oc-proof-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.oc-proof-item span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.oc-proof-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* Terminal visual */
.oc-terminal {
  background: var(--gray-950);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.oc-terminal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.oc-terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.oc-terminal-dots span:first-child { background: #ff5f57; }
.oc-terminal-dots span:nth-child(2) { background: #ffbd2e; }
.oc-terminal-dots span:nth-child(3) { background: #28c840; }

.oc-terminal-title {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}

.oc-terminal-body {
  padding: 1.25rem 1.25rem 1.5rem;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--gray-300);
}

.oc-t-green { color: #28c840; }
.oc-t-dim { color: var(--gray-500); }

.oc-terminal-line {
  opacity: 0;
  animation: terminalLine 0.3s var(--ease-out) forwards;
}

.oc-line-1 { animation-delay: 0.6s; }
.oc-line-2 { animation-delay: 1.1s; }
.oc-line-3 { animation-delay: 1.6s; }
.oc-line-4 { animation-delay: 2.0s; }
.oc-line-5 { animation-delay: 2.4s; }
.oc-line-6 { animation-delay: 2.9s; }
.oc-line-7 { animation-delay: 3.4s; }
.oc-line-8 { animation-delay: 3.8s; }

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

/* Sections */
.oc-section {
  padding: 6rem 0;
}

.oc-section-light {
  background: var(--gray-50);
}

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

.oc-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.oc-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.oc-section-dark .oc-label { color: var(--gray-500); }

.oc-section-header h2 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.oc-section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Agent cards grid */
.oc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.oc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.oc-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.oc-card-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-200);
  margin-bottom: 1rem;
  line-height: 1;
}

.oc-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--black);
}

.oc-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.oc-card-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.oc-card-link:hover { color: var(--gray-600); }

/* Inline dark CTA */
.oc-inline-cta {
  text-align: center;
  padding: 2rem 0;
}

.oc-inline-cta h2 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 2rem;
}

/* Steps */
.oc-steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.oc-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.oc-step:last-child { border-bottom: none; }

.oc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.oc-step-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.oc-step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Comparison */
.oc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.oc-compare-col {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2rem;
}

.oc-compare-highlight {
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}

.oc-compare-header {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.oc-compare-dim { color: var(--gray-400); }

.oc-compare-item {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.oc-compare-item span { flex-shrink: 0; }

.oc-compare-item-dim {
  color: var(--gray-400);
}

.oc-compare-item-dim span { color: var(--gray-300); }

.oc-check {
  color: var(--black);
  font-weight: 700;
}

/* Examples */
.oc-examples {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.oc-example {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.oc-example:last-child { border-bottom: none; }

.oc-example-metric {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  min-width: 80px;
  flex-shrink: 0;
}

.oc-example-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.oc-example-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

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

.oc-price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.oc-price-featured {
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}

.oc-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.oc-price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.oc-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.oc-price-sub {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.oc-price-list {
  list-style: none;
  margin-bottom: 2rem;
}

.oc-price-list li {
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.oc-price-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

/* FAQ override for white page */
.oc-faq {
  max-width: 720px;
  margin: 0 auto;
}

.oc-faq-item {
  border-bottom-color: var(--gray-200) !important;
}

.oc-faq-item .faq-question {
  color: var(--black);
}

.oc-faq-item .faq-icon {
  color: var(--gray-400);
}

.oc-faq-item .faq-answer-inner {
  color: var(--gray-500);
}

/* Final CTA */
.oc-final-cta {
  padding: 6rem 0;
}

.oc-final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.oc-final-cta-content h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.oc-final-cta-content h2 em {
  font-family: Georgia, serif;
  font-style: italic;
}

.oc-final-cta-content p {
  font-size: 1.05rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.oc-final-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Navbar on white OpenClaw page — always show dark bg so it's visible */
body:has(.oc) .navbar {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero split layout */
.oc-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .oc-hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .oc-hero-text { max-width: 100%; text-align: center; margin: 0 auto; }
  .oc-hero-actions { justify-content: center; }
  .oc-hero-proof { justify-content: center; }
  .oc-dashboard-preview { max-width: 500px; margin: 0 auto; }
  .oc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .oc-pricing { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .oc-compare { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .oc-hero { padding: 6rem 0 2.5rem; }
  .oc-hero-split { gap: 2rem; }
  .oc-hero h1 { font-size: 2rem; }
  .oc-hero-desc { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .oc-section { padding: 3.5rem 0; }
  .oc-section-header { margin-bottom: 2.5rem; }
  .oc-section-header h2 { font-size: 1.65rem; }
  .oc-cards-grid { grid-template-columns: 1fr; }
  .oc-hero-proof { flex-direction: row; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .oc-proof-divider { width: 1px; height: 28px; }
  .oc-hero-actions { flex-direction: column; align-items: stretch; }
  .oc-hero-actions .btn { text-align: center; justify-content: center; }
  .oc-hero-visual { display: none; }
  .oc-example { flex-direction: column; gap: 0.5rem; }
  .oc-inline-cta h2 { font-size: 1.35rem; }
  .oc-final-cta-content h2 { font-size: 1.5rem; }
  .oc-final-cta-actions { flex-direction: column; align-items: stretch; }
  .oc-final-cta-actions .btn { text-align: center; justify-content: center; }
  .oc-price-card { padding: 1.75rem; }
  .oc-price { font-size: 2.25rem; }
  .oc-compare-col { padding: 1.5rem; }
  .oc-compare-item { font-size: 0.8rem; }
  .oc-step { gap: 1rem; }
  .oc-dash-sidebar { width: 90px; }
  .oc-dash-nav-item { font-size: 0.6rem; padding: 0.4rem 0.5rem; }
  .oc-dash-agent-row { padding: 0.5rem; gap: 0.5rem; }
  .oc-dash-agent-info strong { font-size: 0.65rem; }
  .oc-dash-agent-info span { font-size: 0.55rem; }
  .oc-dash-badge { font-size: 0.5rem; padding: 2px 6px; }
}

@media (max-width: 480px) {
  .oc-hero h1 { font-size: 1.85rem; }
  .oc-hero-desc { font-size: 0.9rem; }
  .oc-section-header h2 { font-size: 1.5rem; }
  .oc-section-header p { font-size: 0.9rem; }
  .oc-dashboard-preview { margin-left: -0.75rem; margin-right: -0.75rem; border-radius: 8px; }
  .oc-dash-sidebar { display: none; }
  .oc-dash-body { min-height: 180px; }
  .oc-channels { gap: 1rem; }
  .oc-channel svg { width: 20px; height: 20px; }
  .oc-channel span { font-size: 0.65rem; }
  .oc-card { padding: 1.5rem; }
  .oc-platform-card { padding: 1.5rem; }
  .oc-step-num { width: 32px; height: 32px; font-size: 0.8rem; }
  .oc-proof-item strong { font-size: 0.95rem; }
  .oc-proof-item span { font-size: 0.7rem; }
}

/* Platform cards */
.oc-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.oc-platform-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.oc-platform-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.oc-platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.oc-platform-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.oc-platform-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Channels */
.oc-channels {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.oc-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s var(--ease-out);
}

.oc-channel:hover {
  color: var(--white);
}

.oc-channel span {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Integrations */
.oc-integrations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.oc-integration-group h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.oc-integration-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.oc-int-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

/* Price period */
.oc-price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
  font-family: 'Geist', sans-serif;
}

/* Hero split layout — base styles defined above .oc-hero-content */

/* Dashboard preview */
.oc-dashboard-preview {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.oc-dash-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.oc-dash-dots {
  display: flex;
  gap: 5px;
}

.oc-dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.oc-dash-dots span:first-child { background: #ff5f57; }
.oc-dash-dots span:nth-child(2) { background: #ffbd2e; }
.oc-dash-dots span:nth-child(3) { background: #28c840; }

.oc-dash-title {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 500;
}

.oc-dash-body {
  display: flex;
  min-height: 260px;
}

.oc-dash-sidebar {
  width: 120px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  padding: 0.75rem 0;
  flex-shrink: 0;
}

.oc-dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-400);
  cursor: default;
}

.oc-dash-nav-active {
  color: var(--black);
  background: var(--white);
  border-right: 2px solid var(--black);
}

.oc-dash-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.oc-dash-agent-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}

.oc-dash-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.oc-status-live {
  background: #28c840;
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.4);
}

.oc-status-idle {
  background: var(--gray-300);
}

.oc-dash-agent-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.oc-dash-agent-info strong {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
}

.oc-dash-agent-info span {
  font-size: 0.65rem;
  color: var(--gray-400);
}

.oc-dash-badge {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(40, 200, 64, 0.1);
  color: #1a8f35;
  white-space: nowrap;
}

.oc-dash-badge-idle {
  background: var(--gray-100);
  color: var(--gray-400);
}

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

@media (max-width: 768px) {
  .oc-channels { gap: 1.25rem; }
  .oc-channel svg { width: 22px; height: 22px; }
  .oc-integrations { grid-template-columns: 1fr; }
  .oc-platform-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .oc-terminal-line {
    animation: none;
    opacity: 1;
  }
}

/* ==================================================
   OPENCLAW — Comparison Cards (legacy, kept for index page)
   ================================================== */
.openclaw-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
}

.comparison-card-highlight {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.comparison-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.comparison-label-dim {
  color: var(--gray-500);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.comparison-item-dim {
  color: var(--gray-500);
}

.comparison-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 3px;
  color: var(--gray-600);
}

.comparison-icon-check {
  color: var(--white);
  font-weight: 700;
}

/* ==================================================
   OPENCLAW — Use Case Cards
   ================================================== */
.openclaw-usecases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.usecase-card {
  background: var(--gray-950);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.2s var(--ease-out);
}

.usecase-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.usecase-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
  line-height: 1;
}

.usecase-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.usecase-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.usecase-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.usecase-tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  border: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
  .openclaw-comparison { grid-template-columns: 1fr; }
  .openclaw-usecases { grid-template-columns: 1fr; }
}

/* ==================================================
   HOVER GATE — prevent false hover on touch devices
   ================================================== */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: translateY(-3px); }
  .category-card:hover { transform: translateY(-3px); }
  .testimonial-card:hover { transform: translateY(-2px); }
  .workflow-card:hover { transform: translateY(-3px); }
  .team-card:hover { transform: translateY(-3px); }
  .blog-card:hover { transform: translateY(-3px); }
  .framework-item:hover { transform: translateY(-2px); }
  .hero-logo-item:hover { color: rgba(255, 255, 255, 0.7); }
}

/* Remove transform hover on touch */
@media (hover: none) {
  .product-card:hover,
  .category-card:hover,
  .testimonial-card:hover,
  .workflow-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .framework-item:hover { transform: none; }
}

/* ==================================================
   FOCUS VISIBLE — keyboard accessibility
   ================================================== */
:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.navbar-pill a:focus-visible,
.navbar-links a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  border-radius: 100px;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: -2px;
}

/* ==================================================
   REDUCED MOTION — accessibility
   ================================================== */
@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;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero-enter,
  .hero-bg-enter {
    animation: none;
    opacity: 1;
  }

  .mobile-nav {
    transition: none;
  }
}

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.25rem; }
  .navbar-pill { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .platform-product { grid-template-columns: 1fr; gap: 2rem; }
  .platform-product.reverse { direction: ltr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-pill { display: none; }
  .navbar-links { display: none; }
  .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav-overlay { display: block; }
  .hero { padding: 7rem 0 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero-logos-row { gap: 1.5rem; }
  .hero-logo-item span { display: none; }
  .hero-logo-item svg { width: 24px; height: 24px; }
  .section-dark, .section-light { padding: 4rem 0; }
  .section-title { font-size: 1.75rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .page-header h1 { font-size: 1.85rem; }
  .cta-inner { padding: 2.5rem 1.5rem; }
  .cta-inner h2 { font-size: 1.5rem; }
  .blog-article-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
  .blog-article-content h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
  .blog-pagination { flex-direction: column; gap: 1rem; }
  .pagination-prev, .pagination-next { width: 100%; }
}
