/* ============================================================
   NEXT PAGE LABS — Main Stylesheet
   Sub-brand of Chris K.N. Consulting
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500&family=JetBrains+Mono:wght@400;500&display=swap');

/* === DESIGN TOKENS ============================================ */
:root {
  /* CKN Shared Palette */
  --rich-black:     #001219;
  --midnight-green: #005F73;
  --dark-cyan:      #0A9396;
  --tiffany-blue:   #94D2BD;
  --vanilla:        #E9D8A6;
  --gamboge:        #EE9B00;
  --alloy-orange:   #CA6702;
  --rust:           #BB3E03;
  --rufous:         #AE2012;
  --auburn:         #9B2226;
  --off-white:      #F7F5F0;
  --warm-white:     #FAF8F3;
  --slate:          #5A6B73;
  --deep-black:     #021B26;

  /* Labs Exclusive Palette */
  --electron:   #8847FF;   /* Labs primary — vivid violet */
  --photon:     #B98EFF;   /* Labs light — violet for text on dark */
  --deep-lab:   #0E0520;   /* Labs dark bg — deep space purple */
  --lab-mist:   #F0EAFF;   /* Labs ultra-light tint */
  --lab-mid:    #2D1260;   /* Labs mid-dark — for card headers */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', Menlo, monospace;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-2xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,18,25,0.08);
  --shadow-md: 0 4px 12px rgba(0,18,25,0.10);
  --shadow-lg: 0 8px 30px rgba(0,18,25,0.12);
  --shadow-electron: 0 4px 24px rgba(136,71,255,0.25);
  --shadow-electron-lg: 0 8px 48px rgba(136,71,255,0.35);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--rich-black);
  background: var(--off-white);
  line-height: 1.7;
}

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

a {
  color: var(--electron);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--photon); }

/* === TYPOGRAPHY =============================================== */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-family: var(--font-body); font-size: 1.25rem; font-weight: 600; line-height: 1.35; }
h5 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; line-height: 1.4; }

.kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--electron);
  display: block;
  margin-bottom: 0.5rem;
}
.kicker--cyan   { color: var(--dark-cyan); }
.kicker--photon { color: var(--photon); }

.overline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: var(--sp-sm);
}
.overline--electron { color: var(--electron); }
.overline--photon   { color: var(--photon); }

.lead {
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
  max-width: 600px;
}
.lead--light { color: rgba(247,245,240,0.65); }

p { max-width: 640px; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT =================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.section         { padding: var(--sp-5xl) 0; }
.section--sm     { padding: var(--sp-3xl) 0; }
.section--dark   { background: var(--rich-black); }
.section--white  { background: #ffffff; }
.section--off    { background: var(--off-white); }
.section--lab    { background: var(--deep-lab); }

/* === NAVIGATION =============================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,5,32,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(136,71,255,0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--vanilla);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__logo-sub {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--photon);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  list-style: none;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247,245,240,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--off-white); }
.nav__links a.nav__external { color: rgba(247,245,240,0.4); }
.nav__links a.nav__external:hover { color: var(--tiffany-blue); }

.nav__cta {
  padding: 7px 18px !important;
  background: var(--electron) !important;
  color: white !important;
  border-radius: var(--r-md) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(136,71,255,0.3) !important;
}
.nav__cta:hover {
  background: #7035E8 !important;
  color: white !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(136,71,255,0.45) !important;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--off-white);
  font-size: 1.25rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--deep-lab);
  padding: var(--sp-xl);
  flex-direction: column;
  gap: var(--sp-md);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(247,245,240,0.8);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }

/* === BUTTONS ================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--electron);
  color: white;
  box-shadow: var(--shadow-electron);
}
.btn--primary:hover {
  background: #7035E8;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-electron-lg);
}
.btn--secondary {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(247,245,240,0.2);
}
.btn--secondary:hover {
  background: rgba(247,245,240,0.06);
  color: var(--off-white);
  border-color: rgba(247,245,240,0.4);
}
.btn--outline-electron {
  background: transparent;
  color: var(--electron);
  border: 1.5px solid rgba(136,71,255,0.4);
}
.btn--outline-electron:hover {
  background: rgba(136,71,255,0.08);
  color: var(--electron);
  border-color: var(--electron);
}
.btn--outline-cyan {
  background: transparent;
  color: var(--dark-cyan);
  border: 1.5px solid rgba(10,147,150,0.4);
}
.btn--outline-cyan:hover {
  background: rgba(10,147,150,0.08);
  color: var(--dark-cyan);
  border-color: var(--dark-cyan);
}
.btn--sm { font-size: 0.8125rem; padding: 7px 16px; }
.btn--lg { font-size: 1.0625rem; padding: 15px 32px; }

/* === HERO ===================================================== */
.hero {
  min-height: 100vh;
  background: var(--deep-lab);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

/* Atmospheric glows */
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 55%; height: 130%;
  background: radial-gradient(ellipse, rgba(136,71,255,0.15) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 45%; height: 70%;
  background: radial-gradient(ellipse, rgba(10,147,150,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-3xl);
  align-items: center;
  padding: var(--sp-5xl) 0;
  position: relative;
  z-index: 1;
}

.hero__body {
  padding-left: var(--sp-xl);
  border-left: 1px solid var(--midnight-green);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--vanilla);
  line-height: 1.05;
  margin-bottom: var(--sp-lg);
}
.hero__title em { font-style: italic; color: var(--photon); }

.hero__lead {
  font-size: 1.1875rem;
  font-weight: 300;
  color: rgba(247,245,240,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp-2xl);
}

.hero__actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__visual svg {
  width: 340px;
  height: 340px;
  filter: drop-shadow(0 0 48px rgba(136,71,255,0.45));
}

/* === PAGE HERO (inner pages) ================================= */
.page-hero {
  background: var(--deep-lab);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 50%; height: 150%;
  background: radial-gradient(ellipse, rgba(136,71,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__kicker { margin-bottom: var(--sp-md); }
.page-hero__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--vanilla);
  margin-bottom: var(--sp-md);
}
.page-hero__lead {
  font-size: 1.1875rem;
  font-weight: 300;
  color: rgba(247,245,240,0.6);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
}
.page-hero__actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; }

/* === SECTION HEADERS ========================================= */
.section-header { margin-bottom: var(--sp-3xl); }
.section-header--centered { text-align: center; }
.section-header--centered .lead { margin: var(--sp-md) auto 0; }

/* === PRODUCT CARDS =========================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-xl);
}

.product-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-card__header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__header--electron {
  background: linear-gradient(135deg, var(--deep-lab) 0%, var(--lab-mid) 100%);
}
.product-card__header--cyan {
  background: linear-gradient(135deg, var(--rich-black) 0%, #002233 100%);
}
.product-card__header--lab {
  background: linear-gradient(135deg, #0E1A2B 0%, var(--midnight-green) 100%);
}
.product-card__header--placeholder {
  background: linear-gradient(135deg, #111 0%, #1e1e2e 100%);
}
.product-card__header--propose {
  background: transparent;
  border: 2px dashed rgba(136,71,255,0.25);
  border-radius: var(--r-xl);
}

.product-card__icon { width: 64px; height: 64px; opacity: 0.9; }

.product-card--ghost {
  background: transparent;
  box-shadow: none;
  border: 2px dashed rgba(136,71,255,0.2);
}
.product-card--ghost:hover {
  border-color: rgba(136,71,255,0.5);
  background: rgba(136,71,255,0.03);
}

.product-card__body {
  padding: var(--sp-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
  width: fit-content;
}
.tag--product     { background: rgba(136,71,255,0.1); color: var(--electron); }
.tag--experiment  { background: rgba(10,147,150,0.1);  color: var(--midnight-green); }
.tag--soon        { background: rgba(238,155,0,0.1);   color: var(--alloy-orange); }
.tag--idea        { background: rgba(90,107,115,0.1);  color: var(--slate); }
.tag--retired     { background: rgba(90,107,115,0.08); color: var(--slate); text-decoration: line-through; }
.tag--active      { background: rgba(34,197,94,0.1);   color: #16a34a; }
.tag--norwegian   { background: rgba(0,95,115,0.1);    color: var(--midnight-green); }

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: var(--sp-lg);
  flex: 1;
  max-width: none;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: var(--sp-md);
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
}
.status-dot__indicator {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--active   .status-dot__indicator { background: #22c55e; box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
.status-dot--building .status-dot__indicator { background: var(--gamboge); box-shadow: 0 0 0 2px rgba(238,155,0,0.2); }
.status-dot--planned  .status-dot__indicator { background: var(--slate); }

/* === CAPABILITIES ============================================ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}
.capability-item {
  padding: var(--sp-xl);
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,18,25,0.05);
  box-shadow: var(--shadow-sm);
}
.capability-item__icon {
  width: 40px; height: 40px;
  background: var(--lab-mist);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--electron);
}
.capability-item h4 { font-size: 1.0625rem; margin-bottom: var(--sp-sm); }
.capability-item p  { font-size: 0.9375rem; color: var(--slate); line-height: 1.65; max-width: none; margin: 0; }

/* === IDENTITY BAND =========================================== */
.identity-band {
  background: var(--rich-black);
  padding: var(--sp-4xl) 0;
  position: relative;
  overflow: hidden;
}
.identity-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--midnight-green);
}
.identity-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.identity-band__text .kicker { color: var(--dark-cyan); }
.identity-band__text h2 { color: var(--vanilla); margin-bottom: var(--sp-md); line-height: 1.2; }
.identity-band__text p { color: rgba(247,245,240,0.6); max-width: 480px; }
.identity-band__link {
  color: var(--tiffany-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: gap 0.2s, color 0.2s;
}
.identity-band__link:hover { gap: 10px; color: var(--vanilla); }
.identity-band__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === FEATURES GRID =========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}
.feature-item {
  padding: var(--sp-xl);
  border-left: 2px solid var(--electron);
  background: white;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.feature-item h4 { font-size: 1.0625rem; margin-bottom: var(--sp-sm); color: var(--rich-black); }
.feature-item p  { font-size: 0.9375rem; color: var(--slate); margin: 0; max-width: none; line-height: 1.65; }

/* === COLLAB / WORK WITH US =================================== */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}
.collab-card {
  padding: var(--sp-xl);
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid rgba(0,18,25,0.05);
  box-shadow: var(--shadow-sm);
}
.collab-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(136,71,255,0.12);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}
.collab-card h4 { font-size: 1.0625rem; margin-bottom: var(--sp-sm); color: var(--rich-black); }
.collab-card p  { font-size: 0.9375rem; color: var(--slate); margin: 0; max-width: none; line-height: 1.65; }

/* === CONTACT FORM ============================================ */
.contact-form {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-md);
  max-width: 640px;
}
.form-row { margin-bottom: var(--sp-lg); }
.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rich-black);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,18,25,0.12);
  border-radius: var(--r-md);
  background: var(--off-white);
  color: var(--rich-black);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--electron);
  background: white;
  box-shadow: 0 0 0 3px rgba(136,71,255,0.1);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(0,18,25,0.35); }

/* === FOOTER ================================================== */
.footer {
  background: #040011;
  padding: var(--sp-3xl) 0 var(--sp-xl);
  border-top: 1px solid rgba(136,71,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.footer__brand-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--vanilla);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__brand-sub {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  font-style: italic;
  color: var(--photon);
  margin: 2px 0 var(--sp-md);
  display: block;
  letter-spacing: 0.02em;
}
.footer__tagline { font-size: 0.875rem; color: rgba(247,245,240,0.4); line-height: 1.65; max-width: 260px; margin: 0; }
.footer__parent  { font-size: 0.8125rem; color: rgba(247,245,240,0.3); margin-top: var(--sp-sm); }
.footer__parent a { color: rgba(148,210,189,0.7); }
.footer__parent a:hover { color: var(--tiffany-blue); }

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.35);
  margin-bottom: var(--sp-md);
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: var(--sp-sm); }
.footer__col ul a { font-size: 0.875rem; color: rgba(247,245,240,0.5); transition: color 0.2s; }
.footer__col ul a:hover { color: var(--off-white); }

.footer__bottom {
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(247,245,240,0.25); margin: 0; max-width: none; }
.footer__bottom a { color: rgba(247,245,240,0.25); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--tiffany-blue); }

/* === STATUS BADGE ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge--building { background: rgba(238,155,0,0.12); color: var(--gamboge); border: 1px solid rgba(238,155,0,0.2); }
.badge--electron { background: rgba(136,71,255,0.12); color: var(--photon); border: 1px solid rgba(136,71,255,0.2); }
.badge--soon     { background: rgba(90,107,115,0.12); color: var(--slate); border: 1px solid rgba(90,107,115,0.2); }

/* === INLINE ICONS ============================================ */
.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { display: block; }

/* === UTILITIES =============================================== */
.text-center    { text-align: center; }
.text-vanilla   { color: var(--vanilla) !important; }
.text-electron  { color: var(--electron) !important; }
.text-photon    { color: var(--photon) !important; }
.text-cyan      { color: var(--dark-cyan) !important; }
.text-slate     { color: var(--slate) !important; }
.text-off       { color: var(--off-white) !important; }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mt-2xl { margin-top: var(--sp-2xl); }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }
.mb-2xl { margin-bottom: var(--sp-2xl); }

/* Decorative rule */
.rule-left {
  padding-left: var(--sp-xl);
  border-left: 1px solid var(--midnight-green);
}

/* Number stat */
.stat { margin-bottom: var(--sp-lg); }
.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--photon);
  line-height: 1;
}
.stat__label { font-size: 0.875rem; color: rgba(247,245,240,0.5); margin-top: 4px; }

/* === RESPONSIVE ============================================== */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 768px) {
  .hero__layout { padding: var(--sp-3xl) 0; }
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
  .identity-band__grid { grid-template-columns: 1fr; }
  .identity-band__visual { display: none; }
  .capability-grid { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
