/* ============================================================
   PLENISH — styles.css
   Complete design system, all sections, responsive, animations
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --bg: #DAEAF8;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.7);
  --text-primary: #1a1615;
  --text-body: #453f3d;
  --text-muted: #757170;
  --border: #e4e2e2;
  --accent: #2D6CC0;
  --accent-hover: #245BA6;
  --accent-dark: #1A3D6E;
  --accent-light: rgba(45, 108, 192, 0.09);
  --blue-bg: #E8EEF6;
  --blue-border: rgba(45, 108, 192, 0.18);
  --offwhite: #E8F1FA;
  --shadow-warm: 0px 4px 50px rgba(45, 108, 192, 0.06);
  --brown: #614a44;

  /* New additions */
  --amber: #FBA919;
  --amber-hover: #E09A10;
  --amber-light: rgba(251, 169, 25, 0.10);
  --amber-glow: rgba(251, 169, 25, 0.06);
  --navy: #0F1D2F;
  --navy-surface: #162436;
  --cream: #E8F1FA;

  --nav-height: 80px;
  --radius-card: 24px;
  --radius-btn: 100px;
  --radius-input: 10px;
  --max-w: 1072px;

  --section-pad: 88px;
}

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

html {
  font-family: 'Open Runde', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text-primary);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(24px, 3.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

h4 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: var(--accent);
}

/* ── Navy Pill Badge ────────────────────────────────────────── */
.navy-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: 1px solid var(--blue-border);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Open Runde', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-btn);
  padding: 18px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

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

/* Primary — dark */
.btn-primary {
  background: var(--text-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: #2d2624;
}

/* Secondary — offwhite */
.btn-secondary {
  background: var(--offwhite);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: #ebe6e3;
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--offwhite);
  border-color: #ccc9c9;
}

/* Ghost on dark */
.btn-ghost-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* White on dark */
.btn-white {
  background: #ffffff;
  color: var(--text-primary);
}

.btn-white:hover {
  background: #f5f5f5;
}

/* Accent — amber, for key CTAs */
.btn-accent {
  background: var(--text-primary);
  color: #ffffff;
  font-weight: 600;
}

.btn-accent:hover {
  background: #2d2624;
}

/* ── Section Dark Utility ───────────────────────────────────── */
.section-dark {
  background: #DAEAF8;
  color: var(--text-primary);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-primary);
}

.section-dark p {
  color: var(--text-body);
}

.section-dark .eyebrow {
  color: var(--accent);
}

.section-dark .navy-badge {
  background: rgba(45, 108, 192, 0.1);
  color: var(--accent);
  border-color: rgba(45, 108, 192, 0.2);
}

.section-dark .challenge-card {
  background: #ffffff;
  border-color: rgba(45, 108, 192, 0.12);
}

.section-dark .challenge-card h3 {
  color: var(--text-primary);
}

.section-dark .challenge-card p {
  color: var(--text-muted);
}

.section-dark .challenge-card:hover {
  box-shadow: 0px 8px 32px rgba(45, 108, 192, 0.1);
}

.section-dark .section-subtitle {
  color: var(--text-muted);
}

.section-dark .stat-box {
  border-color: rgba(45, 108, 192, 0.15);
}

.section-dark .stat-box:hover {
  background: rgba(255, 255, 255, 0.5);
}

.section-dark .stat-value {
  color: var(--accent);
}

.section-dark .stat-label {
  color: var(--text-body);
}

.section-dark .stats-grid {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(45, 108, 192, 0.12);
}

.section-dark .section-intro h2 {
  color: var(--text-primary);
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(218, 234, 248, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 10px 10px 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  gap: 8px;
}

.nav-logo-wordmark {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo:hover .nav-logo-wordmark {
  text-decoration: none;
}

.nav-logo:hover {
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  padding: 0 8px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #453f3d;
  padding: 8px 12px;
  border-radius: 100px;
  transition: color 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

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

.nav-chevron {
  font-size: 12px;
  opacity: 0.5;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
  transform: rotate(90deg);
}

/* Dropdown panel */
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--shadow-warm);
  z-index: 200;
}

/* Bridge the gap between trigger and panel so hover doesn't break */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.15s ease;
  text-decoration: none;
  color: var(--text-primary);
}

.dropdown-item:hover {
  background: var(--offwhite);
  text-decoration: none;
}

.dropdown-item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 8px;
}

.dropdown-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dropdown-item > span > span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 14px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.nav-hamburger:hover {
  background: var(--offwhite);
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 21, 0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--surface);
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.15s ease;
  text-decoration: none;
}

.mobile-nav-links li a:hover {
  background: var(--offwhite);
  text-decoration: none;
}

.mobile-nav-links .nav-dropdown-panel {
  position: static;
  transform: none;
  box-shadow: none;
  border-radius: 12px;
  background: var(--offwhite);
  border-color: var(--border);
  margin-top: 4px;
  padding: 8px;
}

.mobile-nav-links .dropdown-item {
  padding: 10px 12px;
}

.mobile-nav-links .dropdown-item + .dropdown-item {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 14px;
}

.mobile-cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* ── Fade-up Animation ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.fade-up-delay-1 { transition-delay: 100ms; }
.fade-up-delay-2 { transition-delay: 200ms; }
.fade-up-delay-3 { transition-delay: 300ms; }
.fade-up-delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ── HERO ──────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* Connection grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-grid-svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  width: 100%;
  padding-top: 140px;
  padding-bottom: 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Ghost text behind headline */
.hero-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0.035;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Hero entrance animations */
.hero-eyebrow {
  animation: heroSlideUp 0.8s ease-out both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 800px;
  margin: 0 auto 24px;
  animation: heroSlideUp 0.8s ease-out 0.15s both;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.5;
  animation: heroSlideUp 0.8s ease-out 0.3s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: heroSlideUp 0.8s ease-out 0.45s both;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
}

.hero-mockup {
  animation: heroSlideUp 1s ease-out 0.6s both;
}

.hero-screenshot-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 108, 192, 0.12), 0 4px 20px rgba(0,0,0,0.06);
  transform: perspective(1400px) rotateY(-1deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-screenshot-wrap:hover {
  transform: perspective(1400px) rotateY(0deg) translateY(-4px);
  box-shadow: 0 28px 80px rgba(45, 108, 192, 0.16), 0 6px 24px rgba(0,0,0,0.08);
}

.hero-screenshot-wrap img {
  width: 100%;
  display: block;
}

.hero-demo-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-demo-link a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.hero-demo-link a:hover {
  text-decoration: underline;
}

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

/* Decorative blur circles */
.hero-blur {
  position: absolute;
  width: 396px;
  height: 396px;
  border-radius: 50%;
  background: rgba(0, 111, 255, 0.12);
  filter: blur(80px);
  opacity: 0.08;
  top: -60px;
  pointer-events: none;
  z-index: 1;
}

.hero-blur-left {
  left: -100px;
}

.hero-blur-right {
  right: -100px;
}

/* ── Dashboard Mockup ───────────────────────────────────────── */
.hero-mockup {
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
}

.mockup-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-warm), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mockup-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.mockup-dot-red { background: #ff5f56; }
.mockup-dot-amber { background: #ffbd2e; }
.mockup-dot-green { background: #27c93f; }

.mockup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-left: 4px;
}

.mockup-filter-btn {
  font-family: 'Open Runde', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.mockup-table thead tr {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.mockup-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.mockup-table td {
  padding: 12px 16px;
  color: var(--text-body);
  font-size: 13px;
  border-bottom: 1px solid rgba(228, 226, 226, 0.5);
  white-space: nowrap;
  font-weight: 500;
}

.mockup-table tbody tr:last-child td {
  border-bottom: none;
}

.mockup-table tbody tr:hover {
  background: rgba(45, 108, 192, 0.02);
}

.mockup-table .sku {
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

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

/* Status badges in mockup */
.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.status-active {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-sold {
  background: rgba(45, 108, 192, 0.1);
  color: var(--accent);
}

.status-pending {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.mockup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.mockup-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup-pagination button {
  width: 28px;
  height: 28px;
  font-family: 'Open Runde', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.mockup-pagination button.active {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════ */
/* ── CHALLENGES SECTION ────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.challenges-section {
  /* bg inherited from .section-dark */
}
.challenges-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 20px;
}

.challenge-card {
  background: #ffffff;
  border: 1px solid rgba(45, 108, 192, 0.12);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.challenge-card:nth-child(4),
.challenge-card:nth-child(5) {
  grid-column: span 1;
}

.challenge-card:hover {
  box-shadow: 0px 8px 32px rgba(45, 108, 192, 0.1);
  transform: translateY(-2px);
}

.challenge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.challenge-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.challenge-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════ */
/* ── PRODUCTS SECTION ──────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

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

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card-content {
  padding-bottom: 24px;
}

.product-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.product-link-muted {
  color: var(--text-muted) !important;
  font-size: 14px !important;
}

.product-screenshot {
  margin-top: auto;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}

.product-screenshot img {
  width: 100%;
  display: block;
}

.product-card .product-for {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
  margin-top: 0;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-outcome svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Screenshot inside product cards */
.product-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mockup img {
  border-radius: 12px;
  box-shadow: var(--shadow-warm);
  max-width: 100%;
  height: auto;
}

.mini-mockup {
  background: #1a1615;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mini-mockup-dark {
  background: #1a1615;
}

.mini-mockup-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.mini-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mini-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-row:last-of-type {
  border-bottom: none;
}

.mini-sku {
  font-family: monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  width: 44px;
}

.mini-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-status {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.mini-status.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.mini-status.blue {
  background: rgba(45, 108, 192, 0.2);
  color: #60a5fa;
}

.mini-status.amber {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

/* Mini chart bars */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 12px;
  padding-top: 4px;
}

.mini-bar {
  flex: 1;
  background: rgba(45, 108, 192, 0.35);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  transition: background 0.2s ease;
}

/* Network stats in mini mockup */
.mini-network-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.mini-stat-val {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.mini-stat-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 2px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════ */
/* ── WHY PLENISH ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.why-section {
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-warm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 50px rgba(97, 74, 68, 0.1);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
}

.why-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.why-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  padding-top: 8px;
  transition: color 0.15s ease;
  text-decoration: none;
}

.why-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════ */
/* ── RESULTS / STATS ───────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

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

.results-section .section-intro {
  margin-bottom: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(45, 108, 192, 0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.stat-box {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-right: 1px solid rgba(45, 108, 192, 0.15);
  transition: background 0.2s ease;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.5);
}

.stat-value {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
}

/* ── Results Cards (new) ────────────────────────────────────── */
.results-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.results-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.results-strip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}

.results-strip-item:first-child::before {
  background: var(--amber);
}

.results-strip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 108, 192, 0.08);
}

.results-strip-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.results-strip-number--amber {
  color: var(--amber);
}

.results-strip-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 180px;
}

/* ── Why Network + Hex Grid ─────────────────────────────────── */
.why-network-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(232,241,250,0.6) 100%);
  border: 1px solid rgba(45, 108, 192, 0.08);
}

.why-network-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

/* Network node pulse */
.net-node { opacity: 0.6; }

.net-pulse {
  animation: nodePulse 3s ease-in-out infinite;
}
.net-pulse-delay-1 {
  animation: nodePulse 3s ease-in-out 1s infinite;
}
.net-pulse-delay-2 {
  animation: nodePulse 3s ease-in-out 2s infinite;
}

@keyframes nodePulse {
  0%, 100% { r: 4; opacity: 0.4; }
  50% { r: 8; opacity: 0.8; }
}

/* Network line flow */
.net-line {
  opacity: 0.3;
  stroke-dasharray: 8 12;
}
.net-flow {
  animation: lineFlow 4s linear infinite;
}
.net-flow-delay-1 {
  animation: lineFlow 4s linear 1.3s infinite;
}
.net-flow-delay-2 {
  animation: lineFlow 4s linear 2.6s infinite;
}

@keyframes lineFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -40; }
}

/* Floating particles */
.net-particle {
  opacity: 0.5;
}

/* Hex grid */
.why-hex-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-hex-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(45, 108, 192, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-hex-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(45, 108, 192, 0.12);
  border-color: rgba(45, 108, 192, 0.25);
}

.hex-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bg), rgba(45,108,192,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ringPulse 4s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0) * 0.5s);
}

.hex-icon-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 108, 192, 0.15);
  animation: ringExpand 4s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0) * 0.5s);
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes ringExpand {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0; }
}

.why-hex-card h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.why-hex-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════ */
/* ── PRICING ───────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.pricing-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.pricing-card-featured {
  background: var(--surface);
  border-color: var(--amber);
  border-top: 3px solid var(--amber);
  box-shadow: 0 0 0 1px rgba(251, 169, 25, 0.2), var(--shadow-warm);
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}

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

.pricing-tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
}

.pricing-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
}

/* Enterprise card */
.enterprise-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  position: relative;
  z-index: 2;
}

.enterprise-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.enterprise-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.enterprise-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 520px;
}

/* Decorative concentric rings */
.pricing-decoration {
  position: absolute;
  bottom: -200px;
  right: -200px;
  pointer-events: none;
  z-index: 1;
}

.concentric-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45, 108, 192, 0.12);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.ring-1 {
  width: 300px;
  height: 300px;
  box-shadow: 0 0 0 1px rgba(45, 108, 192, 0.06);
}

.ring-2 {
  width: 500px;
  height: 500px;
  box-shadow: 0 0 30px rgba(45, 108, 192, 0.06);
}

.ring-3 {
  width: 700px;
  height: 700px;
}

.ring-4 {
  width: 900px;
  height: 900px;
  border-color: rgba(45, 108, 192, 0.05);
}

/* ═══════════════════════════════════════════════════════════ */
/* ── CTA SECTION ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.cta-section {
  background: var(--navy);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section .eyebrow {
  color: var(--amber);
}

.cta-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 32px;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cta-section .btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════ */
/* ── FOOTER ────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--bg);
  padding: 0 24px 40px;
  color: var(--text-primary);
  position: relative;
}

/* Footer connection grid background */
.footer-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.footer-grid-svg {
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.3) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.3) 70%, transparent 100%);
}

.site-footer > .container {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 48px 0;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer-logo-wordmark {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--text-primary);
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #2d2624;
  color: #ffffff;
  text-decoration: none;
}

.footer-col-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

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

.footer-col ul a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-cta-link {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-address {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════ */
/* ── TABLET — 810px to 1199px ──────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

@media (min-width: 810px) and (max-width: 1199px) {
  :root {
    --section-pad: 96px;
  }

  .hero-inner {
    padding-top: 160px;
  }

  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .challenges-grid .challenge-card:nth-child(5) {
    grid-column: span 2;
    max-width: 50%;
  }

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

  .product-card {
    padding: 40px 36px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid .why-card:nth-child(4),
  .why-grid .why-card:nth-child(5) {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box:nth-child(2) {
    border-right: none;
  }

  .stat-box:nth-child(1),
  .stat-box:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .enterprise-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .footer-brand {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .results-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-hex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ── MOBILE — < 810px ──────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

@media (max-width: 809px) {
  :root {
    --section-pad: 80px;
  }

  /* Nav */
  .site-header {
    padding: 12px 16px;
  }

  .nav-pill {
    padding: 8px 8px 8px 14px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  /* Hero */
  .hero-inner {
    padding-top: 128px;
    text-align: left;
  }

  .hero .eyebrow {
    display: block;
  }

  .hero h1 {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  /* Dashboard mockup scrolls */
  .hero-mockup {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mockup-card {
    min-width: 680px;
  }

  /* Challenges */
  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .challenges-grid .challenge-card:nth-child(5) {
    grid-column: span 1;
  }

  /* Products */
  .results-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .results-strip-item {
    padding: 28px 16px;
  }

  .results-strip-number {
    font-size: 36px;
  }

  .why-hex-grid {
    grid-template-columns: 1fr;
  }

  .why-network-wrap {
    padding: 40px 20px;
  }

  .why-hex-card {
    padding: 24px 20px;
  }

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

  .product-card {
    padding: 32px 24px;
    gap: 20px;
  }

  .product-mockup {
    justify-content: center;
  }

  .mini-mockup {
    max-width: 100%;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .stat-box:nth-child(2) {
    border-right: none;
  }

  .stat-box:nth-child(1),
  .stat-box:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .stat-box {
    padding: 32px 20px;
  }

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

  .pricing-card {
    padding: 32px 24px;
  }

  .enterprise-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .enterprise-card {
    padding: 28px 24px;
  }

  .pricing-decoration {
    display: none;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    text-align: center;
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Section intro */
  .section-intro {
    text-align: left;
    margin-bottom: 40px;
  }

  .section-intro h2 {
    text-align: left;
  }

  .section-intro .eyebrow {
    display: block;
  }

  /* Results */
  .results-section .section-intro {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ── LARGE DESKTOP ─────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

@media (min-width: 1200px) {
  .challenges-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Last two cards in challenges: span differently for rhythm */
  .challenges-grid .challenge-card:nth-child(4) {
    grid-column: 1;
  }

  .challenges-grid .challenge-card:nth-child(5) {
    grid-column: 2;
  }

  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ── WHY GRID — 6 CARDS (2 rows × 3) ──────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

.why-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 809px) {
  .why-grid-6 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ── INNER PAGE SHARED STYLES ──────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

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

.hero-product {
  min-height: auto;
  padding: 160px 0 80px;
}

.hero-product .container {
  text-align: center;
}

.hero-product h1 {
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

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

.hero-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.15s ease;
}

.hero-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

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

.section-header .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

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

.insight-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-warm);
}

.insight-block h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.insight-block p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 14px;
}

.insight-block p:last-child {
  margin-bottom: 0;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.step-badge {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.step-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.outcomes-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-warm);
  transition: transform 0.2s ease;
}

.outcome-card:hover {
  transform: translateY(-2px);
}

.outcome-icon {
  font-size: 28px;
  line-height: 1;
}

.outcome-card h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.outcome-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.features-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  box-shadow: var(--shadow-warm);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-check svg {
  width: 12px;
  height: 12px;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.x-icon {
  width: 18px;
  height: 18px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fit-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-warm);
}

.fit-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
}

.pricing-highlight {
  background: var(--blue-bg);
  border: 1px solid var(--blue-border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pricing-highlight-price {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 8px 0;
}

.pricing-highlight-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-highlight p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-cta {
  background: var(--bg);
  padding: 80px 24px;
  text-align: center;
}

.footer-cta h2 {
  color: var(--text-primary);
  max-width: 640px;
  margin: 0 auto 14px;
}

.footer-cta p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 28px;
}

.footer-cta .btn {
  display: inline-flex;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-warm);
}

.dashboard-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.dashboard-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.45;
}

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

.features-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-warm);
}

.features-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.45;
}

.platform-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.platform-detail-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.platform-detail-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.platform-detail-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.client-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-warm);
}

.client-quote p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.client-quote-source {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-top: 24px;
  margin-bottom: 0 !important;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 24px;
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 50%;
  border: 3px solid var(--bg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-day {
  grid-column: 2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  margin-top: -28px;
}

.timeline-item h4 {
  grid-column: 2;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.timeline-item p {
  grid-column: 2;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.walkthrough-tabs {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.tabs {
  display: flex;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.tab-btn {
  font-family: 'Open Runde', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}

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

.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--amber);
}

.walkthrough-panel {
  display: none;
  padding: 40px;
}

.walkthrough-panel.active {
  display: block;
}

.walkthrough-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.walkthrough-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.walkthrough-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.walkthrough-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-tabs-content {
  margin-top: 32px;
}

.tab-panel {
  display: none;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

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

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

.security-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-warm);
}

.security-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.security-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.security-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-warm);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Open Runde', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 28px;
  text-align: left;
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer.open {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card-price {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin: 16px 0 8px;
}

.pricing-card-price .period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-light);
  border: 1px solid rgba(251, 169, 25, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin: 12px 0 4px;
}

.pricing-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.pricing-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.45;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-example {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 16px 0 0;
}

.pricing-example h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-example-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.pricing-example-row span {
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-example-row strong {
  font-weight: 600;
  color: var(--text-primary);
}

.form-submit {
  width: 100%;
  text-align: center;
}

.story-body {
  max-width: 720px;
}

.story-body.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: none;
}

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

.story-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
  margin-bottom: 16px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-warm);
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.team-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

.markets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  margin-top: 20px;
}

.market-item {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-body);
}

.market-separator {
  color: var(--text-muted);
}

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-warm);
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-warm);
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Open Runde', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23757170' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

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

.form-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-note a {
  color: var(--navy);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.inner-section {
  padding: var(--section-pad) 0;
}

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

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

/* ═══════════════════════════════════════════════════════════ */
/* ── INNER PAGE RESPONSIVE ─────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */

@media (min-width: 810px) and (max-width: 1199px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .outcomes-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .features-two-col {
    grid-template-columns: 1fr;
  }
  .platform-details {
    grid-template-columns: 1fr;
  }
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-highlight {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 809px) {
  .hero-product {
    padding: 120px 0 60px;
  }
  .hero-product .container {
    text-align: left;
  }
  .hero-product h1 {
    margin-left: 0;
  }
  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .insight-block {
    padding: 28px 24px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid,
  .outcomes-grid.four-col {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .fit-col {
    padding: 24px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .features-two-col {
    grid-template-columns: 1fr;
  }
  .platform-details {
    grid-template-columns: 1fr;
  }
  .security-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .pricing-highlight {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .section-header {
    text-align: left;
    margin-bottom: 32px;
  }
  .walkthrough-panel {
    padding: 24px;
  }
  .client-quote {
    padding: 28px 24px;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-answer-inner {
    padding: 0 20px 16px;
  }
  .form-card {
    padding: 24px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .footer-cta {
    padding: 60px 24px;
  }
  .pricing-card-price {
    font-size: 40px;
  }
  .tab-btn {
    padding: 12px 16px;
  }
}

/* ── Section Headings — Display Font ──────────────────────── */
.section h2,
.section-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── Scroll Progress Bar ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ── Grain Overlay ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Animated Link Underlines ──────────────────────────────── */
.footer-col a,
.product-link,
.hero-demo-link a {
  text-decoration: none;
  position: relative;
}

.footer-col a::after,
.product-link::after,
.hero-demo-link a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-col a:hover::after,
.product-link:hover::after,
.hero-demo-link a:hover::after {
  width: 100%;
}

/* ── Product Switcher (How It Works page) ────────────────── */
.product-switcher {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--bg-card, #f5f3f0);
  border-radius: 100px;
  padding: 4px;
  max-width: 400px;
  margin: 0 auto;
}
.product-tab {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 100px;
  background: transparent;
  font-family: 'Open Runde', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted, #7a756e);
  cursor: pointer;
  transition: all 0.25s ease;
}
.product-tab.active {
  background: var(--navy, #1a1615);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.product-tab:hover:not(.active) {
  color: var(--text, #1a1615);
}
.product-section {
  animation: fadeSection 0.3s ease;
}
@keyframes fadeSection {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
