/* ═══════════════════════════════════════════════════ */
/*  GROUNDWORK OPS — groundworkops.io                 */
/*  Production CSS — All Pages                        */
/* ═══════════════════════════════════════════════════ */

:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --surface-3: #242424;
  --border: #282828;
  --border-light: #333;
  --text-muted: #666;
  --text-secondary: #999;
  --text-tertiary: #bbb;
  --white: #F5F4F0;
  --accent: #C8F04A;
  --accent-dim: rgba(200, 240, 74, 0.08);
  --accent-border: rgba(200, 240, 74, 0.25);
  --accent-glow: rgba(200, 240, 74, 0.05);
  --danger: #f04a4a;
  --warning: #f0a04a;
  --success: #4af06a;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.syne { font-family: 'Syne', sans-serif; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  text-align: center;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  max-width: 840px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
}
.section-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 1020px;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── LAYOUT ─── */
.container { max-width: 1560px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 48px; }
.section--bordered { border-bottom: 1px solid var(--border); }
.section--surface { background: var(--surface); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img, .logo-svg {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-trigger::after { content: '▾'; font-size: 10px; opacity: 0.5; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  line-height: 1.5;
}
.nav-dropdown-menu a strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.nav-dropdown-menu a:hover { background: var(--surface-2); }

.nav-cta {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:hover { color: var(--white); }
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-primary--sm { padding: 10px 22px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--white); border-color: #444; }
.btn-ghost--sm { padding: 10px 22px; font-size: 14px; }
.btn-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-link:hover { opacity: 0.8; }

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,240,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 240, 0.2);
}
.hero-sub {
  margin-top: 32px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-social-proof {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.hero-social-proof-quote {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 420px;
  line-height: 1.5;
}
.hero-social-proof-quote::before { content: '\201C'; color: var(--accent); font-style: normal; font-weight: 800; margin-right: 2px; }
.hero-social-proof-quote::after  { content: '\201D'; color: var(--accent); font-style: normal; font-weight: 800; margin-left: 2px; }
.hero-social-proof-attr {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-social-proof-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  justify-content: center;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}

/* ─── MARQUEE ─── */
.marquee-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-dot { color: var(--accent); font-size: 18px; }

/* ─── CARDS ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, transform 0.2s;
}
.card:hover { border-color: var(--border-light); }
.card--hover:hover { transform: translateY(-4px); }
.card--accent { border-color: var(--accent-border); background: linear-gradient(180deg, var(--accent-dim) 0%, var(--surface) 40%); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--surface-2); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 24px;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.service-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.pricing-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(200,240,74,0.04) 0%, var(--off-black) 40%);
}
.pricing-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}
.pricing-tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.pricing-amount .currency { font-size: 24px; vertical-align: super; color: var(--text-secondary); }
.pricing-amount .period { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-amount-note { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }
.pricing-features { margin-bottom: 40px; flex-grow: 1; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(40,40,40,0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.pricing-features li.disabled::before { content: '—'; color: var(--text-muted); }
.pricing-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
  border: none;
  text-decoration: none;
  display: block;
}
.pricing-cta--primary { background: var(--accent); color: var(--black); }
.pricing-cta--ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.pricing-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Proof/Testimonials */
.proof-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.proof-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.proof-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
}
.proof-author { font-size: 14px; font-weight: 500; }
.proof-role { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 300; }

/* Process steps */
.process-steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-width: 32px;
  padding-top: 4px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,240,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 auto 24px;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HEADER (for inner pages) ─── */
.page-header {
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,240,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  max-width: 1100px;
  margin: 0 auto 20px;
}
.page-header h1 .accent { color: var(--accent); }
.page-header-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 740px;
  line-height: 1.7;
  font-weight: 300;
  margin: 0 auto;
}

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--accent-border); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-top: 16px;
}
.form-message--success { background: rgba(74,240,106,0.1); border: 1px solid rgba(74,240,106,0.2); color: var(--success); }
.form-message--error { background: rgba(240,74,74,0.1); border: 1px solid rgba(240,74,74,0.2); color: var(--danger); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.blog-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 28px; }
.blog-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--white);
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--accent); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
}
.blog-card-meta { font-size: 13px; color: var(--text-muted); }

/* ─── CASE STUDIES ─── */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.case-card:hover { border-color: var(--border-light); }
.case-card-meta {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.case-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.case-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case-stat {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.case-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.case-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 300; }

/* ─── FOOTER ─── */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-brand img, .footer-logo-svg {
  height: 60px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ─── WAITLIST ─── */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.waitlist-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.waitlist-form input:focus { border-color: var(--accent-border); }
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form button {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.waitlist-form button:hover { opacity: 0.88; }

/* ─── LEGAL PAGES ─── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  font-weight: 300;
  list-style: disc;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10,10,10,0.8));
}
.about-bio h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.about-bio p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about-value {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.about-value-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.about-value-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── SERVICE DETAIL PAGES ─── */
.service-detail-hero {
  padding: 160px 48px 80px;
  display: block;
  max-width: 960px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-detail-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,240,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.service-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  background: var(--accent-dim);
}
/* Service detail centered single-col layout */
.service-detail-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}
.service-detail-sidebar-col {
  position: static;
  margin-bottom: 0;
}
.service-detail-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.service-detail-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}
.service-detail-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.service-detail-price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.service-detail-price-note {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.service-detail-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.service-detail-sidebar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-detail-sidebar li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.service-detail-sidebar li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
.service-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.service-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  text-align: center;
}
.service-section h2 em { font-style: italic; font-weight: 400; color: var(--text-secondary); }
.service-section--last { border-bottom: none; }
.service-section .section-label { margin-bottom: 16px; }

/* Deliverables grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}
.deliverable-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process steps inside service sections */
.service-section .process-steps {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Fit grid (ideal for / not the right fit) */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.fit-col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}
.fit-col--no h3 { color: var(--text-secondary); }
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}
.fit-col--yes .fit-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.fit-col--no .fit-item {
  color: var(--text-muted);
}
.fit-col--no .fit-item::before {
  content: '—';
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.anim-up { animation: fadeUp 0.6s ease both; }
.anim-up-1 { animation-delay: 0.1s; }
.anim-up-2 { animation-delay: 0.2s; }
.anim-up-3 { animation-delay: 0.3s; }
.anim-up-4 { animation-delay: 0.4s; }
.anim-up-5 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 3 breakpoints: 1024 (tablet), 768 (mobile), 480 (small)
   ══════════════════════════════════════════════════════════════ */

/* ─── TABLET (≤1024px) ─── */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  nav { padding: 20px 36px; }
  .section { padding: 100px 36px; }
  .cta-section { padding: 100px 36px; }
  .page-header { padding: 140px 36px 64px; }
  .footer { padding: 64px 36px 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .service-detail-hero { padding: 140px 36px 64px; }
  .service-detail-body { padding: 0 36px; }
  /* Inline grids → single col */
  .m-grid-process { grid-template-columns: 1fr !important; gap: 40px !important; }
  .m-grid-contact { grid-template-columns: 1fr !important; gap: 40px !important; }
  .m-grid-ideal { grid-template-columns: 1fr !important; gap: 28px !important; }
  .m-grid-form { grid-template-columns: 1fr !important; }
}

/* ─── MOBILE (≤768px) ─── */
@media (max-width: 768px) {

  /* ── Global box-sizing guard ── */
  *, *::before, *::after { box-sizing: border-box; }
  html { overflow-x: hidden; }
  body { overflow-x: hidden; min-width: 0; }

  /* ── NAV ── */
  nav { padding: 14px 16px; gap: 8px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .logo svg, .logo .logo-svg { width: 180px; height: auto; }
  .nav-actions { gap: 8px; }
  .nav-actions .nav-cta { padding: 8px 14px; font-size: 12px; white-space: nowrap; }
  .nav-actions .nav-signin-btn { padding: 8px 14px; font-size: 12px; }

  /* ── MOBILE MENU ── */
  .nav-mobile-menu { padding: 72px 24px 32px; }
  .nav-mobile-menu a { font-size: 16px; padding: 14px 0; }
  .nav-mobile-close { top: 18px; right: 20px; font-size: 22px; }

  /* ── HERO ── */
  .hero { padding: 96px 20px 56px; }
  .hero-headline,
  .hero h1 { font-size: 32px !important; letter-spacing: -1.5px !important; line-height: 1.1 !important; }
  .hero-sub,
  .hero p { font-size: 15px !important; line-height: 1.6; margin-top: 16px; }
  .hero-actions,
  .hero .hero-actions { flex-direction: column; gap: 12px; margin-top: 28px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .hero .btn-primary,
  .hero .btn-ghost { width: 100%; text-align: center; justify-content: center; display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 16px; margin-top: 40px; padding-top: 28px; justify-content: center; }
  .hero-social-proof { flex-direction: column; gap: 8px; text-align: center; }
  .hero-social-proof-divider { display: none; }
  .hero-social-proof-quote { max-width: 100%; font-size: 12px; }
  .hero-stats .stat-item { min-width: calc(50% - 10px); text-align: center; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 12px; }

  /* ── SECTIONS ── */
  .section { padding: 56px 20px; }
  .section--bordered { padding: 56px 20px; }
  .page-header { padding: 96px 20px 44px; }
  .service-detail-hero { padding: 96px 20px 44px; max-width: 100%; }
  .service-detail-body { padding: 0 20px; }
  .page-header h1 { font-size: 28px !important; letter-spacing: -1.2px !important; line-height: 1.15 !important; }
  .page-header-sub { font-size: 15px; }
  .section-headline,
  .section h2 { font-size: 24px !important; letter-spacing: -0.8px !important; line-height: 1.2 !important; }
  .section-label { font-size: 11px; letter-spacing: 1.5px; }
  .section-desc { font-size: 14px; }
  .eyebrow { font-size: 10px; padding: 5px 12px; letter-spacing: 0.5px; }

  /* ── ALL GRIDS → single column ── */
  .services-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .blog-grid { grid-template-columns: 1fr !important; }

  /* Inline-styled grids (need !important to override inline styles) */
  .m-grid-process { grid-template-columns: 1fr !important; gap: 28px !important; }
  .m-grid-contact { grid-template-columns: 1fr !important; gap: 28px !important; }
  .m-grid-ideal { grid-template-columns: 1fr !important; gap: 20px !important; }
  .m-grid-form { grid-template-columns: 1fr !important; }
  .m-about-photo { position: static !important; top: auto !important; }

  /* ── SERVICE CARDS ── */
  .service-card { padding: 24px 20px; }
  .service-title { font-size: 18px; }
  .service-desc { font-size: 14px; }

  /* ── SERVICE DETAIL PAGES ── */
  .service-detail-title { font-size: 28px !important; }
  .service-detail-desc { font-size: 15px; }
  .service-section { padding: 44px 0; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── ABOUT PAGE ── */
  .about-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .about-bio h2 { font-size: 22px; }
  .about-bio p { font-size: 14px !important; }
  .about-values { grid-template-columns: 1fr; gap: 12px; }
  .about-value { padding: 18px; }
  .about-value-title { font-size: 14px; }

  /* ── CASE STUDIES / RESOURCES ── */
  .case-card { grid-template-columns: 1fr; padding: 24px 18px; }
  .case-card-title { font-size: 20px; }
  .case-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .case-stat { padding: 14px 10px; }
  .case-stat-value { font-size: 20px; }

  /* ── BLOG ── */
  .blog-card-img { height: 160px; }
  .blog-card-content { padding: 18px; }

  /* ── CONTACT / FORMS ── */
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 12px; }
  .form-input,
  .form-select,
  .form-textarea { font-size: 16px !important; padding: 12px 14px; } /* 16px prevents iOS zoom */

  /* ── BUTTONS ── */
  .btn-primary { padding: 14px 20px; font-size: 14px; }
  .btn-ghost { padding: 14px 20px; font-size: 14px; }
  .btn-primary--sm { padding: 10px 16px; font-size: 13px; }
  .btn-ghost--sm { padding: 10px 16px; font-size: 13px; }

  /* ── CTA SECTIONS ── */
  .cta-section { padding: 56px 20px; }
  .cta-headline { font-size: 26px !important; letter-spacing: -1px !important; }
  .cta-sub { font-size: 14px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; display: flex; }

  /* ── FOOTER ── */
  .footer { padding: 44px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-brand img, .footer-logo-svg { height: 36px !important; width: auto !important; }
  .footer-tagline { font-size: 13px; }
  .waitlist-form { flex-direction: column; gap: 10px; }
  .waitlist-form input,
  .waitlist-form button { width: 100%; font-size: 16px !important; }

  /* ── MARQUEE ── */
  .marquee-item { padding: 0 20px; font-size: 11px; }

  /* ── PROOF CARDS ── */
  .proof-card { padding: 20px 16px; }
  .proof-quote { font-size: 14px; }
  .proof-author { font-size: 12px; }

  /* ── PROCESS STEPS ── */
  .step { gap: 14px; padding: 18px 0; }
  .step-number { width: 32px; height: 32px; font-size: 13px; flex-shrink: 0; }
  .step-title { font-size: 15px; }
  .step-desc { font-size: 13px; }

  /* ── PRICING (scoped styles have own media queries at 900px already) ── */
  .pricing-toggle { flex-wrap: wrap; }

  /* ── LEGAL PAGES ── */
  .legal-content h2 { font-size: 17px; margin-top: 28px; }
  .legal-content { font-size: 14px; line-height: 1.7; }

  /* ── LOGIN ── */
  .auth-tabs { flex-direction: row; }
  .auth-tabs .auth-tab { font-size: 13px; padding: 12px 8px; flex: 1; text-align: center; }

  /* ── TOOLS: SaaS Calculator ── */
  .tool-row { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .tool-row input:first-child { grid-column: 1/-1; }
  .header-row { display: none !important; }
  .spend-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── TOOLS: Ops Readiness ── */
  .q-card { padding: 20px 16px; }
  .q-opt { padding: 10px 12px; font-size: 13px; }
  .q-text { font-size: 14px; }
  .score-ring { width: 130px !important; height: 130px !important; }
  .score-ring svg { width: 130px !important; height: 130px !important; }
  .score-val { font-size: 34px !important; }
  .category-bar-label { min-width: 80px; font-size: 11px; }

  /* ── AI REPORT BOXES ── */
  .ai-summary, .ai-report { padding: 18px 16px; font-size: 14px; }
  .ai-summary h3, .ai-report h3 { font-size: 15px; }
  .ai-report h4 { font-size: 14px; }
  .ai-report li { font-size: 13px; }

  /* ── ACCOUNT PAGES ── */
  .account-layout { grid-template-columns: 1fr !important; gap: 20px; }
  .account-sidebar { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 10px; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .account-sidebar a { white-space: nowrap; padding: 10px 14px; font-size: 12px; flex-shrink: 0; }
  .account-card { padding: 20px 16px; }
  .account-card h3 { font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; }
  .account-field { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
  .account-field-value { text-align: left; }

  /* ── DASHBOARD ── */
  .dashboard-card { padding: 24px 18px; }

  /* ── USER MENU DROPDOWN (mobile position) ── */
  .user-menu-dropdown { min-width: 220px; right: -4px; }
  .user-menu-dropdown a, .user-menu-dropdown button { padding: 10px 12px; font-size: 13px; }
}

/* ─── SMALL MOBILE (≤480px) ─── */
@media (max-width: 480px) {
  nav { padding: 12px 14px; }
  .logo svg, .logo .logo-svg { width: 150px; }
  .nav-actions .nav-cta:not(.nav-signin-btn) { display: none; } /* hide Book a Call */

  .hero { padding: 84px 16px 44px; }
  .hero-headline,
  .hero h1 { font-size: 26px !important; }
  .hero-sub,
  .hero p { font-size: 14px !important; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 10px; }

  .section { padding: 44px 16px; }
  .page-header { padding: 84px 16px 36px; }
  .page-header h1 { font-size: 24px !important; }
  .section-headline,
  .section h2 { font-size: 20px !important; }
  .cta-headline { font-size: 22px !important; }
  .cta-section { padding: 44px 16px; }

  .service-card { padding: 20px 16px; }
  .case-stats { grid-template-columns: 1fr; }
  .about-photo { max-width: 180px; }

  .tool-row { grid-template-columns: 1fr !important; }
  .tool-row input:first-child { grid-column: auto; }
  .spend-grid { grid-template-columns: 1fr !important; }

  .score-ring { width: 110px !important; height: 110px !important; }
  .score-ring svg { width: 110px !important; height: 110px !important; }
  .score-val { font-size: 28px !important; }

  .footer { padding: 36px 16px 20px; }
  .footer-logo-svg { height: 28px !important; }
  .footer-bottom { font-size: 11px; }

  .account-card { padding: 16px 12px; }
  .account-sidebar a { font-size: 11px; padding: 8px 10px; }

  .user-menu-dropdown { min-width: 190px; right: -8px; }
  .user-menu-dropdown a, .user-menu-dropdown button { padding: 8px 10px; font-size: 12px; }
  .user-menu-name { font-size: 13px; }
  .user-menu-email { font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════
   USER ACCOUNT DROPDOWN
   ══════════════════════════════════════════════════════════════ */
.user-menu { position: relative; }
.user-menu-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent-border);
  color: var(--accent); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.user-menu-btn:hover { border-color: var(--accent); background: rgba(200,240,74,0.15); }
.user-menu-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 8px; min-width: 240px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5); z-index: 200;
}
.user-menu.open .user-menu-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-menu-header { padding: 12px 14px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.user-menu-name { font-size: 14px; font-weight: 600; color: var(--white); }
.user-menu-email { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.user-menu-dropdown a, .user-menu-dropdown button {
  display: flex; align-items: center; width: 100%;
  padding: 10px 14px; font-size: 13px; color: var(--text-secondary);
  border-radius: 6px; transition: background 0.15s, color 0.15s;
  border: none; background: none; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
}
.user-menu-dropdown a:hover, .user-menu-dropdown button:hover { background: var(--surface-2); color: var(--white); }
.user-menu-divider { height: 1px; background: var(--border); margin: 4px 0; }
.user-menu-dropdown .logout-item { color: var(--danger); }
.user-menu-dropdown .logout-item:hover { background: rgba(240,74,74,0.08); color: var(--danger); }

/* ══════════════════════════════════════════════════════════════
   ACCOUNT PAGES
   ══════════════════════════════════════════════════════════════ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.account-sidebar a {
  display: flex; align-items: center; padding: 12px 16px;
  font-size: 14px; color: var(--text-secondary); border-radius: 8px;
  transition: background 0.15s, color 0.15s; text-decoration: none; font-weight: 400;
}
.account-sidebar a:hover { background: var(--surface-2); color: var(--white); }
.account-sidebar a.active { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-border); }
.account-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; margin-bottom: 20px;
}
.account-card h3 {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.account-field { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(40,40,40,0.5); }
.account-field:last-child { border-bottom: none; }
.account-field-label { font-size: 13px; color: var(--text-muted); font-weight: 400; min-width: 120px; }
.account-field-value { font-size: 14px; color: var(--white); font-weight: 400; text-align: right; }

/* Footer social icons */
.footer-socials a:hover, .footer a[aria-label]:hover { border-color: #C8F04A !important; background: rgba(200,240,74,0.08) !important; }
.footer-socials a:hover svg path, .footer a[aria-label]:hover svg path { fill: #C8F04A; }

/* ═══════════════════════════════════════════════════
   UX PREVIEW IMPROVEMENTS
   ═══════════════════════════════════════════════════ */

/* ── Hero two-column layout ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-split-left { flex: 1; min-width: 0; }
.hero-split-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Floating dashboard mockup card ── */
.hero-mockup {
  width: 340px;
  background: #111;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,240,74,0.06);
  position: relative;
  animation: hero-float 5s ease-in-out infinite;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,240,74,.4), transparent);
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mockup-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.mockup-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #4af06a;
  font-weight: 600;
}
.mockup-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4af06a;
  box-shadow: 0 0 6px rgba(74,240,106,.5);
}
.mockup-score {
  background: rgba(200,240,74,.06);
  border: 1px solid rgba(200,240,74,.15);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mockup-score-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #C8F04A;
  letter-spacing: -2px;
  line-height: 1;
}
.mockup-score-label { font-size: 11px; color: #888; font-weight: 300; line-height: 1.5; }
.mockup-score-label strong { display: block; font-size: 13px; color: #C8F04A; font-weight: 600; }
.mockup-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.mockup-bar-row { display: flex; align-items: center; gap: 10px; }
.mockup-bar-label { font-size: 11px; color: #666; width: 80px; flex-shrink: 0; font-weight: 300; }
.mockup-bar-track { flex: 1; height: 4px; background: #1e1e1e; border-radius: 4px; overflow: hidden; }
.mockup-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #C8F04A, #a5c93e); }
.mockup-bar-val { font-size: 11px; color: #666; width: 24px; text-align: right; font-weight: 500; }
.mockup-tools-row {
  display: flex;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
}
.mockup-tool-chip {
  font-size: 10px;
  padding: 3px 9px;
  background: #1a1a1a;
  border: 1px solid #282828;
  border-radius: 100px;
  color: #666;
  font-weight: 400;
}

/* ── Proof / Testimonial Avatar ── */
.proof-card {
  position: relative;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color .25s, transform .2s;
}
.proof-card:hover { border-color: #333; transform: translateY(-3px); }
.proof-card::before {
  content: '"';
  position: absolute;
  top: 24px; right: 28px;
  font-family: Georgia, serif;
  font-size: 72px;
  color: rgba(200,240,74,.08);
  line-height: 1;
  pointer-events: none;
}
.proof-avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.proof-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 15px;
  flex-shrink: 0;
}
.proof-avatar--j { background: linear-gradient(135deg, #4f6ef7, #7c3aed); color: #fff; }
.proof-avatar--m { background: linear-gradient(135deg, #059669, #0d9488); color: #fff; }
.proof-avatar--p { background: linear-gradient(135deg, #d97706, #dc2626); color: #fff; }
.proof-author-info { flex: 1; min-width: 0; }

/* ── Hero background texture ── */
.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(200,240,74,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── Process step icons ── */
.step-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(200,240,74,.06);
  border: 1px solid rgba(200,240,74,.12);
}

/* ── Service card icon area (replace images) ── */
.service-icon-area {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
}
.service-icon-big {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  background: rgba(200,240,74,.08);
  border: 1px solid rgba(200,240,74,.15);
}
.service-icon-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.service-icon-desc strong { display: block; font-size: 13px; color: #aaa; font-weight: 500; margin-bottom: 2px; }

/* ── CTA section texture ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,240,74,.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(200,240,74,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline, .cta-sub, .cta-actions { position: relative; z-index: 1; }

/* ── Why Groundwork icon badges ── */
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(200,240,74,.06);
  border: 1px solid rgba(200,240,74,.12);
}

/* ── Stat item icon ── */
.stat-item-icon {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

/* ── Mobile hero stack ── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-right { display: none; }
}

/* ─── Ops Copilot Preview Section ─── */
.copilot-preview {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.copilot-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.copilot-preview-text .section-label { margin-bottom: 14px; }
.copilot-preview-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.copilot-preview-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
}
.copilot-chat-window {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.copilot-chat-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.copilot-chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.copilot-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.copilot-chat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.copilot-chat-status {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.copilot-chat-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4af06a;
  display: inline-block;
}
.copilot-chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  font-size: 13px;
  line-height: 1.6;
  padding: 11px 15px;
  border-radius: 10px;
  max-width: 88%;
  font-family: 'DM Sans', sans-serif;
}
.chat-msg--user {
  background: var(--surface-2);
  color: var(--white);
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
  font-weight: 400;
}
.chat-msg--ai {
  background: rgba(200,240,74,.05);
  border: 1px solid rgba(200,240,74,.1);
  color: var(--text-secondary);
  align-self: flex-start;
  border-radius: 10px 10px 10px 2px;
  font-weight: 300;
}
.copilot-chat-input {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  background: var(--surface);
  align-items: center;
}
.copilot-chat-input input {
  flex: 1;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}
.copilot-chat-send {
  background: var(--accent);
  color: var(--black);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 900px) {
  .copilot-preview { padding: 60px 24px; }
  .copilot-preview-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Wide-screen centering (≥1400px) ─── */
@media (min-width: 1400px) {
  .section,
  .cta-section,
  .hero,
  .footer,
  nav,
  .page-header {
    padding-left: calc((100vw - 1280px) / 2 + 48px);
    padding-right: calc((100vw - 1280px) / 2 + 48px);
  }
  .copilot-preview {
    padding-left: calc((100vw - 1280px) / 2 + 48px);
    padding-right: calc((100vw - 1280px) / 2 + 48px);
  }
  .marquee-bar { padding-left: 0; padding-right: 0; }
}

/* ─── Mobile: sub-480px ─── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 16px; }
  .hero { padding: 80px 16px 60px; }
  .hero-title { font-size: 32px; line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .section-title { font-size: 28px; }
  .page-header h1 { font-size: 32px; }

  /* AI tool form grids */
  .tool-form-grid,
  .form-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Tool stream gate actions stack vertically */
  .ts-gate-actions { flex-direction: column; align-items: stretch; }
  .ts-gate-btn-primary,
  .ts-gate-btn-secondary { width: 100%; justify-content: center; text-align: center; }

  /* Dashboard mobile tweaks */
  .dash-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dash-stat { padding: 16px; }
  .dash-stat-value { font-size: 28px; }

  /* Pricing cards */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Nav buttons */
  .nav-cta { display: none; }

  /* Blog/case study grids */
  .blog-grid,
  .case-study-grid { grid-template-columns: 1fr; }

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

/* ═══════════════════════════════════════════════════════ */
/*  UI KIT — Hero Dashboard + Platform Showcase (Apr 2026) */
/* ═══════════════════════════════════════════════════════ */

/* Hero centred */
.hero { text-align: center; align-items: center; }
.hero-headline { margin-left: auto; margin-right: auto; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-stats { justify-content: center; }
.stat-number { color: var(--accent); }
.stat-number span { color: var(--accent); }
.stat-item-icon { display: none; }

/* Pulse dot */
.pulse-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-glow 1.8s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse-glow { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Float animations */
@keyframes float1 { 0%,100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-12px) rotate(-8deg); } }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(6deg); } 50% { transform: translateY(-10px) rotate(6deg); } }
@keyframes float3 { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-8px) rotate(-4deg); } }
@keyframes tab-slide { from { opacity:0; transform: translateX(10px); } to { opacity:1; transform: translateX(0); } }

/* Avatar illustration */
.avatar-illus { width: var(--av-size,26px); height: var(--av-size,26px); border-radius: 50%; background: linear-gradient(135deg,#C8F04A,#8BB52A); color: #0A0A0A; display: flex; align-items: center; justify-content: center; font-family: 'Syne',sans-serif; font-weight: 800; font-size: calc(var(--av-size,26px)*0.42); flex-shrink: 0; }
.online-indicator { position: absolute; bottom: -1px; right: -1px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); border: 1.5px solid #111; }

/* Hero dashboard container */
.hero-dashboard { position: relative; width: 100%; max-width: 860px; margin: 60px auto 0; perspective: 2400px; }

/* Floating panels */
.dash-float { position: absolute; background: #111; border: 1px solid var(--border); border-radius: 12px; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.7); z-index: 3; font-size: 10px; }
.dash-float--left { left: -28px; top: 30%; width: 196px; animation: float1 5s ease-in-out infinite; }
.dash-float--right-top { right: -18px; top: 12%; width: 206px; border-color: rgba(200,240,74,0.4); animation: float2 5.5s ease-in-out infinite; }
.dash-float--right-bottom { right: 8%; bottom: -28px; width: 168px; animation: float3 4.5s ease-in-out infinite; }
.dash-float-label { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.dash-float-header { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.dash-float-ai-label { font-size: 10px; color: var(--accent); letter-spacing: 1px; font-weight: 600; }
.dash-float-title { font-size: 11px; color: #F5F4F0; font-weight: 500; margin-bottom: 4px; }
.dash-float-body { font-size: 10px; color: #888; line-height: 1.5; }
.dash-float-body .accent { color: var(--accent); font-weight: 600; }
.dash-big-stat { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -1px; color: var(--accent); }
.dash-member { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; position: relative; }
.dash-member:last-child { margin-bottom: 0; }
.dash-member-av { position: relative; }
.dash-member-name { font-size: 10px; color: #F5F4F0; font-weight: 500; }
.dash-member-role { font-size: 9px; color: var(--text-muted); }

/* Main dashboard card */
.dash-main { background: #111; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(200,240,74,0.1); transform: rotateX(6deg) rotateY(-4deg); transform-style: preserve-3d; position: relative; z-index: 2; }
.dash-titlebar { background: #161616; border-bottom: 1px solid var(--border); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; }
.dash-window-title { flex: 1; text-align: center; font-size: 11px; color: #444; }
.dash-body { display: flex; height: 340px; }
.dash-sidebar { width: 162px; border-right: 1px solid #1e1e1e; padding: 12px 10px; flex-shrink: 0; background: #0E0E0E; }
.dash-nav-item { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; font-size: 11px; color: #666; margin-bottom: 2px; }
.dash-nav-item.active { background: rgba(200,240,74,0.1); color: var(--accent); }
.dash-nav-icon { font-size: 12px; }
.dash-content { flex: 1; padding: 14px; overflow: hidden; }
.dash-content-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dash-content-title { font-family: 'Syne',sans-serif; font-size: 13px; font-weight: 700; }
.dash-content-period { font-size: 10px; color: #555; }
.dash-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; margin-bottom: 12px; }
.dash-stat-mini { background: #161616; border: 1px solid #1e1e1e; border-radius: 8px; padding: 9px; }
.dash-stat-mini-label { font-size: 9px; color: #666; margin-bottom: 2px; }
.dash-stat-mini-val { font-family: 'Syne',sans-serif; font-size: 15px; font-weight: 700; color: #F5F4F0; }
.dash-stat-mini-delta { font-size: 9px; color: var(--accent); margin-top: 1px; }
.dash-chart { background: #161616; border: 1px solid #1e1e1e; border-radius: 8px; padding: 10px; margin-bottom: 8px; }
.dash-chart-label { font-size: 9px; color: #555; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.dash-bars { display: flex; align-items: flex-end; gap: 3px; height: 52px; }
.dash-bar { flex: 1; border-radius: 2px 2px 0 0; }
.dash-tasks { display: flex; flex-direction: column; gap: 4px; }
.dash-task { display: flex; align-items: center; gap: 7px; padding: 5px 7px; border-radius: 5px; background: #111; border: 1px solid #1a1a1a; }
.dash-task-check { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.dash-task-check--done { background: var(--accent); border: 1.5px solid var(--accent); }
.dash-task-check--pending { background: transparent; border: 1.5px solid #333; }
.dash-task-label { font-size: 10px; color: #888; flex: 1; }
.dash-task-label--done { color: #555; text-decoration: line-through; }

/* Platform Showcase */
.platform-section { padding: 120px 48px; background: #0E0E0E; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.platform-glow { position: absolute; top: 30%; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse,rgba(200,240,74,0.06) 0%,transparent 70%); pointer-events: none; }
.platform-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.platform-header h2 { font-family: 'Syne',sans-serif; font-size: clamp(30px,4vw,52px); font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 18px; }
.platform-header p { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.7; }
.platform-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.platform-tab { background: transparent; color: var(--text-muted); border: 1px solid #333; padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; font-family: 'DM Sans',sans-serif; cursor: pointer; transition: all 0.3s; }
.platform-tab.active { background: var(--accent); color: var(--black); border-color: var(--accent); }
.platform-viewport { position: relative; max-width: 1000px; margin: 0 auto; perspective: 2400px; z-index: 1; }
.platform-bg-glow { position: absolute; inset: 10% 5% -5% 5%; background: radial-gradient(ellipse,rgba(200,240,74,0.12),transparent 65%); filter: blur(40px); pointer-events: none; }
.pf-float { position: absolute; background: #111; border: 1px solid var(--border); border-radius: 12px; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.7); font-size: 10px; z-index: 3; }
.pf-float--left { left: -48px; top: 50%; width: 196px; transform: translateY(-50%); animation: float1 5s ease-in-out infinite; }
.pf-float--right-top { right: -38px; top: 18%; width: 206px; border-color: rgba(200,240,74,0.4); animation: float2 5.5s ease-in-out infinite; }
.pf-float--right-bottom { right: 4%; bottom: -34px; width: 172px; animation: float3 4.8s ease-in-out infinite; }
.pf-collab-more { width: 26px; height: 26px; border-radius: 50%; background: #1e1e1e; border: 2px solid #0A0A0A; color: #888; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 600; margin-left: -8px; }
.pf-velocity-bars { display: flex; gap: 2px; margin-top: 8px; align-items: flex-end; height: 20px; }
.pf-velocity-bar { flex: 1; border-radius: 1px; }
.pf-main { background: #111; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(200,240,74,0.15); transform: rotateX(4deg); position: relative; z-index: 2; }
.pf-titlebar { background: #161616; border-bottom: 1px solid var(--border); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.pf-dots { display: flex; gap: 5px; }
.pf-dots span { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; }
.pf-window-title { flex: 1; text-align: center; font-size: 11px; color: #444; }
.pf-view { animation: tab-slide 0.5s ease-out; }
.pf-view-body { padding: 18px; height: 400px; }
.pf-panel { background: #161616; border-radius: 10px; padding: 14px; border: 1px solid #1e1e1e; }
.pf-panel-label { font-size: 10px; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.pf-revops-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; height: 100%; }
.pf-funnel-stage { margin-bottom: 12px; }
.pf-funnel-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 4px; color: #888; }
.pf-funnel-row span { color: var(--accent); font-weight: 600; }
.pf-bar-track { height: 8px; background: #222; border-radius: 4px; overflow: hidden; }
.pf-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.pf-rep-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pf-rep-bars { flex: 1; }
.pf-rep-name { font-size: 11px; color: #F5F4F0; margin-bottom: 3px; }
.pf-rep-track { height: 4px; background: #222; border-radius: 2px; overflow: hidden; }
.pf-rep-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.pf-rep-val { font-size: 11px; color: #888; font-weight: 500; white-space: nowrap; }
.pf-stack-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pf-stack-stat { background: #161616; border: 1px solid #1e1e1e; border-radius: 8px; padding: 10px; }
.pf-stack-stat-label { font-size: 9px; color: #666; margin-bottom: 3px; }
.pf-stack-stat-val { font-family: 'Syne',sans-serif; font-size: 20px; font-weight: 700; color: var(--accent); letter-spacing: -1px; }
.pf-heatmap { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; margin-bottom: 12px; }
.pf-heat-cell { border-radius: 6px; padding: 10px 6px; text-align: center; }
.pf-heat-label { font-size: 9px; color: #888; margin-bottom: 3px; }
.pf-heat-val { font-family: 'Syne',sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.pf-insight-bar { padding: 10px 12px; background: rgba(200,240,74,0.08); border: 1px solid rgba(200,240,74,0.3); border-radius: 6px; display: flex; align-items: center; gap: 10px; font-size: 11px; color: #F5F4F0; }
.pf-insight-bar .accent { color: var(--accent); }
.pf-insight-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.pf-coo-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; height: 100%; }
.pf-okr { margin-bottom: 14px; }
.pf-okr-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.pf-okr-name { color: #F5F4F0; }
.pf-okr-pct { color: var(--accent); font-weight: 600; }
.pf-okr-track { height: 6px; background: #222; border-radius: 3px; overflow: hidden; }
.pf-okr-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.pf-task-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #1a1a1a; }
.pf-task-row:last-child { border-bottom: none; }
.pf-task-check { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.pf-task-check--done { background: var(--accent); border: 1.5px solid var(--accent); }
.pf-task-check--pending { background: transparent; border: 1.5px solid #333; }
.pf-task-info { flex: 1; }
.pf-task-name { font-size: 11px; }
.pf-task-name--done { color: #555; text-decoration: line-through; }
.pf-task-name--pending { color: #F5F4F0; }
.pf-task-time { font-size: 9px; color: #666; margin-top: 2px; }
.pf-ai-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pf-ai-stat { background: #161616; border: 1px solid #1e1e1e; border-radius: 8px; padding: 12px; }
.pf-ai-stat-label { font-size: 9px; color: #666; margin-bottom: 3px; }
.pf-ai-stat-val { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.pf-ai-stat-sub { font-size: 9px; color: #777; margin-top: 2px; }
.pf-ai-feed { background: #161616; border: 1px solid #1e1e1e; border-radius: 10px; padding: 14px; }
.pf-ai-feed-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 11px; color: #666; letter-spacing: 1px; text-transform: uppercase; }
.pf-ai-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #1a1a1a; }
.pf-ai-item:last-child { border-bottom: none; }
.pf-ai-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 4px; flex-shrink: 0; }
.pf-ai-msg { font-size: 11px; color: #F5F4F0; line-height: 1.5; flex: 1; }
.pf-ai-time { font-size: 9px; color: #555; margin-top: 3px; }

@media (max-width: 768px) {
  .hero-dashboard { display: none; }
  .platform-section { padding: 80px 24px; }
  .pf-float { display: none; }
  .platform-tabs { gap: 8px; }
  .platform-tab { padding: 8px 14px; font-size: 12px; }
}
@media (max-width: 1024px) {
  .platform-viewport { overflow: visible; }
  .pf-float--left, .pf-float--right-top, .pf-float--right-bottom { display: none; }
}
