/* ═══════════════════════════════════════════════════
   BOS Framework — Shared Stylesheet v2
   Brand: Near Black #1B2130 · Light #F7F8F8
          Slate #475569 · Slate400 #94A3B8
          Forge #7FB51D · Cloud #256F7D · Teams #6D43A8
   ═══════════════════════════════════════════════════ */

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

:root {
  --black:        #1B2130;
  --black-2:      #252b3d;
  --black-3:      #1e2535;
  --black-4:      #2a3147;
  --light:        #F7F8F8;
  --slate-200:    #E2E8F0;
  --slate-400:    #94A3B8;
  --slate-600:    #475569;
  --white:        #ffffff;
  --lime:         #8FCC00;
  --lime-dim:     #6BA300;
  --lime-bright:  #a3e000;
  --lime-tint:    rgba(143,204,0,0.10);
  --lime-border:  rgba(143,204,0,0.28);
  --forge:        #7FB51D;
  --forge-light:  #a3d645;
  --cloud:        #256F7D;
  --cloud-light:  #3a9aad;
  --teams:        #6D43A8;
  --teams-light:  #9b6ee8;
  --border:       rgba(255,255,255,0.07);
  --border-med:   rgba(255,255,255,0.13);
  --border-light: #E2E8F0;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-sm:    8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .sr, .sr-left, .sr-right, .sr-scale { opacity: 1 !important; transform: none !important; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 3px; }


/* ════════════════════════════════════════════════
   PREMIUM CHROME — scroll bar, cursor, grain
   ════════════════════════════════════════════════ */

/* Film grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px; mix-blend-mode: overlay;
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-bright) 100%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(143,204,0,0.5);
}

/* Custom cursor */
.cursor-dot {
  position: fixed; pointer-events: none; z-index: 99999;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime); transform: translate(-50%,-50%);
  transition: width .18s, height .18s, opacity .18s; will-change: transform; display: none;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 99998;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid rgba(143,204,0,0.5); transform: translate(-50%,-50%);
  transition: width .32s cubic-bezier(.16,1,.3,1), height .32s cubic-bezier(.16,1,.3,1), border-color .28s;
  will-change: transform; display: none;
}
.has-cursor .cursor-dot, .has-cursor .cursor-ring { display: block; }
.has-cursor * { cursor: none !important; }
.cursor-dot.is-hovering  { width: 0; height: 0; opacity: 0; }
.cursor-ring.is-hovering { width: 44px; height: 44px; border-color: rgba(143,204,0,0.75); }
.cursor-dot.is-clicking  { transform: translate(-50%,-50%) scale(0.5); }
.cursor-ring.is-clicking { width: 18px; height: 18px; }


/* ════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════ */
.container      { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
section { padding: 108px 0; }

/* Section backgrounds */
.section-dark   { background: var(--black); }
.section-medium { background: var(--black-2); }

/* Light section — #F7F8F8 */
.section-lgt { background: #F7F8F8; }
.section-lgt h2.section-title       { color: #1B2130; }
.section-lgt h2.section-title em    { color: var(--lime-dim); }
.section-lgt .section-lead          { color: #475569; }
.section-lgt .eyebrow               { color: #1B2130; }
.section-lgt .eyebrow-dot           { background: #1B2130; animation: none; box-shadow: none; }
.section-lgt .divider-lime          { background: var(--lime-dim); }
.section-lgt h1.page-title          { color: #1B2130; }
.section-lgt p                      { color: #475569; }
.section-lgt h3, .section-lgt h4    { color: #1B2130; }

/* Light cards */
.section-lgt .card {
  background: #ffffff; border-color: #E2E8F0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.section-lgt .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.section-lgt .card h3, .section-lgt .card h4 { color: #1B2130; }
.section-lgt .card p { color: #475569; }

/* Light quote */
.section-lgt .quote-block { color: #475569; border-left-color: var(--lime-dim); }
.section-lgt .quote-attr  { color: #94A3B8; }

/* Light feature list */
.section-lgt .feature-list li { color: #475569; }

/* Light icon boxes */
.section-lgt .icon-box-lime  { background: rgba(107,163,0,0.1);  border-color: rgba(107,163,0,0.25); }
.section-lgt .icon-box-forge { background: rgba(127,181,29,0.1); border-color: rgba(127,181,29,0.25); }
.section-lgt .icon-box-cloud { background: rgba(37,111,125,0.1); border-color: rgba(37,111,125,0.25); }
.section-lgt .icon-box-teams { background: rgba(109,67,168,0.1); border-color: rgba(109,67,168,0.25); }

/* Slate section — #475569 */
.section-slate { background: #475569; }
.section-slate h2.section-title     { color: #F7F8F8; }
.section-slate h2.section-title em  { color: var(--lime); }
.section-slate .section-lead        { color: rgba(247,248,248,0.72); }
.section-slate .eyebrow             { color: var(--lime); }
.section-slate .eyebrow-dot         { background: var(--lime); }
.section-slate .divider-lime        { background: var(--lime); }
.section-slate h1.page-title        { color: #F7F8F8; }
.section-slate p                    { color: rgba(247,248,248,0.72); }
.section-slate h3, .section-slate h4 { color: #F7F8F8; }
.section-slate .link-arrow          { color: rgba(247,248,248,0.8); }
.section-slate .link-arrow:hover    { color: #F7F8F8; }
/* Pills on slate — product colors stronger */
.section-slate .pill-forge { background: rgba(127,181,29,0.18); border-color: rgba(127,181,29,0.45); color: #a3d645; }
.section-slate .pill-cloud { background: rgba(37,111,125,0.18);  border-color: rgba(37,111,125,0.45);  color: #4eb8cc; }
.section-slate .pill-teams { background: rgba(109,67,168,0.18);  border-color: rgba(109,67,168,0.45);  color: #b085f5; }
.section-slate .pill       { background: rgba(143,204,0,0.18);   border-color: rgba(143,204,0,0.45);   color: var(--lime-bright); }
/* Cards on slate */
.section-slate .card {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15);
}
.section-slate .card:hover { background: rgba(255,255,255,0.13); }
.section-slate .card h3, .section-slate .card h4 { color: #F7F8F8; }
.section-slate .card p { color: rgba(247,248,248,0.7); }


/* ════════════════════════════════════════════════
   SCROLL-REVEAL
   ════════════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94), transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.sr-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94), transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.sr-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94), transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.sr-scale {
  opacity: 0; transform: scale(0.93);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94), transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.sr.visible, .sr-left.visible, .sr-right.visible, .sr-scale.visible { opacity: 1; transform: none; }
.sr-delay-1 { transition-delay: 0.10s; }
.sr-delay-2 { transition-delay: 0.18s; }
.sr-delay-3 { transition-delay: 0.26s; }
.sr-delay-4 { transition-delay: 0.34s; }
.sr-delay-5 { transition-delay: 0.42s; }

/* Divider grows in on reveal */
.sr .divider-lime, .sr-left .divider-lime,
.section-header .divider-lime { width: 0; transition: width .55s .28s cubic-bezier(.16,1,.3,1); }
.sr.visible .divider-lime, .sr-left.visible .divider-lime,
.section-header.visible .divider-lime { width: 36px; }


/* ════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 18px;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--lime); flex-shrink: 0;
  animation: eyeDot 2.8s ease-in-out infinite;
}
@keyframes eyeDot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(143,204,0,.5)} 50%{opacity:.75;box-shadow:0 0 0 5px rgba(143,204,0,0)} }

h1.page-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.03;
}
h2.section-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
h2.section-title em { font-style: normal; color: var(--lime); }
.section-lead { font-size: 17px; color: rgba(247,248,248,0.65); line-height: 1.75; max-width: 600px; }
.divider-lime { width: 36px; height: 3px; background: var(--lime); border-radius: 2px; margin-bottom: 28px; }


/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn-lime {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--black);
  background: var(--lime); border: none; cursor: pointer;
  padding: 11px 22px; border-radius: var(--radius-sm);
  transition: filter .18s, transform .15s; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-lime:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-lime:active { transform: translateY(0); }
.btn-lime-lg { font-size: 15px; padding: 13px 28px; }
/* Shimmer sweep */
.btn-lime::after {
  content: ''; position: absolute; top: -50%; left: -80%;
  width: 42%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-lime:hover::after { animation: btnShimmer .52s ease forwards; }
@keyframes btnShimmer { from{left:-80%} to{left:150%} }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--light);
  background: transparent; border: 1px solid var(--border-med);
  padding: 11px 22px; border-radius: var(--radius-sm); cursor: pointer;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--lime-border); background: var(--lime-tint); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--slate-400);
  background: none; border: none; cursor: pointer;
  text-decoration: none; transition: color .2s;
}
.btn-ghost:hover { color: var(--light); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--lime);
  text-decoration: none; transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { flex-shrink: 0; transition: transform .22s cubic-bezier(.16,1,.3,1); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Cloud product CTA button */
.btn-cloud {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #F7F8F8;
  background: var(--cloud); border: none; cursor: pointer;
  padding: 11px 22px; border-radius: var(--radius-sm);
  transition: filter .18s, transform .15s; text-decoration: none;
}
.btn-cloud:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-cloud-lg { font-size: 15px; padding: 13px 28px; }

/* White button on colored bg */
.btn-white {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700;
  background: #F7F8F8; border: none; padding: 12px 22px;
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  transition: opacity .18s, transform .15s;
}
.btn-white:hover { opacity: .9; transform: translateY(-1px); }
.btn-white-cloud { color: var(--cloud); }
.btn-white-dark  { color: var(--black); }

/* Magnetic wrapper */
.mag-wrap { display: inline-flex; }


/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 66px;
  background: rgba(27,33,48,0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(27,33,48,0.97); }
.nav-logo { display: flex; align-items: center; height: 26px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(247,248,248,0.6);
  text-decoration: none; padding: 6px 13px; border-radius: 6px;
  transition: color .18s, background .18s; white-space: nowrap;
  position: relative;
}
.nav-links a:hover { color: var(--light); background: rgba(255,255,255,0.055); }
.nav-links a.active { color: var(--light); }
/* Sliding underline */
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 13px; right: 13px;
  height: 1px; background: var(--lime);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn-ghost {
  font-size: 13.5px; font-weight: 600; color: rgba(247,248,248,0.65);
  background: none; border: 1px solid var(--border-med);
  padding: 7px 15px; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: color .18s, border-color .18s;
}
.nav-btn-ghost:hover { color: var(--light); border-color: rgba(255,255,255,0.22); }
/* Lime nav CTA (general) */
.nav-btn-lime {
  font-size: 13.5px; font-weight: 700; color: var(--black);
  background: var(--lime); border: none; cursor: pointer;
  padding: 8px 18px; border-radius: 6px;
  transition: filter .18s, transform .15s; text-decoration: none;
}
.nav-btn-lime:hover { filter: brightness(1.1); transform: translateY(-1px); }
/* Cloud-colored nav CTA — used for "Start with Cloud" */
.nav-btn-cloud {
  font-size: 13.5px; font-weight: 700; color: #F7F8F8;
  background: var(--cloud); border: none; cursor: pointer;
  padding: 8px 18px; border-radius: 6px;
  transition: filter .18s, transform .15s; text-decoration: none;
}
.nav-btn-cloud:hover { filter: brightness(1.15); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--light); border-radius: 2px; transition: all .28s; display: block; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 299;
  background: var(--black); flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--light); font-size: 26px; cursor: pointer; line-height: 1; }
.mobile-nav a { font-size: 22px; font-weight: 700; color: var(--light); text-decoration: none; }


/* ════════════════════════════════════════════════
   PAGE HERO
   ════════════════════════════════════════════════ */
.page-hero {
  padding: 148px 0 88px; position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(143,204,0,0.11) 0%, transparent 60%);
  will-change: transform;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 100%);
  will-change: transform;
}
/* Product-tinted hero backgrounds */
.page-hero-forge .page-hero-bg { background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(127,181,29,0.14) 0%, transparent 60%); }
.page-hero-cloud .page-hero-bg { background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(37,111,125,0.16) 0%, transparent 60%); }
.page-hero-teams .page-hero-bg { background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(109,67,168,0.14) 0%, transparent 60%); }

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: rgba(247,248,248,0.65);
  max-width: 580px; line-height: 1.75; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Page hero line-reveal for h1 */
.line-reveal { display: block; overflow: hidden; }
.line-reveal > span { display: block; animation: lineUp .9s cubic-bezier(.16,1,.3,1) both; }
.line-reveal:nth-child(1) > span { animation-delay: .15s; }
.line-reveal:nth-child(2) > span { animation-delay: .28s; }
.line-reveal:nth-child(3) > span { animation-delay: .40s; }
@keyframes lineUp { from{transform:translateY(110%);opacity:0} to{transform:translateY(0);opacity:1} }

/* Hero sub + cta stagger */
.hero-sub-anim  { animation: heroSlideUp .7s .48s cubic-bezier(.16,1,.3,1) both; }
.hero-cta-anim  { animation: heroSlideUp .7s .62s cubic-bezier(.16,1,.3,1) both; }
@keyframes heroSlideUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* Hero pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); background: rgba(143,204,0,0.07);
  border: 1px solid var(--lime-border); padding: 6px 14px; border-radius: 100px;
  margin-bottom: 32px; animation: heroFade .6s .05s ease both;
}
.hero-pill-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; flex-shrink: 0; animation: pillPulse 2.2s ease-in-out infinite; }
@keyframes pillPulse { 0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 0 rgba(143,204,0,.5)} 50%{opacity:.85;transform:scale(1.15);box-shadow:0 0 0 5px rgba(143,204,0,0)} }
@keyframes heroFade { from{opacity:0} to{opacity:1} }


/* ════════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════════ */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-lead { margin: 0 auto; }
.section-header.centered .divider-lime { margin-left: auto; margin-right: auto; }


/* ════════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════════ */
.card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: border-color .25s, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  position: relative; overflow: hidden;
}
.card > * { position: relative; z-index: 1; }
.card:hover { border-color: var(--border-med); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.28); }
.card-lime:hover  { border-color: var(--lime-border);           box-shadow: 0 16px 48px rgba(143,204,0,0.1); }
.card-forge:hover { border-color: rgba(127,181,29,0.4);         box-shadow: 0 16px 48px rgba(127,181,29,0.12); }
.card-cloud:hover { border-color: rgba(37,111,125,0.4);         box-shadow: 0 16px 48px rgba(37,111,125,0.12); }
.card-teams:hover { border-color: rgba(109,67,168,0.4);         box-shadow: 0 16px 48px rgba(109,67,168,0.12); }

/* Card spotlight — cursor-tracking radial gradient */
.card-spotlight { --mx: 50%; --my: 50%; }
.card-spotlight::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(255,255,255,0.05), transparent 70%);
  opacity: 0; transition: opacity .32s; pointer-events: none; z-index: 0;
}
.card-spotlight:hover::before { opacity: 1; }

/* Product card gradients */
.card-bg-forge { background: linear-gradient(155deg, rgba(127,181,29,0.11) 0%, var(--black-3) 45%); }
.card-bg-cloud { background: linear-gradient(155deg, rgba(37,111,125,0.13) 0%, var(--black-3) 45%); }
.card-bg-teams { background: linear-gradient(155deg, rgba(109,67,168,0.13) 0%, var(--black-3) 45%); }

/* Icon containers */
.icon-box {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.icon-box-lime  { background: rgba(143,204,0,0.12);  border: 1px solid var(--lime-border); }
.icon-box-forge { background: rgba(127,181,29,0.12); border: 1px solid rgba(127,181,29,0.25); }
.icon-box-cloud { background: rgba(37,111,125,0.12); border: 1px solid rgba(37,111,125,0.25); }
.icon-box-teams { background: rgba(109,67,168,0.12); border: 1px solid rgba(109,67,168,0.25); }
.icon-box-red   { background: rgba(244,63,94,0.10);  border: 1px solid rgba(244,63,94,0.2); }
.icon-box-sm { width: 38px; height: 38px; border-radius: 9px; }

/* Product bars */
.product-bar { height: 4px; border-radius: 2px; margin-bottom: 28px; }
.product-bar-forge { background: linear-gradient(90deg, var(--forge), var(--forge-light)); }
.product-bar-cloud { background: linear-gradient(90deg, var(--cloud), var(--cloud-light)); }
.product-bar-teams { background: linear-gradient(90deg, var(--teams), var(--teams-light)); }

/* Feature list */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(247,248,248,0.75); line-height: 1.6; }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; }
.section-lgt .feature-list li { color: #475569; }

/* Stat blocks */
.stat-num { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.04em; color: var(--lime); line-height: 1; }
.stat-label { font-size: 14px; font-weight: 600; margin: 8px 0 4px; }
.stat-desc { font-size: 13px; color: var(--slate-400); line-height: 1.6; }
/* Smaller for text-based stat values */
.stat-num-text { font-size: clamp(18px, 2vw, 26px) !important; letter-spacing: -0.02em; font-weight: 800; line-height: 1.25; }

/* Light stat grid */
.stat-grid-light {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #E2E8F0;
}
.stat-cell-lt {
  padding: 52px 36px; background: #ffffff;
  transition: background .2s; position: relative; overflow: hidden;
}
.stat-cell-lt + .stat-cell-lt { border-left: 1px solid #E2E8F0; }
.stat-cell-lt:hover { background: #f0f4f8; }
.stat-cell-lt::after { content:''; position:absolute; bottom:0; left:36px; right:36px; height:2px; background:linear-gradient(90deg,transparent,var(--lime-dim),transparent); opacity:0; transition:opacity .3s; }
.stat-cell-lt:hover::after { opacity: 0.5; }
.stat-cell-lt .stat-num   { color: #1B2130; font-size: clamp(28px, 3.5vw, 44px); }
.stat-cell-lt:hover .stat-num { color: var(--lime-dim); }
.stat-cell-lt .stat-label { color: #1B2130; }
.stat-cell-lt .stat-desc  { color: #475569; }
/* Stat pop on reveal */
.stat-grid-light.visible .stat-num { animation: statPop .5s cubic-bezier(.16,1,.3,1) both; }
.stat-grid-light.visible .stat-cell-lt:nth-child(1) .stat-num { animation-delay:.10s; }
.stat-grid-light.visible .stat-cell-lt:nth-child(2) .stat-num { animation-delay:.18s; }
.stat-grid-light.visible .stat-cell-lt:nth-child(3) .stat-num { animation-delay:.26s; }
.stat-grid-light.visible .stat-cell-lt:nth-child(4) .stat-num { animation-delay:.34s; }
@keyframes statPop { from{transform:scale(.88);opacity:0} to{transform:scale(1);opacity:1} }

/* Dark stat grid (for dark/slate sections) */
.stat-grid-dark {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}
.stat-cell-dk { padding: 52px 36px; background: var(--black); transition: background .2s; }
.stat-cell-dk + .stat-cell-dk { border-left: 1px solid var(--border); }
.stat-cell-dk:hover { background: var(--black-3); }
.section-slate .stat-grid-dark { border-color: rgba(255,255,255,0.12); }
.section-slate .stat-cell-dk { background: rgba(255,255,255,0.06); }
.section-slate .stat-cell-dk + .stat-cell-dk { border-left-color: rgba(255,255,255,0.1); }
.section-slate .stat-cell-dk:hover { background: rgba(255,255,255,0.1); }

/* Quote */
.quote-block {
  border-left: 3px solid var(--lime); padding: 6px 0 6px 20px;
  font-size: 15px; font-style: italic; color: rgba(247,248,248,0.72); line-height: 1.7;
}
.quote-attr { font-size: 13px; color: var(--slate-400); font-style: normal; font-weight: 600; margin-top: 10px; }
.quote-block-forge { border-left-color: var(--forge); }
.quote-block-cloud  { border-left-color: var(--cloud-light); }
.quote-block-teams  { border-left-color: var(--teams-light); }

/* Pull quote (centered large) */
.pull-quote { text-align: center; max-width: 720px; margin: 0 auto; }
.pull-quote blockquote {
  font-size: clamp(16px, 2vw, 20px); font-style: italic; line-height: 1.75;
  color: rgba(247,248,248,0.72);
}
.pull-quote blockquote::before { content:'\201C'; color:var(--lime); font-size:2em; line-height:0; vertical-align:-.4em; margin-right:3px; }
.pull-quote blockquote::after  { content:'\201D'; color:var(--lime); font-size:2em; line-height:0; vertical-align:-.4em; margin-left:3px; }
.section-lgt .pull-quote blockquote { color: #475569; }
.section-lgt .pull-quote blockquote::before,
.section-lgt .pull-quote blockquote::after { color: var(--lime-dim); }
.pull-quote-attr { font-size: 13px; color: var(--slate-400); font-weight: 600; margin-top: 16px; }

/* Pill / tag */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--lime-border); background: var(--lime-tint); color: var(--lime);
}
.pill-sm    { font-size: 10px; padding: 3px 9px; }
.pill-cloud { border-color: rgba(37,111,125,0.35); background: rgba(37,111,125,0.1);  color: #4eb8cc; }
.pill-teams { border-color: rgba(109,67,168,0.35); background: rgba(109,67,168,0.1); color: #a57fe8; }
.pill-forge { border-color: rgba(127,181,29,0.35); background: rgba(127,181,29,0.1); color: var(--lime); }


/* ════════════════════════════════════════════════
   CTA PAIRS
   ════════════════════════════════════════════════ */
.cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-card {
  border-radius: var(--radius-lg); padding: 52px 44px;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 14px; }
.cta-card p  { font-size: 15px; line-height: 1.75; opacity: 0.8; margin-bottom: 28px; }

/* Cloud product CTA card */
.cta-card-cloud {
  background: var(--cloud);
}
.cta-card-cloud::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 0%, rgba(58,154,173,0.4), transparent 70%);
  pointer-events: none;
}
.cta-card-cloud:hover { box-shadow: 0 20px 56px rgba(37,111,125,0.35); }
.cta-card-cloud h2, .cta-card-cloud p { color: #F7F8F8; }
.cta-card-cloud .cta-eyebrow { color: rgba(247,248,248,0.55); }

/* Forge CTA card */
.cta-card-forge { background: var(--forge); }
.cta-card-forge h2, .cta-card-forge p { color: #1B2130; }

/* Lime CTA card */
.cta-card-lime  { background: var(--lime); color: var(--black); }
.cta-card-lime .cta-eyebrow { color: rgba(27,33,48,0.6); }

/* Dark CTA card */
.cta-card-dark { background: var(--black-2); border: 1px solid var(--border-med); }
.cta-card-dark::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(143,204,0,.07), rgba(37,111,125,.05), rgba(109,67,168,.05));
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.cta-card-dark:hover::before { opacity: 1; }
.cta-card-dark:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.3); }

/* CTA eyebrow */
.cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 14px; }

.btn-dark { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--lime); background: var(--black); border: none; padding: 11px 22px; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; transition: opacity .18s; }
.btn-dark:hover { opacity: 0.88; }


/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 72px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo img { height: 24px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--slate-400); line-height: 1.75; max-width: 260px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 7px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn:hover { border-color: var(--lime-border); color: var(--lime); background: var(--lime-tint); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(247,248,248,0.5); text-decoration: none; transition: color .2s, transform .2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--light); transform: translateY(-1px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p, .footer-bottom a { font-size: 13px; color: var(--slate-400); text-decoration: none; }
.footer-bottom a:hover { color: var(--light); }
.footer-bottom-links { display: flex; gap: 22px; }


/* ════════════════════════════════════════════════
   GRID HELPERS
   ════════════════════════════════════════════════ */
.grid-2   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.grid-3-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }


/* ════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════ */
.trust-bar { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.018); }
.trust-inner { display: flex; align-items: center; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-400); white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-logo { font-size: 13.5px; font-weight: 700; color: rgba(247,248,248,0.22); }


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4, .stat-grid-light, .stat-grid-dark { grid-template-columns: 1fr 1fr; }
  .stat-cell-lt:nth-child(3), .stat-cell-lt:nth-child(4) { border-top: 1px solid #E2E8F0; }
  .stat-cell-lt:nth-child(3) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-3-1 { grid-template-columns: 1fr; gap: 48px; }
  .cta-pair { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-actions .nav-btn-ghost { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 0; }
  .container, .container-wide { padding: 0 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4, .stat-grid-light, .stat-grid-dark { grid-template-columns: 1fr; }
  .stat-cell-lt + .stat-cell-lt { border-left: none; border-top: 1px solid #E2E8F0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 120px 0 72px; }
  .cta-card { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-lime, .hero-ctas .btn-outline, .hero-ctas .btn-cloud { text-align: center; justify-content: center; }
}
