/* ===== Design Tokens ===== */
:root {
  --green: #18F291;
  --green-light: #58F1B2;
  --green-dark: #007D2E;
  --green-subtle: rgba(24, 242, 145, 0.10);
  --green-glow: rgba(24, 242, 145, 0.25);

  --bg: #FFFFFF;
  --heading: #1a1a1a;
  --body: #333333;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.06);
  --footer-bg: #1a1a1a;

  --radius-card: 24px;
  --radius-pill: 9999px;
  --radius-input: 14px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-btn: 0 4px 16px rgba(24, 242, 145, 0.3);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-hero: clamp(42px, 7vw, 76px);
  --font-section: clamp(32px, 5vw, 52px);
  --font-body: clamp(16px, 1.1vw, 18px);

  --section-py: clamp(80px, 12vw, 140px);
  --section-px: clamp(20px, 4vw, 40px);
  --max-width: 1320px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--font-body);
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }

/* ===== Container ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

section {
  padding: var(--section-py) 0;
  scroll-margin-top: 100px;
}

/* ===== Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease), padding 300ms var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  margin-left: auto;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  transition: color 200ms var(--ease);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: width 200ms var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.nav-link-simple {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  transition: color 200ms var(--ease);
}
.nav-link-simple:hover { color: var(--heading); }

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

.nav-dropdown-trigger {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}

.nav-dropdown-trigger:hover { color: var(--heading); }

.nav-dropdown-trigger svg {
  transition: transform 200ms var(--ease);
  display: inline-block;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 200ms var(--ease), visibility 200ms var(--ease), transform 200ms var(--ease);
  z-index: 100;
}

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

.nav-dropdown-menu .dropdown-item {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 150ms var(--ease);
}

.nav-dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu .dropdown-item::after {
  display: none;
}

.nav-dropdown-menu .dropdown-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.nav-dropdown-menu .dropdown-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mega menu (Customers) */
.nav-mega-menu {
  min-width: 360px;
}

.mega-menu-grid {
  display: flex;
  flex-direction: column;
}

.mega-menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  padding: 8px 16px 4px;
}

/* Mobile menu sections */
.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 300px;
}

.mobile-menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.mobile-menu-section a {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  cursor: pointer;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

.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 menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
}

/* ===== HERO ===== */
.hero {
  padding-top: 130px;
  padding-bottom: var(--section-py);
  text-align: center;
}

.hero-card {
  background: var(--green-subtle);
  border-radius: 32px;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.hero-badge-icon {
  font-size: 16px;
}

.hero-heading {
  font-size: var(--font-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 28px;
}

/* ===== Rotating words — Neople style ===== */
.rotating-container {
  display: block;
  position: relative;
  height: 1.12em;
  overflow: hidden;
  clip-path: inset(0);
  margin-bottom: 4px;
}

.rotating-track {
  display: block;
  position: relative;
  transition: transform 500ms cubic-bezier(0.68, -0.3, 0.32, 1.3);
}

.rotating-word {
  display: block;
  height: 1.12em;
  line-height: 1.12;
  white-space: nowrap;
}

.rotating-word .highlight-bg {
  background: linear-gradient(135deg, rgba(24, 242, 145, 0.12) 0%, rgba(88, 241, 178, 0.08) 100%);
  border-radius: 14px;
  padding: 0 18px;
  display: inline-block;
}

.hero-static {
  display: block;
  margin-top: 0;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  border: none;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  background: transparent;
  color: var(--heading);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), background 200ms var(--ease);
}

.btn-secondary:hover {
  border-color: var(--green);
  background: var(--green-subtle);
  transform: translateY(-2px);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border);
}

.social-proof-label {
  text-align: center;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 36px;
}

.marquee-track {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content img {
  max-height: 28px;
  max-width: 120px;
  height: auto;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 300ms var(--ease), filter 300ms var(--ease);
  flex-shrink: 0;
}

.marquee-content img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PROBLEM ===== */
.problem { text-align: left; }

.section-heading {
  font-size: var(--font-section);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 48px;
}

.problem-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 56px;
}

.problem-stats {
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 64px;
}

.problem-stat-number {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

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

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.problem-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}

.problem-card:last-child {
  border-right: none;
  padding-right: 0;
}

.problem-card:first-child {
  padding-left: 0;
}

.problem-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

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

.problem-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--green-subtle);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

/* ===== PROBLEM STATEMENT ===== */
.problem-statement {
  background: linear-gradient(135deg, #0a2e1a 0%, #0d4a28 40%, #0f5e30 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.problem-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(24, 242, 145, 0.12), transparent 60%);
  pointer-events: none;
}

.problem-statement .container {
  position: relative;
  z-index: 1;
}

.problem-statement-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 32px;
  max-width: 1080px;
}

.problem-statement-body {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 980px;
}

.problem-statement-body + .problem-statement-body {
  margin-top: 20px;
}

/* ===== PLATFORM PREVIEW ===== */
.platform-preview {
  text-align: center;
}

.platform-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--green-subtle);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.platform-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 64px;
}

.platform-heading .hl {
  color: var(--green-dark);
}

.platform-mockup {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  text-align: left;
  max-width: 1240px;
  margin: 0 auto;
}

/* Browser chrome */
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f4f4f5;
  border-bottom: 1px solid var(--border);
}
.chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #ff5f57; }
.dot-amber { background: #ffbd2e; }
.dot-green { background: #28c840; }
.chrome-url {
  margin-left: 16px;
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  max-width: 280px;
  margin-right: 16px;
}

/* Body grid */
.mockup-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
  background: #fff;
}

/* Sidebar */
.mockup-sidebar {
  background: #fafaf7;
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--heading);
  padding: 0 8px 16px;
  letter-spacing: -0.01em;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--body);
  cursor: default;
}
.sidebar-item.active {
  background: var(--green-subtle);
  color: var(--green-dark);
  font-weight: 600;
}
.sidebar-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-avatar img { width: 12px; height: 12px; }
.si-icon {
  width: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px 4px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8b6ff 0%, #b8c0ff 100%);
  flex-shrink: 0;
}
.sidebar-user div {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.3;
  min-width: 0;
}
.sidebar-user strong {
  font-size: 12px;
  color: var(--heading);
  font-weight: 600;
}
.sidebar-user span {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Main panel */
.mockup-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
}

/* Greeting */
.mockup-greeting {
  display: flex;
  align-items: center;
  gap: 16px;
}
.joe-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.joe-avatar img { width: 28px; height: 28px; }
.greeting-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 2px;
}
.greeting-text .hl { color: var(--green-dark); }
.greeting-text .wave {
  display: inline-block;
  margin-right: 4px;
}
.greeting-text p {
  font-size: 13px;
  color: var(--muted);
}

/* KPI tiles */
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  transition: background 200ms var(--ease);
}
.kpi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-subtle);
  color: var(--green-dark);
  margin-bottom: 12px;
}
.kpi-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpi-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Two-column row */
.mockup-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
}
.mockup-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.mockup-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-bullet {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-subtle);
  color: var(--green-dark);
  text-align: center;
  line-height: 18px;
  font-weight: 700;
  margin-right: 8px;
}
.see-all {
  font-size: 11px;
  font-weight: 500;
  color: var(--green-dark);
  cursor: default;
}

/* Quick actions */
.qa-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  cursor: default;
  transition: background 200ms var(--ease);
}
.qa-item + .qa-item { margin-top: 2px; }
.qa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f4f4f5;
  color: var(--green-dark);
  flex-shrink: 0;
}
.qa-item div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.4;
}
.qa-item strong {
  font-size: 13px;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 1px;
}
.qa-item span { color: var(--muted); }

/* Activity items */
.act-item {
  display: grid;
  grid-template-columns: 26px 1fr 14px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 200ms var(--ease);
}
.act-item + .act-item { margin-top: 2px; }
.act-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #f4f4f5;
  flex-shrink: 0;
}
.act-icon-warn { background: #fff4e6; color: #d97706; }
.act-icon-card { background: #f3e8ff; color: #7c3aed; }
.act-icon-reset { background: #e0f2fe; color: #0369a1; }
.act-icon-lock { background: #f5f5f4; color: #57534e; }
.act-icon-cog { background: #fee2e2; color: #b91c1c; }
.act-item div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.4;
  min-width: 0;
}
.act-item strong {
  font-size: 13px;
  color: var(--heading);
  font-weight: 600;
}
.act-item span { color: var(--muted); }
.act-status {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.act-status.pending { background: #fbbf24; }
.act-status.progress { background: #60a5fa; }
.act-status.resolved {
  background: #34d399;
  position: relative;
}
.act-status.resolved::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
}

/* Bottom strip */
.mockup-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--green-subtle);
  border: 1px solid rgba(24, 242, 145, 0.2);
  border-radius: 14px;
  transition: background 200ms var(--ease);
}
.strip-emoji {
  font-size: 18px;
  flex-shrink: 0;
}
.mockup-strip > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mockup-strip strong {
  font-size: 13px;
  color: var(--heading);
  font-weight: 600;
}
.mockup-strip p {
  font-size: 12px;
  color: var(--muted);
}
.strip-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: default;
  flex-shrink: 0;
}

/* Animated cursor */
.cursor-wrap {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
  animation: cursor-path 12s ease-in-out infinite;
  animation-play-state: paused;
}
.mockup-cursor {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  animation: cursor-click 12s linear infinite;
  animation-play-state: paused;
  transform-origin: 25% 25%;
}
.platform-mockup.animating .cursor-wrap,
.platform-mockup.animating .mockup-cursor,
.platform-mockup.animating [data-step] {
  animation-play-state: running;
}

@keyframes cursor-path {
  0%, 100% { top: -6%; left: 60%; opacity: 0; }
  4%       { top: -6%; left: 60%; opacity: 1; }
  /* Stop 1: Use-case templates row */
  16%      { top: 60%; left: 32%; opacity: 1; }
  22%      { top: 60%; left: 32%; opacity: 1; }
  /* Stop 2: Maak een workflow row */
  32%      { top: 70%; left: 32%; opacity: 1; }
  36%      { top: 70%; left: 32%; opacity: 1; }
  /* Stop 3: Storing #4521 row */
  46%      { top: 60%; left: 75%; opacity: 1; }
  54%      { top: 60%; left: 75%; opacity: 1; }
  /* Stop 4: Gesprekken vandaag KPI */
  64%      { top: 27%; left: 50%; opacity: 1; }
  70%      { top: 27%; left: 50%; opacity: 1; }
  /* Stop 5: Plan een demo strip */
  82%      { top: 92%; left: 50%; opacity: 1; }
  90%      { top: 92%; left: 50%; opacity: 1; }
  96%      { top: 92%; left: 50%; opacity: 0; }
}

@keyframes cursor-click {
  0%, 17%, 22%, 33%, 37%, 47%, 54%, 65%, 70%, 83%, 90%, 100% { transform: scale(1); }
  19%, 49%, 85% { transform: scale(0.78); }
}

/* Element highlight syncing — each step gets its own keyframe with the same total duration */
[data-step="1"] { animation: hl-step-1 12s ease-in-out infinite; animation-play-state: paused; }
[data-step="2"] { animation: hl-step-2 12s ease-in-out infinite; animation-play-state: paused; }
[data-step="3"] { animation: hl-step-3 12s ease-in-out infinite; animation-play-state: paused; }
[data-step="4"] { animation: hl-step-4 12s ease-in-out infinite; animation-play-state: paused; }
[data-step="5"] { animation: hl-step-5 12s ease-in-out infinite; animation-play-state: paused; }

@keyframes hl-step-1 {
  0%, 14%, 24%, 100% { background: transparent; }
  16%, 22%           { background: var(--green-subtle); }
}
@keyframes hl-step-2 {
  0%, 30%, 38%, 100% { background: transparent; }
  32%, 36%           { background: var(--green-subtle); }
}
@keyframes hl-step-3 {
  0%, 44%, 56%, 100% { background: transparent; }
  46%, 54%           { background: var(--green-subtle); }
}
@keyframes hl-step-4 {
  0%, 62%, 72%, 100% { background: #fff; }
  64%, 70%           { background: var(--green-subtle); }
}
@keyframes hl-step-5 {
  0%, 80%, 92%, 100% { background: var(--green-subtle); }
  82%, 90%           { background: rgba(24, 242, 145, 0.18); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cursor-wrap,
  .mockup-cursor,
  [data-step] {
    animation: none !important;
  }
  .cursor-wrap { display: none; }
}

/* Mobile: condensed app-style view that fits in one screen */
@media (max-width: 768px) {
  .platform-mockup {
    border-radius: 28px;
    max-width: 360px;
  }
  .mockup-chrome { display: none; }
  .mockup-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mockup-sidebar { display: none; }

  .mockup-main {
    padding: 18px 14px;
    gap: 12px;
  }

  /* Compact greeting */
  .mockup-greeting { gap: 12px; }
  .joe-avatar { width: 42px; height: 42px; }
  .joe-avatar img { width: 22px; height: 22px; }
  .greeting-text h3 { font-size: 17px; }
  .greeting-text p { font-size: 12px; }

  /* 4 KPIs in a 2x2 grid */
  .mockup-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .kpi-tile { padding: 10px 8px; border-radius: 10px; }
  .kpi-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    margin-bottom: 6px;
  }
  .kpi-icon svg { width: 12px; height: 12px; }
  .kpi-num { font-size: 18px; }
  .kpi-label {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 2px;
  }

  /* Drop quick actions; activity is enough */
  .mockup-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mockup-actions { display: none; }

  /* Compact activity, only top 3 items */
  .mockup-activity { padding: 12px; border-radius: 12px; }
  .mockup-card h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .see-all { font-size: 10px; }
  .act-item {
    padding: 6px 6px;
    grid-template-columns: 22px 1fr 10px;
    gap: 8px;
  }
  .act-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }
  .act-icon svg { width: 12px; height: 12px; }
  .act-item strong { font-size: 11px; }
  .act-item span { font-size: 10px; }
  .act-status { width: 10px; height: 10px; }
  .act-status.resolved::after {
    top: 3px; left: 3px;
    width: 3px; height: 5px;
    border-width: 1px;
  }
  /* Activity card has h4 (child 1) + 5 act-items (children 2-6). Keep first 3 items (children 2-4). */
  .mockup-activity > .act-item:nth-child(n+5) { display: none; }

  /* Compact CTA strip */
  .mockup-strip {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }
  .strip-emoji { font-size: 16px; }
  .mockup-strip strong { font-size: 12px; }
  .mockup-strip p { font-size: 10px; }
  .strip-link { font-size: 11px; }

  .cursor-wrap { display: none; }
}

/* ===== BREAK CTA ===== */
.break-cta {
  padding: 0;
}

.break-cta-inner {
  background: linear-gradient(135deg, #0a2e1a 0%, #0d4a28 40%, #0f5e30 100%);
  border-radius: 0;
  padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.break-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(24, 242, 145, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.break-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(24, 242, 145, 0.15);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  position: relative;
}

.break-cta-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.break-cta-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.btn-break {
  position: relative;
}

/* ===== FEATURES ===== */
.features { text-align: center; }

.features-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--green-subtle);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.features-ecosystem {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  text-align: left;
  align-items: start;
  margin-top: 16px;
}

.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-tab {
  display: block;
  text-align: left;
  padding: 28px 24px;
  border-left: 3px solid var(--border);
  cursor: pointer;
  transition: border-color 300ms var(--ease), background 300ms var(--ease);
  width: 100%;
}

.feature-tab:hover {
  background: rgba(0, 0, 0, 0.02);
}

.feature-tab.active {
  border-left-color: var(--green);
  background: var(--green-subtle);
}

.feature-tab h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.feature-tab p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Feature visual panels */
.features-visual {
  position: relative;
  min-height: 400px;
}

/* Inline visuals (inside tabs) — hidden on desktop */
.feature-inline-visual {
  display: none;
}

.feature-visual-panel {
  display: none;
  animation: fadeUp 400ms var(--ease);
}

.feature-visual-panel.active {
  display: block;
}

.visual-mockup {
  background: linear-gradient(145deg, #e8faf0 0%, #d4f5e3 50%, #c8f0d8 100%);
  border-radius: var(--radius-card);
  padding: 32px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat mockup */
.visual-chat {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  padding: 12px 16px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.chat-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.chat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-left: auto;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: var(--shadow-sm);
}

.chat-bubble.agent {
  background: #fff;
  color: var(--body);
  align-self: flex-start;
}

.chat-bubble.user {
  background: var(--green);
  color: #fff;
  align-self: flex-end;
}

.chat-bubble.resolved {
  border: 1.5px solid var(--green);
}

/* Dashboard mockup */
.visual-dashboard {
  width: 100%;
}

.dash-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.dash-kpi {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.dash-kpi-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
}

.dash-kpi-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.dash-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
}

.dash-bar {
  flex: 1;
  background: linear-gradient(to top, var(--green), var(--green-light));
  border-radius: 6px 6px 0 0;
  min-height: 10px;
}

/* Monitoring mockup */
.visual-monitoring {
  width: 100%;
}

.monitor-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 16px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.monitor-node {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  box-shadow: var(--shadow-sm);
}

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

.monitor-dot.green { background: var(--green); }
.monitor-dot.orange { background: #f59e0b; }
.monitor-dot.blue { background: #3b82f6; }

.monitor-alert {
  background: #fff;
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.monitor-alert svg {
  flex-shrink: 0;
  color: #f59e0b;
}

/* ===== STRIP CTA ===== */
.strip-cta {
  padding: 20px 0;
  background: rgba(24, 242, 145, 0.06);
  border-top: 1px solid rgba(24, 242, 145, 0.1);
  border-bottom: 1px solid rgba(24, 242, 145, 0.1);
}

.strip-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.strip-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: rgba(24, 242, 145, 0.15);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}

.strip-cta-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
}

.strip-cta-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  transition: color 200ms var(--ease);
}

.strip-cta-link:hover {
  color: var(--heading);
}

/* ===== METRICS ===== */
.metrics {
  background: var(--bg);
  text-align: center;
}

.metrics-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--green-subtle);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.metrics-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 16px;
}

.bento-card {
  background: #f7f8fa;
  border-radius: var(--radius-card);
  padding: 48px 32px;
  text-align: center;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

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

.bento-large {
  grid-column: span 1;
}

.bento-accent {
  background: var(--heading);
}

.bento-accent .bento-number {
  color: var(--green);
}

.bento-accent .bento-label {
  color: rgba(255, 255, 255, 0.6);
}

.bento-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.bento-label {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

/* ===== INTEGRATION ===== */
.integration { text-align: center; }

.bento-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  margin-top: 16px;
}

.bento-feature-card {
  background: #f7f8fa;
  border-radius: var(--radius-card);
  padding: 36px;
  transition: box-shadow 300ms var(--ease), transform 300ms var(--ease);
}

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

.bento-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bento-feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.bento-feature-visual {
  margin-top: 0;
}

/* Channel pills */
.bento-channels {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  box-shadow: var(--shadow-sm);
}

.channel-pill svg {
  color: var(--green-dark);
}

/* Mini KPI row */
.bento-kpi-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bento-mini-kpi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.bento-mini-kpi strong {
  color: var(--heading);
  font-weight: 700;
}

/* Action items */
.bento-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  box-shadow: var(--shadow-sm);
}

.action-item svg {
  color: var(--muted);
  flex-shrink: 0;
}

.action-highlight {
  background: var(--green);
  color: #fff;
}

.action-highlight svg {
  color: #fff;
}

/* Tech badges */
.bento-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  box-shadow: var(--shadow-sm);
}

/* Integration groups */
.bento-integrations {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.integration-group {
  flex: 1;
  min-width: 140px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.integration-group-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}

.integration-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.int-logo {
  font-size: 12px;
  font-weight: 600;
  color: var(--body);
  padding: 4px 10px;
  background: #f0f0f0;
  border-radius: 6px;
}

.int-logo-plus {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

/* Uptime */
.bento-uptime {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.uptime-badge {
  padding: 10px 20px;
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.uptime-badge strong {
  color: var(--green-dark);
  font-weight: 700;
}

.uptime-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  padding: 8px 16px;
  background: var(--green-subtle);
  border-radius: var(--radius-pill);
}

.uptime-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ===== TESTIMONIAL ===== */
/* ===== ABOUT US ===== */
.about-us {
  background: #f7f8fa;
  text-align: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: var(--green-subtle);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 56px;
  margin-top: 48px;
  text-align: left;
  box-shadow: var(--shadow-card);
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-left .about-logo img {
  height: 28px;
  width: auto;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.about-founders-names {
  font-size: 17px;
  margin-bottom: 24px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f0f1f3;
  border-radius: 16px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-photo-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.about-right p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 20px;
}

.about-right p:last-of-type {
  margin-bottom: 28px;
}

.about-linkedin-links {
  display: flex;
  gap: 24px;
}

.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
  transition: color 200ms var(--ease);
}

.about-linkedin:hover {
  color: var(--heading);
}

.about-linkedin svg {
  display: inline-block;
}

/* ===== NEWS ===== */
.news {
  background: #fff;
}

.news-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

.news-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.news-see-more {
  font-size: 15px;
  color: var(--muted);
  transition: color 200ms var(--ease);
}

.news-see-more:hover {
  color: var(--heading);
}

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

.news-card {
  display: block;
  text-decoration: none;
}

.news-card-image {
  height: 240px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.news-card-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.news-card-icon {
  display: block;
}

.news-card-quote {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  padding: 24px;
  text-align: center;
}

.news-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  line-height: 1.35;
}

.news-card-meta {
  font-size: 14px;
  color: var(--muted);
}

/* ===== SAFE & SECURE ===== */
.safe-secure {
  background: #f7f8fa;
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 0;
}

.safe-secure-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.safe-secure-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.safe-secure-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}

.safe-secure-link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all 200ms var(--ease);
}

.safe-secure-link:hover {
  background: var(--heading);
  color: #fff;
  border-color: var(--heading);
}

.safe-secure-badges {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-badge-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.trust-badge-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA / FORM ===== */
.cta { text-align: center; }

.cta-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--muted);
  margin: -32px auto 44px;
  max-width: 480px;
}

.cta-form {
  max-width: 540px;
  margin: 0 auto 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-form input {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--bg);
  font-size: 16px;
  color: var(--heading);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.cta-form input::placeholder { color: #aaa; }

.cta-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-subtle);
}

.btn-submit {
  width: 100%;
  font-size: 17px;
  height: 58px;
}

.trust-text {
  font-size: 13px;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.trust-text svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Form states */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
  animation: fadeUp 500ms var(--ease);
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-success p { color: var(--muted); }

.form-error {
  display: none;
  color: #e53e3e;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}

.form-error.show { display: block; }

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

/* ===== FAQ ===== */
.faq {
  background: #fff;
}

.faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.faq-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 200ms var(--ease);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 300ms var(--ease);
  color: var(--muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease), padding 300ms var(--ease);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  color: #fff;
  padding: 72px 0 0;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col .footer-logo img {
  height: 24px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 200ms var(--ease);
}

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

.footer-socials svg {
  display: block;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom-bar {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-inner .footer-email {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== ARTICLE MODALS ===== */
.article-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
}

.article-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.article-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 300ms var(--ease);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-modal::-webkit-scrollbar {
  display: none;
}

.article-modal-overlay.open .article-modal {
  transform: translateY(0) scale(1);
}

.article-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--heading);
  cursor: pointer;
  z-index: 10;
  transition: background 200ms var(--ease);
  line-height: 1;
}

.article-modal-close:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.article-modal-header {
  height: 200px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-modal-body {
  padding: 40px 48px 48px;
}

.article-modal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-modal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.article-modal-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-modal-body p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-modal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.article-modal-body ul li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.article-modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.article-modal-body blockquote {
  border-left: 3px solid var(--green);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--green-subtle);
  border-radius: 0 12px 12px 0;
}

.article-modal-body blockquote p {
  font-size: 17px;
  font-weight: 500;
  color: var(--heading);
  font-style: italic;
  margin-bottom: 8px;
}

.article-modal-body blockquote cite {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
}

.article-modal-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* Features ecosystem stacks */
  .features-ecosystem { grid-template-columns: 1fr; }
  .features-visual { min-height: 300px; }

  /* Metrics & bento */
  .metrics-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-features { grid-template-columns: 1fr; }

  /* Problem stats wrap */
  .problem-stats { flex-wrap: wrap; }

  /* About card stacks */
  .about-card { grid-template-columns: 1fr; gap: 40px; }

  /* FAQ stacks */
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Safe & Secure stacks */
  .safe-secure-inner { flex-direction: column; text-align: center; }
  .safe-secure-sub { margin-left: auto; margin-right: auto; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu full-screen overlay */
  .mobile-menu {
    padding: 100px 32px 48px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 40px;
  }
  .mobile-menu a {
    font-size: 20px;
  }
  .mobile-menu-section {
    max-width: 100%;
    gap: 14px;
  }
  .mobile-menu-section a {
    font-size: 17px;
  }

  /* Hero */
  .hero { padding-top: 100px; }
  .hero-card {
    padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 32px);
    border-radius: 24px;
  }
  .hero-heading { letter-spacing: -0.03em; }
  .rotating-container { margin-bottom: 0; }

  /* Social proof */
  .social-proof { padding: 20px 0 24px; }
  .social-proof-label { margin-bottom: 24px; }

  /* Problem - stats in a row like Duna */
  .problem-stats {
    flex-direction: row;
    gap: 0;
    border: none;
    padding: 28px 0;
    margin-bottom: 48px;
  }
  .problem-stat {
    flex: 1;
    text-align: left;
  }
  .problem-stat-number {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 4px;
  }
  .problem-stat-label {
    font-size: 13px;
  }
  .problem-cards { grid-template-columns: 1fr; }
  .problem-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .problem-card:last-child { border-bottom: none; }
  .problem-card:first-child { padding-left: 0; }

  /* Features - mobile stacking cards like lemonflow */
  .features-ecosystem {
    display: block;
  }
  .features-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .feature-tab {
    border-left: none;
    border: none;
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 0;
    background: #f7f8fa;
    cursor: default;
    position: sticky;
    top: 70px;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }
  .feature-tab:nth-child(1) { top: 70px; z-index: 11; }
  .feature-tab:nth-child(2) { top: 90px; z-index: 12; }
  .feature-tab:nth-child(3) { top: 110px; z-index: 13; }
  .feature-tab.active {
    border-color: transparent;
    background: #f7f8fa;
  }
  .feature-tab h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .feature-tab p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  /* Show inline visuals on mobile */
  .feature-inline-visual {
    display: block;
    margin-top: 4px;
  }
  .feature-inline-visual .visual-mockup {
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }
  /* Hide desktop visual panel on mobile */
  .features-visual {
    display: none;
  }

  /* Integration bento - sticky stacking cards */
  .bento-features {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bento-feature-card {
    padding: 28px;
    position: sticky;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    border-radius: 24px;
  }
  .bento-feature-card:nth-child(1) { top: 70px; z-index: 11; }
  .bento-feature-card:nth-child(2) { top: 90px; z-index: 12; }
  .bento-feature-card:nth-child(3) { top: 110px; z-index: 13; }
  .bento-feature-card:nth-child(4) { top: 130px; z-index: 14; }
  .bento-feature-card:nth-child(5) { top: 150px; z-index: 15; }
  .bento-feature-card:nth-child(6) { top: 170px; z-index: 16; }

  /* Metrics - 2 column grid, scaled numbers */
  .metrics-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .bento-card {
    padding: 28px 16px;
    position: relative;
    box-shadow: none;
    border-radius: 16px;
  }
  .bento-number {
    font-size: clamp(28px, 7vw, 40px);
  }
  .bento-label {
    font-size: 13px;
  }

  /* Break CTA */
  .break-cta-inner {
    padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 48px);
  }

  /* Strip CTA */
  .strip-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* About */
  .about-card { padding: 32px 24px; }

  /* News */
  .news-grid { grid-template-columns: 1fr; max-width: 480px; }
  .news-card-image { height: 200px; }

  /* Safe & Secure - keep badges in a row */
  .safe-secure-badges { flex-direction: row; justify-content: center; gap: 20px; }
  .trust-badge-circle { width: 56px; height: 56px; }
  .trust-badge-circle svg { width: 24px; height: 24px; }
  .trust-badge-label { font-size: 11px; }

  /* FAQ */
  .faq-inner { gap: 32px; }
  .faq-heading { font-size: clamp(28px, 5vw, 36px); }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Monitor grid */
  .monitor-grid { grid-template-columns: repeat(2, 1fr); }

  /* Modals */
  .article-modal {
    width: 95%;
    max-height: 90vh;
    border-radius: 16px;
  }
  .article-modal-body { padding: 28px 24px 32px; }
  .article-modal-header { height: 160px; }
}

@media (max-width: 480px) {
  .marquee-content { gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; }
  .dash-row { flex-direction: column; }
  .monitor-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .safe-secure-badges { flex-direction: row; justify-content: center; gap: 16px; }
  .trust-badge-circle { width: 52px; height: 52px; }
  .trust-badge-circle svg { width: 22px; height: 22px; }
  .trust-badge-label { font-size: 10px; }
  .about-card { padding: 24px 20px; }
  .bento-feature-card { padding: 24px 20px; }
  .problem-heading { font-size: clamp(28px, 6vw, 40px); }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 8rem 0 4rem;
}
.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}
.legal-page .section-sub {
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.legal-page h3 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  color: var(--text);
}
.legal-page p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 720px;
}
.legal-page ul {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  max-width: 720px;
}
.legal-page li {
  margin-bottom: .5rem;
}
.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}
