/* ============================================================
   OPSSYNC — Premium Landing Page Stylesheet (Bento Grid Edition)
   Linear.app-inspired · Dark mode · B2B SaaS
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-base:        #09090b;
  --bg-surface:     #0f0f12;
  --bg-elevated:    #16161a;
  --bg-subtle:      #1c1c22;
  --bg-overlay:     rgba(15,15,18,0.85);

  /* Accent — Indigo */
  --accent:         #6366f1;
  --accent-soft:    rgba(99,102,241,0.12);
  --accent-hover:   #818cf8;
  --accent-glow:    rgba(99,102,241,0.08);

  /* Semantic colors */
  --green:          #22c55e;
  --green-soft:     rgba(34,197,94,0.15);
  --amber:          #eab308;
  --amber-soft:     rgba(234,179,8,0.15);
  --red:            #ef4444;
  --red-soft:       rgba(239,68,68,0.15);

  /* Text colors */
  --text-primary:   #fafafa;
  --text-secondary: #a1a1aa;
  --text-tertiary:  #52525b;
  --text-accent:    #a5b4fc;

  /* Borders */
  --border:         rgba(255,255,255,0.06);
  --border-hover:   rgba(255,255,255,0.12);
  --border-accent:  rgba(99,102,241,0.25);

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;

  /* Easing and transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition:    0.2s ease;
  --transition-slow: 0.4s var(--ease-out-expo);

  /* Mouse position */
  --mouse-x: 50%;
  --mouse-y: 50%;
}

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

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

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

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--text-tertiary); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.heading-lg {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header--left .eyebrow {
  justify-content: flex-start;
}

.editorial-italic {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: none;
}

.rotating-wrap {
  display: inline-block;
  position: relative;
  text-align: left;
}

.rotating-text {
  display: inline-block;
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}

/* Background SVG Noise Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1; /* Low z-index fixed */
  opacity: 0.015;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Framing Margin Lines */
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: calc(50% - 600px);
  width: 1px;
  background: var(--border);
  z-index: 0;
  pointer-events: none;
}

/* Bento Grid Foundation */
.bento-zone {
  display: grid;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out-expo), 
              transform 0.4s var(--ease-out-expo), 
              box-shadow 0.4s var(--ease-out-expo) !important;
  box-sizing: border-box;
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Cursor-tracking glow effect */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), rgba(99, 102, 241, 0.05), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card--large {
  padding: 40px;
}

.bento-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

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

.bento-mockup {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-base);
  border: 1px solid var(--border);
  padding: 16px;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.2s var(--ease-out-expo);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s var(--ease-out-expo);
  border-bottom: 1px solid transparent;
  background: transparent;
}

#navbar.scrolled {
  background: var(--bg-overlay);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: 4px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: all 0.2s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo);
  text-align: left;
}

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

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-primary);
}

.mobile-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.03) 0%, transparent 60%);
}

.hero-layout {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: left;
}

.hero-content {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-accent);
  margin-bottom: 24px;
  align-self: flex-start;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hover);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.1); }
}

.hero-heading {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 500;
}

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

.trust-check {
  color: var(--green);
}

.hero-visual {
  grid-column: span 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 !important;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 20%;
  left: 40%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* ============================================================
   SANDBOX MOCKUP (HERO INTERACTION)
   ============================================================ */
.dashboard-mock {
  width: 100%;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

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

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

.mock-dots span:nth-child(1) { background: #ff5f56; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:nth-child(3) { background: #27c93f; }

.mock-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}

.mock-topbar-actions {
  display: flex;
  gap: 8px;
}

.mock-action-btn {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: all 0.2s var(--ease-out-expo);
}

.mock-action-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--border-hover);
}

.mock-action-btn.mock-trigger-btn {
  color: var(--red);
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.08);
}

.mock-action-btn.mock-trigger-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--red);
}

.mock-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: live-pulse 2s ease infinite;
}

@keyframes live-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50%      { transform: scale(1.1); opacity: 1; }
}

.mock-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mock-stat {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.mock-stat-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.mock-stat-value {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mock-filters {
  display: flex;
  gap: 8px;
  margin: 16px 0 12px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.mock-filter-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  padding: 4px 10px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease-out-expo);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  user-select: none;
}

.mock-filter-tab:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.mock-filter-tab.active {
  color: var(--text-primary);
  background: var(--bg-subtle);
  border-color: var(--border);
}

.mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 190px;
  text-align: left;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out-expo);
  max-height: 80px;
  overflow: hidden;
}

.mock-row.hidden-row {
  opacity: 0 !important;
  transform: scale(0.97) translateY(-4px) !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-width: 0 !important;
  pointer-events: none !important;
}

.mock-row-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.mock-row-info {
  flex-grow: 1;
  min-width: 0;
}

.mock-row-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-row-sub {
  font-size: 10px;
  color: var(--text-tertiary);
}

.mock-timer {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-right: 16px;
}

.mock-resolve-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.mock-resolve-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s var(--ease-out-expo);
}

.mock-resolve-btn:hover {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green);
}

.mock-compliance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-secondary);
}

.compliance-graph {
  width: 90px;
  height: 24px;
}

.compliance-track-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.compliance-track {
  width: 80px;
  height: 4px;
  background: var(--bg-subtle);
  border-radius: 99px;
  overflow: hidden;
}

.compliance-fill {
  height: 100%;
  width: 94%;
  background: var(--green);
  border-radius: 99px;
  transition: width 0.8s var(--ease-out-expo);
}

.compliance-pct {
  font-weight: 600;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

/* Modal Form inside sandbox */
.mock-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.mock-modal-overlay.open {
  display: flex;
}

.mock-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mock-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mock-modal-header h5 {
  font-size: 14px;
  color: var(--text-primary);
}

#mockModalClose {
  font-size: 20px;
  color: var(--text-tertiary);
  cursor: pointer;
}

#mockModalClose:hover {
  color: var(--text-primary);
}

.mock-form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.mock-form-group label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.mock-form-group input, .mock-form-group select {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  width: 100%;
  outline: none;
}

.mock-form-group input:focus, .mock-form-group select:focus {
  border-color: var(--border-accent);
}

/* Slack notification alert */
.mock-slack-alert {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: #1a1d21;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 101;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out-expo);
  text-align: left;
}

.mock-slack-alert.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.slack-alert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #abacad;
  margin-bottom: 6px;
}

.slack-logo-icon {
  width: 16px;
  height: 16px;
  background: #e01e5a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slack-app-name {
  font-weight: 700;
  color: #fff;
  margin-left: 6px;
  flex-grow: 1;
}

#slackAlertClose {
  font-size: 14px;
  color: #abacad;
  cursor: pointer;
}

.slack-alert-body {
  font-size: 12px;
  color: #d1d2d3;
  line-height: 1.4;
}

@keyframes flash-red {
  0%, 100% { background: var(--bg-surface); }
  50%      { background: rgba(239, 68, 68, 0.15); border-color: var(--red); }
}

.mock-row.breached-flash {
  animation: flash-red 1s ease infinite;
}

/* ============================================================
   SECTIONS & LAYOUTS
   ============================================================ */
.section {
  padding: 120px 0;
}

.section-sm {
  padding: 60px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.container .bento-zone {
  max-width: none;
  margin: 0;
  padding: 0;
}

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

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* ============================================================
   TRUST LOGOS
   ============================================================ */
.bento-zone--logos {
  max-width: 1200px;
}

.logos-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.logos-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logos-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logos-strip span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.3;
  transition: opacity 0.2s;
}

.logos-card:hover .logos-strip span {
  opacity: 0.6;
}

/* ============================================================
   PAIN SECTION (BENTO GRID)
   ============================================================ */
.pain-grid {
  grid-template-columns: repeat(12, 1fr);
}

.pain-grid #bentoSlackCard {
  grid-column: span 8;
}

.pain-grid #bentoSheetCard {
  grid-column: span 4;
}

.pain-grid #bentoJiraCard {
  grid-column: span 4;
}

.pain-grid #bentoWarningCard {
  grid-column: span 8;
}

/* Slack Card Mockup details */
.slack-mockup {
  background: #1a1d21;
  border-color: rgba(255, 255, 255, 0.05);
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.slack-thread-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slack-msg {
  font-size: 12px;
  line-height: 1.4;
}

.slack-user {
  font-weight: 700;
  color: #fff;
  margin-right: 6px;
}

.slack-time {
  font-size: 10px;
  color: #868688;
}

.slack-text {
  color: #d1d2d3;
}

.slack-msg.reply {
  border-left: 2px solid #5a5d61;
  padding-left: 8px;
  margin-left: 4px;
}

.slack-typing-indicator {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #222529;
  border-radius: 8px;
  width: fit-content;
}

.slack-typing-indicator.active {
  display: flex;
}

.slack-typing-indicator span {
  width: 5px;
  height: 5px;
  background: #abacad;
  border-radius: 50%;
  animation: slack-bounce 1s infinite ease-in-out;
}

.slack-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.slack-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes slack-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.slack-msg.ignored {
  display: none;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease-out-expo);
  background: rgba(224, 30, 90, 0.08);
  border: 1px solid rgba(224, 30, 90, 0.2);
  padding: 8px;
  border-radius: 6px;
}

.slack-msg.ignored.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.slack-status {
  color: #e01e5a;
  font-weight: 600;
  font-size: 10px;
}

.opssync-resolved-row {
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(34, 197, 94, 0.04);
  text-align: left;
}

.resolved-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 8px;
}

.resolved-logo-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resolved-badge {
  color: var(--text-primary);
  margin-right: auto;
}

.resolved-live {
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.resolved-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resolved-row-info {
  display: flex;
  flex-direction: column;
}

.resolved-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.resolved-sub {
  font-size: 10px;
  color: var(--text-tertiary);
}

.resolved-timer-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.resolved-timer {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

/* Sheet Mockup */
.sheet-mockup {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  padding: 1px;
  border-radius: 6px;
  text-align: left;
}

.sheet-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  padding: 8px 12px;
  background: var(--bg-surface);
  font-size: 12px;
  align-items: center;
}

.sheet-row.header {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--text-tertiary);
}

.status-cell {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.status-cell.on-track {
  background: var(--green-soft);
  color: var(--green);
}

.status-cell.overdue {
  background: var(--red-soft);
  color: var(--red);
}

.sheet-row.clickable-row {
  cursor: pointer;
  position: relative;
}

.sheet-row.clickable-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.sheet-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-elevated);
  border: 1px solid var(--amber);
  color: var(--amber);
  border-radius: 6px;
  padding: 12px;
  font-size: 11px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: auto; /* Clickable button inside */
  transition: all 0.3s var(--ease-out-expo);
  width: 220px;
  display: none;
}

.sheet-tooltip.visible {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sheet-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--amber);
}

/* Jira Mockup */
.jira-mockup {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.jira-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.jira-step {
  width: 100%;
  max-width: 160px;
  padding: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.jira-step.blocked {
  border-color: var(--red);
  color: var(--red);
}

.jira-step.blocked.blinking {
  animation: block-blink 1.5s infinite ease-in-out;
}

@keyframes block-blink {
  0%, 100% { border-color: var(--red); background: var(--red-soft); }
  50%      { border-color: var(--border); background: rgba(0,0,0,0.2); }
}

.jira-arrow-svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.jira-arrow-svg path.animating {
  stroke: var(--accent);
  animation: dash-flow 1s linear infinite;
}

.jira-label {
  font-size: 10px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* Warning Mockup */
.warning-mockup {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warning-alert {
  background: var(--red-soft);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.05);
  transition: all 0.3s var(--ease-out-expo);
}

.warning-alert.shake {
  animation: alert-shake 0.4s ease-in-out;
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.25);
}

@keyframes alert-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.warning-alert-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.warning-msg {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.warning-success {
  background: var(--green-soft);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.05);
}

.warning-success-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

/* ============================================================
   FEATURES SECTION (ASYMMETRIC GRID)
   ============================================================ */
.features-bento {
  grid-template-columns: repeat(12, 1fr);
}

.features-bento .bento-card--feature-hero {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.features-bento .bento-card:nth-child(2) {
  grid-column: span 5;
  text-align: left;
}

.features-bento .bento-card:nth-child(3) {
  grid-column: span 5;
  text-align: left;
}

.features-bento .bento-card:nth-child(4) {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.features-bento .bento-card:nth-child(5) {
  grid-column: span 6;
  text-align: left;
}

.features-bento .bento-card:nth-child(6) {
  grid-column: span 6;
  text-align: left;
}

.feature-mini-viz {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.feature-viz-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
}

/* ============================================================
   USE CASES SECTION TABBED BENTO
   ============================================================ */
.usecases-card {
  padding: 40px;
}

.usecases-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.usecase-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--text-tertiary);
  transition: all 0.2s;
}

.usecase-tab:hover, .usecase-tab.active {
  color: var(--text-primary);
  background: var(--bg-subtle);
}

.usecase-tab.active {
  color: var(--text-primary);
  box-shadow: inset 0 -2px 0 var(--accent);
  border-radius: 6px 6px 0 0;
}

.usecase-panels {
  position: relative;
}

.usecase-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

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

.usecase-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.usecase-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.usecase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.usecase-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mini-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
}

.mini-mock-dept {
  color: var(--text-primary);
}

.pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.pill-green { background: var(--green-soft); color: var(--green); }
.pill-amber { background: var(--amber-soft); color: var(--amber); }
.pill-blue  { background: var(--accent-soft); color: var(--text-accent); }

.mini-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mini-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px;
}

.mini-mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  color: var(--text-tertiary);
}

.mini-bar-track {
  flex: 1;
  height: 4px;
  background: var(--bg-subtle);
  border-radius: 99px;
  overflow: hidden;
}

.mini-bar-fill {
  height: 100%;
  border-radius: 99px;
}

/* ============================================================
   SOCIAL PROOF (STATS & TESTIMONIALS BENTO)
   ============================================================ */
.social-proof-bento {
  grid-template-columns: repeat(12, 1fr);
}

.social-proof-bento .stat-card {
  grid-column: span 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.social-proof-bento .testimonial-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.quote-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ============================================================
   PRICING TOGGLE
   ============================================================ */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 40px auto;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  width: fit-content;
}

.toggle-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-out-expo);
  cursor: pointer;
  user-select: none;
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-toggle-btn {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s var(--ease-out-expo), border-color 0.2s var(--ease-out-expo);
  outline: none;
}

.pricing-toggle-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pricing-toggle-btn.active {
  background: var(--accent-soft);
  border-color: var(--border-accent);
}

.toggle-switch {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-secondary);
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s var(--ease-out-expo);
}

.pricing-toggle-btn.active .toggle-switch {
  transform: translateX(20px);
  background: var(--accent);
}

.discount-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================================
   PRICING BENTO GRID
   ============================================================ */
.pricing-bento {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}

.pricing-bento .founding-banner {
  grid-column: span 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--amber-soft);
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 24px 32px;
}

.founding-content {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.founding-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.founding-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.founding-spots {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
}

.pricing-bento .pricing-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 32px;
  text-align: left;
}

.pricing-bento .pricing-card--featured {
  border-color: var(--border-accent);
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.1);
  transform: translateY(-8px) scale(1.02);
}

.pricing-bento .pricing-card--featured:hover {
  transform: translateY(-12px) scale(1.03);
}

.pricing-plan-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-amount .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-amount .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  display: inline-block;
  transition: opacity 0.2s var(--ease-out-expo), transform 0.2s var(--ease-out-expo);
}

.pricing-amount .period {
  font-size: 14px;
  color: var(--text-tertiary);
  display: inline-block;
  transition: opacity 0.2s var(--ease-out-expo), transform 0.2s var(--ease-out-expo);
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  min-height: 40px;
}

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

.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pf svg {
  flex-shrink: 0;
}

.pf-disabled {
  color: var(--text-tertiary);
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   COMPARISON TABLE BENTO
   ============================================================ */
.comparison-wrap {
  padding: 0;
  overflow-x: auto;
  border-radius: var(--radius-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.15);
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table .col-highlight {
  background: rgba(99, 102, 241, 0.03);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.comparison-table tr:hover td.col-highlight {
  background: rgba(99, 102, 241, 0.05);
}

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

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-content {
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 80%), var(--bg-surface);
  border-color: var(--border-accent);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.05);
}

.cta-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
}

.cta-input {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-primary);
  padding: 14px 24px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus {
  border-color: var(--border-accent);
}

.cta-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out-expo);
  margin-bottom: 20px;
}

.success-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.success-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.cta-urgency {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cta-fine {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: rgba(0, 0, 0, 0.2);
}


.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  text-align: left;
}

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

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ============================================================
   ACCESSIBILITY & TRANSITIONS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent-hover) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px var(--accent-soft) !important;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 24px;
  outline: none !important;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4) !important;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

.comparison-mobile-tip {
  display: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  text-align: right;
}

@media (max-width: 768px) {
  .comparison-mobile-tip {
    display: block;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1280px) {
  body::after {
    left: 24px;
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 32px;
  }

  .hero-content {
    grid-column: span 12;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow {
    align-self: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    grid-column: span 12;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Pain grid intermediate layout */
  .pain-grid #bentoSlackCard {
    grid-column: span 12;
  }
  .pain-grid #bentoSheetCard {
    grid-column: span 6;
  }
  .pain-grid #bentoJiraCard {
    grid-column: span 6;
  }
  .pain-grid #bentoWarningCard {
    grid-column: span 12;
  }

  /* Pricing grid intermediate layout */
  .pricing-bento .pricing-card:nth-child(2) { /* Free */
    grid-column: span 6;
  }
  .pricing-bento .pricing-card:nth-child(3) { /* Growth */
    grid-column: span 6;
  }
  .pricing-bento .pricing-card:nth-child(4) { /* Business */
    grid-column: span 12;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .nav-link {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pain-grid #bentoSlackCard,
  .pain-grid #bentoSheetCard,
  .pain-grid #bentoJiraCard,
  .pain-grid #bentoWarningCard {
    grid-column: span 12;
  }

  .features-bento .bento-card--feature-hero,
  .features-bento .bento-card:nth-child(2),
  .features-bento .bento-card:nth-child(3),
  .features-bento .bento-card:nth-child(4),
  .features-bento .bento-card:nth-child(5),
  .features-bento .bento-card:nth-child(6) {
    grid-column: span 12;
  }

  .usecase-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .usecase-mock {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .social-proof-bento .stat-card {
    grid-column: span 6;
  }

  .social-proof-bento .testimonial-card {
    grid-column: span 12;
  }

  .pricing-bento .pricing-card {
    grid-column: span 12;
  }

  .pricing-bento .pricing-card--featured {
    transform: none;
  }

  .pricing-bento .pricing-card--featured:hover {
    transform: translateY(-4px) scale(1.015);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .bento-zone {
    padding: 0 16px;
    gap: 12px;
  }

  .bento-card {
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .bento-card--large {
    padding: 24px;
  }

  .logos-card {
    padding: 20px;
    justify-content: center;
    text-align: center;
  }

  .logos-strip {
    justify-content: center;
    gap: 24px;
  }

  .social-proof-bento .stat-card {
    grid-column: span 12;
  }

  .founding-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-input {
    border-radius: 999px;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Simplified Mobile Dashboard Mockup */
  .mock-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mock-live {
    display: none;
  }
}
