/* ==========================================================================
   WatchFolder — Dark Theme (AMZBoosted-inspired)
   ========================================================================== */

:root {
  /* Dark palette */
  --ink-950: #0A0A0B;
  --ink-900: #111113;
  --ink-800: #1A1A1D;
  --ink-700: #222226;
  --ink-600: #2D2D32;

  /* Light palette — for cards/surfaces */
  --paper-0: #0A0A0B;
  --paper-50: #111113;
  --paper-100: #1A1A1D;
  --paper-200: #222226;

  /* Orange — primary accent */
  --orange: #FF6B00;
  --orange-light: #FF914D;
  --orange-lighter: #FFB347;
  --orange-dark: #E05500;

  /* Secondary accents */
  --cyan: #38bdf8;
  --green: #22C55E;
  --blue: #3b82f6;

  /* Text — on dark */
  --text-on-dark: #F5F5F0;
  --text-on-dark-muted: #8A8A8E;
  --text-on-dark-faint: #5A5A5E;

  /* Text — on light (for cards) */
  --text-on-light: #F5F5F0;
  --text-on-light-muted: #8A8A8E;
  --text-on-light-faint: #5A5A5E;

  /* Typography */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Spacing & sizing */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 0 1px rgba(255,107,0,0.2), 0 12px 32px rgba(255,107,0,0.2);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-med: 300ms;
  --dur-slow: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Reset & Baseline
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--paper-0);
  color: var(--text-on-light);
}

h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; }

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

h1 {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-on-light);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-on-light);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-on-light);
}

h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-light-muted);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-light-muted);
}

.hero-lede, .lede {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-on-light-muted);
}

.text-accent {
  color: var(--orange);
}

.text-muted {
  color: var(--text-on-light-faint);
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--paper-50);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--text-on-light-muted);
}

/* ==========================================================================
   Navigation & Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--dur-med) var(--ease-in-out);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.nav-shell .brand {
  justify-self: start;
}

.nav-shell .nav-links {
  justify-self: center;
}

.nav-shell .nav-actions {
  justify-self: end;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: var(--text-on-light);
  letter-spacing: -0.03em;
}

.regmark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  position: relative;
}

.regmark::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  right: 4px;
  bottom: 4px;
  border: 2px solid white;
  border-radius: 2px;
}

.nav-links {
  display: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease);
}

.nav-link:hover {
  color: var(--text-on-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta-desktop {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-on-light);
  transition: color var(--dur-fast) var(--ease);
}

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

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper-0);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--dur-med) var(--ease);
  z-index: 99;
}

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

.mobile-menu-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta-desktop {
    display: inline-block;
  }

  .mobile-menu {
    display: none;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--r-lg);
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-xl);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-secondary.btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-block {
  width: 100%;
}

.btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  background: var(--paper-0);
  color: var(--text-on-light);
  padding: 6rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 25%, rgba(255, 107, 0, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 35% 0%, rgba(255, 107, 0, 0.06) 0%, transparent 24%);
  pointer-events: none;
}

.bg-regmarks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-regmarks .regmark {
  position: absolute;
  border-radius: 5px;
}

.brand .regmark {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.875rem;
  width: fit-content;
  font-family: var(--font-body);
}

.hero-lede {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: left;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

/* ====================== Hero Proof / Pipeline ====================== */

.hero-proof {
  position: relative;
  border-radius: var(--r-xl);
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.4));
  margin: auto auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-visual {
  margin-top: 3rem;
}

.hero-art-card {
  width: 80%;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
}

.hero-art-card img {
  display: block;
  width: auto;
  height: 80%;
  object-fit: cover;
}

.hero-card {
  background: var(--ink-800);
  color: var(--text-on-dark);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-faint);
}

.hero-art {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--ink-950);
  margin-bottom: 1.5rem;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   Process & Features Grid
   ========================================================================== */

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

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

.process-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-2xl);
  padding: 2rem;
  transition: all var(--dur-med) var(--ease);
}

.process-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.process-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

.process-card p {
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-on-light-muted);
}

.feature-list li::before {
  content: '\2713';
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: all var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-block:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 0.5rem;
  transition: all var(--dur-med) var(--ease);
}

.feature-block:hover .feature-icon {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3);
}

.feature-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.95rem;
  color: var(--text-on-light-muted);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Examples Preview
   ========================================================================== */

.examples-preview {
  padding-top: 1rem;
}

.examples-preview-card {
  background: linear-gradient(135deg, var(--ink-950), #151519);
  color: white;
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.examples-preview-card h2 {
  color: white;
  margin: 0.8rem 0;
}

.examples-preview-card p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 760px;
}

/* ==========================================================================
   Examples Page
   ========================================================================== */

.examples-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--ink-950), #151519);
}

.examples-hero h1 {
  color: white;
  max-width: 900px;
  margin: 1rem 0 1.5rem;
}

.examples-hero .hero-lede {
  color: rgba(255, 255, 255, 0.6);
}

.examples-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin: 0 0 28px;
  flex-wrap: wrap;
}

.examples-count {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.example-card {
  overflow: hidden;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.041);
  border: 2px solid rgba(149, 149, 149, 0.5);
  border-radius: 18px;
  transition: all 0.25s ease;
}

.example-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.example-media {
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 18px 18px 0 0;
}

.example-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.example-card:hover .example-media img {
  transform: scale(1.025);
}

.example-content {
  padding: 20px 20px 22px;
}

.example-content h3 {
  margin: 0 0 10px;
}

.example-content p {
  margin: 0;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.production-card {
  padding: 1.4rem;
  font-weight: 700;
  color: var(--text-on-light-muted);
  position: relative;
  padding-left: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.production-card::before {
  content: '\2192';
  position: absolute;
  left: 1.3rem;
  color: var(--orange);
}

/* ==========================================================================
   Clients
   ========================================================================== */

.clients-grid {
  cursor: pointer;
  display: block;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

.client-logo {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all var(--dur-med) var(--ease);
}

.client-logo:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.client-logo svg {
  width: 160px;
  height: 80px;
}

.client-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease);
}

.faq-item.is-open {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.faq-q:hover {
  color: var(--orange);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease);
}

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

.faq-toggle svg {
  width: 20px;
  height: 20px;
}

.faq-a {
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease);
  max-height: 0;
  background: rgba(255, 107, 0, 0.02);
}

.faq-a p {
  padding: 0 1.25rem 1.25rem;
  margin: 1.25rem 1.25rem 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   Demo / Video
   ========================================================================== */

.video-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  isolation: isolate;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 45%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.2) 0%, rgba(10, 10, 11, 0.1) 100%);
  transition: background var(--dur-med) var(--ease);
}

.video-frame:hover .video-overlay,
.video-frame:focus-visible .video-overlay {
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.4) 0%, rgba(10, 10, 11, 0.6) 100%);
}

.video-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  box-shadow: var(--shadow-glow);
  transition: transform var(--dur-med) var(--ease);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-frame:hover .video-play-btn,
.video-frame:focus-visible .video-play-btn {
  transform: scale(1.08);
}

.video-frame:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.video-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
}

.video-hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-on-dark-faint);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  background: rgba(10, 10, 11, 0.4);
}

.workflow-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-full);
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
}

.chip-arrow {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .video-play-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   CTA Final
   ========================================================================== */

.cta-final {
  background: var(--ink-950);
  color: var(--text-on-dark);
}

.cta-box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-box h2 {
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-light);
  display: block;
}

.required::after {
  content: '*';
  color: var(--orange);
  margin-left: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-light);
  transition: all var(--dur-med) var(--ease-in-out);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-on-light-faint);
}

textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-body);
}

select option {
  background: var(--ink-800);
  color: var(--text-on-light);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-on-light-faint);
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-block p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-block a {
  color: var(--orange);
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}

.info-block a:hover {
  color: var(--orange-light);
}

.contact-meta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.meta-icon {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.meta-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-on-light-muted);
}

.meta-value {
  font-size: 0.95rem;
  color: var(--text-on-light);
  font-weight: 500;
}

/* Confirmation Page States */
.form-wrapper {
  position: relative;
}

.confirmation-page {
  display: none;
  text-align: center;
  padding: 3rem 2.5rem;
  animation: fadeIn 0.5s ease-in-out;
}

.confirmation-page.is-visible {
  display: block;
}

.contact-form.is-hidden {
  display: none;
}

.checkmark-icon {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkmark-icon svg {
  width: 44px;
  height: 44px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmation-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-on-light);
}

.confirmation-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-light-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-intro strong {
  color: var(--text-on-light);
  font-weight: 600;
}

.confirmation-steps {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: left;
}

.confirmation-steps h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-on-light);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-on-light);
  padding-top: 0.25rem;
}

.confirmation-fallback {
  font-size: 0.95rem;
  color: var(--text-on-light-muted);
  margin-bottom: 2rem;
}

.confirmation-fallback a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.confirmation-fallback a:hover {
  color: var(--orange-light);
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Hide Formspree's default success message */
[data-fs-success],
[role="status"],
[role="alert"],
.formspree-success,
.formspree-error {
  display: none !important;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .form-actions {
    flex-direction: row;
    gap: 1rem;
  }

  .btn-block {
    width: auto;
    flex: 1;
  }

  .confirmation-steps {
    text-align: center;
  }

  .step-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .confirmation-actions {
    flex-direction: row;
  }
}

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

.site-footer {
  background: var(--ink-950);
  color: var(--text-on-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand {
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

.footer-col h4 {
  color: var(--text-on-dark-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-on-dark-faint);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-in var(--dur-med) var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ==========================================================================
   Pipeline Visual (Hero)
   ========================================================================== */

.pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.pipe-stage { width: 100%; }

.pipe-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text-on-dark);
  animation: float 6s ease-in-out infinite;
}

.pipe-card strong {
  font-size: 15px;
  display: block;
}

.pipe-card small {
  display: block;
  color: var(--text-on-dark-muted);
  font-size: 13px;
  margin-top: 2px;
}

.pipe-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  color: #fff;
}

.icon-box { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-archive { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.icon-core { background: linear-gradient(135deg, var(--orange), var(--orange-light)); box-shadow: 0 6px 18px -6px rgba(255, 107, 0, 0.8); }
.icon-done { background: linear-gradient(135deg, #34d399, #059669); }

.pipe-card-done {
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.ok-text {
  color: #22C55E !important;
  font-weight: 600;
}

.pipe-arrow {
  color: var(--orange);
  opacity: 0.7;
  animation: drip 1.6s ease-in-out infinite;
}

.pipe-arrow svg {
  transform: rotate(90deg);
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  animation: pulse 1.4s ease-in-out infinite;
}

.file-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.file-badge.file-ai {
  background: rgba(255, 150, 0, 0.15);
  color: #fb923c;
  margin-left: 4px;
}

.file-badge.file-pdf {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.pipe-icon .file-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1d;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

@keyframes drip {
  0%, 100% { transform: translateY(-3px); opacity: 0.55; }
  50% { transform: translateY(3px); opacity: 1; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* ==========================================================================
   Formspree Integration Styles
   ========================================================================== */

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--orange);
  background-color: rgba(255, 107, 0, 0.05);
}

[data-fs-error="name"],
[data-fs-error="email"],
[data-fs-error="message"] {
  display: none;
  font-size: 0.85rem;
  color: var(--orange);
  margin-top: 0.25rem;
}

[data-fs-error="name"]:not(:empty),
[data-fs-error="email"]:not(:empty),
[data-fs-error="message"]:not(:empty) {
  display: block;
}

[data-fs-error] {
  display: none;
  background: rgba(255, 107, 0, 0.1);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

[data-fs-error]:not(:empty) {
  display: block;
}

[data-fs-success] {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-on-light);
}

[data-fs-success]:not(:empty) {
  display: block;
}

[data-fs-success] p {
  margin: 0;
  color: var(--text-on-light);
}

[data-fs-success] p:first-child {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

[data-fs-success] p:not(:first-child) {
  font-size: 0.95rem;
  color: var(--text-on-light-muted);
}

[data-fs-submit-btn]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================================================================
   Modal (Examples page)
   ========================================================================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25 ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close-hint {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }

  button, .btn {
    border: 1px solid black;
  }
}

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

@media (max-width: 760px) {
  .hero { padding-top: 3.5rem; }
  .section { padding: 4.5rem 0; }
  .examples-preview-card { align-items: flex-start; flex-direction: column; }
  .hero h1 { font-size: 2.7rem; }
  .hero h1[style] { width: auto !important; }
}

/* ==========================================================================
   Pro refresh — inspired by Customily + AMZBoosted
   ========================================================================== */

.top-banner {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(90deg, #E05500, #FF6B00 40%, #FF914D);
  padding: 0.6rem 1rem;
}
.top-banner:hover { filter: brightness(1.06); }

.nav-cta-highlight { margin-left: 0.25rem; }
@media (max-width: 900px) { .nav-cta-highlight { display: none; } }

/* Hero polish */
.hero-grid { align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr !important; gap: 3.5rem !important; }
}

/* ==========================================================================
   Background pattern system — subtle grid + glow + grain
   ========================================================================== */

body {
  background-color: var(--paper-0);
  background-image:
    radial-gradient(ellipse 90% 42% at 50% -8%, rgba(255, 107, 0, 0.07) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  background-position: center top, center top, center top;
}

/* Film grain overlay — adds premium texture, never blocks clicks */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* Hero: richer grid + dots + glows, faded toward content */
.hero-bg {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 107, 0, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 12% 85%, rgba(56, 189, 248, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 35% 0%, rgba(255, 107, 0, 0.06) 0%, transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 36px 36px, 36px 36px;
  -webkit-mask-image: linear-gradient(180deg, black 55%, transparent 100%);
  mask-image: linear-gradient(180deg, black 55%, transparent 100%);
}

/* Alternating sections: hairlines + faint top glow */
.section-alt {
  background: var(--paper-50);
  background-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 107, 0, 0.05) 0%, transparent 65%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dark sections get a dotted texture band at top */
.examples-hero,
.cta-final {
  position: relative;
}
.examples-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 70%);
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

@media (max-width: 640px) {
  body {
    background-size: auto, 32px 32px, 32px 32px;
  }
}
}
.hero-copy h1 { max-width: 16ch; }
.hero-lede strong { color: var(--text-on-light); }

.hero-checks { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.25rem 0 0; padding: 0; }
.hero-copy .hero-checks { margin-top: -0.75rem; }
.hero-checks li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.99rem; font-weight: 600; color: var(--text-on-light);
}
.hero-checks svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); margin-top: 2px; }

.hero-privacy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--text-on-light);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px; padding: 0.5rem 0.9rem; width: fit-content;
}
.hero-privacy .lock { color: var(--green); }
.hero-micro { font-size: 0.85rem; color: var(--text-on-light-faint); margin-top: -0.9rem; }

/* Hero card */
.hero-card { padding: 1.25rem; width: 100%; max-width: 440px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: #86efac; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25); border-radius: 999px; padding: 0.3rem 0.7rem;
}
.pipe-count {
  margin-left: auto; font-size: 0.8rem; font-weight: 800;
  background: rgba(255,255,255,0.08); border-radius: 999px; padding: 0.2rem 0.6rem;
}
.pipe-count.done { background: rgba(34,197,94,0.15); color: #86efac; }
.card-foot { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; font-size: 0.82rem; }

/* Workflow-builder nodes (TRIGGER → ACTION → DESTINATION) */
.pipe-card { flex-direction: column; align-items: stretch; gap: 0.65rem; position: relative; }
.node-row { display: flex; align-items: center; gap: 14px; }
.pipe-icon.glyph {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.glyph.g-blue { color: #5eb1ff; background: rgba(94,177,255,0.10); border-color: rgba(94,177,255,0.32); box-shadow: 0 0 18px -8px #5eb1ff; }
.glyph.g-orange { color: #fb923c; background: rgba(251,146,60,0.10); border-color: rgba(251,146,60,0.32); box-shadow: 0 0 18px -8px #fb923c; }
.glyph.g-green { color: #34d399; background: rgba(52,211,153,0.10); border-color: rgba(52,211,153,0.32); box-shadow: 0 0 18px -8px #34d399; }
.node-type { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1px; }
.nt-blue { color: #5eb1ff; } .nt-orange { color: #fb923c; } .nt-green { color: #34d399; }
.node-detail {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 0.5rem 0.75rem;
  font-size: 0.8rem; font-weight: 600; color: var(--text-on-dark-muted);
}
.node-active {
  position: absolute; top: -11px; right: 14px;
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  background: linear-gradient(135deg, #34d399, #10b981); color: #052e21;
  padding: 0.22rem 0.6rem; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(52,211,153,0.45);
}
.pipe-arrow { width: 2px; height: 20px; border-radius: 2px; background: rgba(255,255,255,0.16); padding: 0; }
.pipe-arrow svg { display: none; }
.mini-log {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 0.5rem 0.7rem; color: var(--text-on-dark-muted);
}
.mini-log span { color: var(--green); font-weight: 800; margin-right: 0.4rem; }
.mini-log.dim { opacity: 0.7; }
.mini-log.dim span { color: var(--orange); }
.zip-tool {
  margin-top: 1rem; border-radius: 12px; padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.04));
  border: 1px solid rgba(255,107,0,0.25);
}
.zip-tool strong { display: block; font-size: 0.9rem; color: #fff; margin-bottom: 0.15rem; }
.zip-tool span { font-size: 0.83rem; color: var(--text-on-dark-muted); }

/* Trust strip */
.trust-strip {
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.trust-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-on-dark-faint); }
.trust-logos { display: flex; flex-wrap: wrap; gap: 0.7rem 1rem; justify-content: center; align-items: center; margin-top: 0.9rem; }
.trust-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0.95rem; border-radius: 999px;
}
.trust-dot { color: var(--orange); font-weight: 900; }

/* Generic */
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.22); border-radius: 999px; padding: 0.35rem 0.8rem; margin-bottom: 1rem;
}
.section-tight { padding: 4rem 0; }
.center { text-align: center; margin-top: 2.25rem; }
.fine { text-align: center; font-size: 0.82rem; color: var(--text-on-light-faint); margin-top: 1.25rem; }

/* Magic grid */
.magic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .magic-grid { grid-template-columns: repeat(4, 1fr); } }
.magic-card {
  display: flex; gap: 0.9rem; align-items: center;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 1rem 1.1rem; transition: all var(--dur-med) var(--ease);
}
.magic-card:hover { border-color: rgba(255,107,0,0.35); transform: translateY(-3px); }
.magic-card strong { display: block; font-size: 0.98rem; color: #fff; }
.magic-card small { display: block; font-size: 0.83rem; color: var(--text-on-light-muted); margin-top: 2px; }
.magic-ico {
  width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: 13px; font-weight: 800; color: #fff;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: none;
  font-family: var(--font-display);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}

/* Per-capability accent colors */
.mi-amber { color: #fbbf24; background: rgba(251,191,36,0.09); border-color: rgba(251,191,36,0.30); }
.mi-sky { color: #5eb1ff; background: rgba(94,177,255,0.09); border-color: rgba(94,177,255,0.30); }
.mi-violet { color: #a78bfa; background: rgba(167,139,250,0.09); border-color: rgba(167,139,250,0.30); }
.mi-gold { color: #fcd34d; background: rgba(252,211,77,0.09); border-color: rgba(252,211,77,0.30); }
.mi-green { color: #34d399; background: rgba(52,211,153,0.09); border-color: rgba(52,211,153,0.30); }
.mi-slate { color: #94a3b8; background: rgba(148,163,184,0.09); border-color: rgba(148,163,184,0.30); }
.mi-orange { color: #fb923c; background: rgba(251,146,60,0.09); border-color: rgba(251,146,60,0.30); }
.mi-pink { color: #f472b6; background: rgba(244,114,182,0.09); border-color: rgba(244,114,182,0.30); }

.magic-card:hover .magic-ico { transform: scale(1.07); }
.magic-card:hover .mi-amber { box-shadow: 0 10px 24px -8px rgba(251,191,36,0.55); border-color: rgba(251,191,36,0.55); }
.magic-card:hover .mi-sky { box-shadow: 0 10px 24px -8px rgba(94,177,255,0.55); border-color: rgba(94,177,255,0.55); }
.magic-card:hover .mi-violet { box-shadow: 0 10px 24px -8px rgba(167,139,250,0.55); border-color: rgba(167,139,250,0.55); }
.magic-card:hover .mi-gold { box-shadow: 0 10px 24px -8px rgba(252,211,77,0.55); border-color: rgba(252,211,77,0.55); }
.magic-card:hover .mi-green { box-shadow: 0 10px 24px -8px rgba(52,211,153,0.55); border-color: rgba(52,211,153,0.55); }
.magic-card:hover .mi-slate { box-shadow: 0 10px 24px -8px rgba(148,163,184,0.55); border-color: rgba(148,163,184,0.55); }
.magic-card:hover .mi-orange { box-shadow: 0 10px 24px -8px rgba(251,146,60,0.55); border-color: rgba(251,146,60,0.55); }
.magic-card:hover .mi-pink { box-shadow: 0 10px 24px -8px rgba(244,114,182,0.55); border-color: rgba(244,114,182,0.55); }

/* Growth */
.growth-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .growth-grid { grid-template-columns: repeat(3, 1fr); } }
.growth-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 2rem;
}
.growth-card:hover { border-color: rgba(255,107,0,0.3); }
.growth-card h3 { margin-bottom: 0.7rem; }
.growth-card p { margin-bottom: 1.25rem; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.7rem;
  position: relative; overflow: hidden;
}
.step-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.7;
}
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-tag {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #ffd8b5; background: rgba(255,107,0,0.14); border: 1px solid rgba(255,107,0,0.3);
  padding: 0.25rem 0.6rem; border-radius: 999px;
}
.step-card .process-number { margin-bottom: 0; font-size: 2.2rem; }

/* Logo cloud */
.logo-cloud { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2rem; }
.cloud-logo {
  font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.85);
  background: var(--ink-800); border: 1px solid rgba(255,255,255,0.09);
  padding: 0.65rem 1.1rem; border-radius: 14px;
}

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .testi-grid { grid-template-columns: 1.2fr 0.8fr; } }
.testi-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2rem; display: block; transition: all var(--dur-med) var(--ease);
}
.testi-card:hover { border-color: rgba(255,107,0,0.35); transform: translateY(-3px); }
.testi-card img { width: 210px; max-width: 100%; background: #fff; border-radius: 12px; padding: 0.6rem 0.9rem; margin-bottom: 1.25rem; }
.testi-card p { font-size: 1.05rem; color: #fff; line-height: 1.7; margin-bottom: 1rem; }
.testi-meta { font-size: 0.86rem; font-weight: 700; color: var(--orange); }
.testi-side { display: flex; flex-direction: column; gap: 1rem; }
.testi-point {
  background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.2);
  border-radius: 16px; padding: 1.15rem 1.25rem;
}
.testi-point strong { display: block; color: #fff; margin-bottom: 0.2rem; }
.testi-point span { font-size: 0.9rem; color: var(--text-on-light-muted); }

/* CTA */
.cta-box-large { padding: clamp(2.5rem, 6vw, 4.5rem) !important; }
.cta-checks {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center;
  margin: 1.5rem 0 2rem; padding: 0; list-style: none;
  font-weight: 700; font-size: 0.93rem; color: #ffd8b5;
}
.footer-mail a { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr !important; }
}
@media (max-width: 640px) {
  .hero-ctas .btn-lg { width: 100%; }
  .magic-grid { grid-template-columns: 1fr 1fr; }
  .trust-logo { font-size: 0.9rem; }
}
