/* Structura London — shared stylesheet
   Palette: steel/navy (construction) + teal accent (StructuraHub software) */

:root {
  --navy-950: #0b1220;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --steel-500: #64748b;
  --steel-300: #94a3b8;
  --steel-100: #e2e8f0;
  --steel-50: #f8fafc;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --amber-500: #f59e0b;
  --white: #ffffff;

  /* Brand accent - defaults to Structura London's red. The software pages
     override this to teal (StructuraHub's own colour) via [data-theme="teal"]. */
  --accent-600: #e42420;
  --accent-500: #ff312d;
  --accent-400: #ff6b63;
  --accent-glow: rgba(255, 49, 45, 0.35);

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.20);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ---------- Group identity system (homepage + shared) ---------- */
  --font-editorial: "Bricolage Grotesque", var(--font-display);
  --ink: #0a0a0b;
  --graphite-950: #101214;
  --graphite-900: #16181b;
  --graphite-800: #202327;
  --graphite-line: rgba(245, 242, 235, 0.14);
  --paper-100: #f7f4ee;
  --paper-200: #efe9dd;
  --paper-ink: #17181a;
  --paper-line: rgba(23, 24, 26, 0.1);
  --clay-600: #a63a2a;
  --clay-500: #c14a34;
}

/* The software pages use StructuraHub's own teal instead of the red brand accent. */
[data-theme="teal"] {
  --accent-600: var(--teal-600);
  --accent-500: var(--teal-500);
  --accent-400: var(--teal-400);
  --accent-glow: rgba(20, 184, 166, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv05" 1;
}

h1, h2, h3, .brand, .nav-cta, .btn {
  font-family: var(--font-display);
}
h1, h2.section-title, .page-hero h1 {
  font-family: var(--font-editorial);
  letter-spacing: -0.03em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 18, 32, 0.98);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding .3s ease;
}
.site-header.is-scrolled .nav { padding: 10px 0; }
.site-header.is-scrolled .brand-logo { transform: scale(0.92); }
.brand-logo { transition: transform .3s ease; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  background: var(--white);
  padding: 5px 9px;
  border-radius: 8px;
}

.brand small {
  display: block;
  font-weight: 500;
  font-size: 0.66rem;
  color: var(--steel-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.brand-tagline {
  display: flex;
  flex-direction: column;
}

.brand-tagline strong {
  font-size: 0.98rem;
  color: var(--white);
}

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

.nav-links a {
  color: var(--steel-100);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: var(--accent-400);
}

.nav-cta {
  background: var(--accent-500);
  color: var(--navy-950) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  border: none !important;
}
.nav-cta:hover { background: var(--accent-400); }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--navy-950);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 96px 0 84px;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 16s ease-out forwards;
}
.hero-bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,32,0.96) 0%, rgba(11,18,32,0.86) 38%, rgba(11,18,32,0.55) 68%, rgba(11,18,32,0.35) 100%),
    linear-gradient(180deg, rgba(11,18,32,0.2), rgba(11,18,32,0.55));
}

.hero .container { position: relative; z-index: 1; }

/* ---------- Entrance + scroll animations ---------- */
@keyframes heroZoom {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow,
.hero h1,
.hero p.lead,
.hero .btn-row,
.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  opacity: 0;
  animation: fadeUpIn .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero .eyebrow, .page-hero .eyebrow { animation-delay: .05s; }
.hero h1, .page-hero h1 { animation-delay: .16s; }
.hero p.lead, .page-hero p { animation-delay: .28s; }
.hero .btn-row { animation-delay: .4s; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo img { animation: none; }
  .hero .eyebrow, .hero h1, .hero p.lead, .hero .btn-row,
  .page-hero .eyebrow, .page-hero h1, .page-hero p { opacity: 1; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-400);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-400);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 0 22px;
}

.hero p.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--steel-300);
  max-width: 600px;
  margin: 0 0 36px;
  font-weight: 400;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.35), transparent 70%);
  transition: opacity .25s ease;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--accent-500);
  color: var(--white);
  box-shadow: 0 8px 24px -6px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-400);
  box-shadow: 0 14px 34px -6px var(--accent-glow);
}

.btn-ghost { background: rgba(255,255,255,0.04); color: var(--white); border-color: rgba(255,255,255,0.22); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.32); }

.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-800); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--steel-50); }
.section-dark { background: var(--navy-950); color: var(--white); }

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  display: inline-block;
}
.section-dark .kicker { color: var(--accent-400); }

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 640px;
}

p.section-sub {
  color: var(--steel-500);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 48px;
}
.section-dark p.section-sub { color: var(--steel-300); }

/* ---------- Pillar cards (home page) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
  border: 1px solid transparent;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.pillar-card:hover .pillar-icon { transform: scale(1.1) rotate(-4deg); }
.pillar-icon.rail { background: rgba(51,65,85,0.08); color: var(--navy-700); border-color: rgba(51,65,85,0.12); }
.pillar-icon.clean { background: rgba(245,158,11,0.1); color: var(--amber-500); border-color: rgba(245,158,11,0.2); }
.pillar-icon.soft { background: rgba(20,184,166,0.1); color: var(--teal-600); border-color: rgba(20,184,166,0.2); }

.pillar-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; }
.pillar-card p { color: var(--steel-500); font-size: 0.96rem; line-height: 1.55; margin: 0 0 22px; flex-grow: 1; }
.pillar-card .link-arrow { font-weight: 700; font-size: 0.88rem; color: var(--navy-900); transition: color .2s ease, gap .2s ease; }
.pillar-card:hover .link-arrow { color: var(--accent-600); }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.section-dark .feature-card {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .feature-card:hover { border-color: rgba(255,255,255,0.18); }
.feature-card h4 { font-family: var(--font-display); margin: 0 0 8px; font-size: 1.04rem; font-weight: 700; letter-spacing: -0.01em; }
.feature-card p { margin: 0; color: var(--steel-500); font-size: 0.91rem; line-height: 1.55; }
.section-dark .feature-card p { color: var(--steel-300); }

.feature-num {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(20,184,166,0.12);
  color: var(--teal-600);
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  font-family: var(--font-display);
  margin-bottom: 16px;
}

/* ---------- Service list rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--steel-100);
}
.service-row:last-child { border-bottom: none; }
@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; gap: 10px; }
}
.service-row h3 { font-family: var(--font-display); margin: 0; font-size: 1.22rem; font-weight: 800; letter-spacing: -0.01em; }
.service-row .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.service-row p { margin: 0; color: var(--steel-500); line-height: 1.6; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
}
.testimonial blockquote {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 20px;
  font-weight: 500;
}
.testimonial cite {
  font-style: normal;
  color: var(--accent-400);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- App mockup (fake demo data, no real screenshots) ---------- */
.app-mock {
  position: relative;
  background: var(--navy-900);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 80px -20px var(--accent-glow);
  border: 1px solid rgba(255,255,255,0.08);
}
.app-mock-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
}
.app-mock-titlebar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--steel-700, #475569);
}
.app-mock-titlebar span:nth-child(1) { background: #ef4444; }
.app-mock-titlebar span:nth-child(2) { background: #f59e0b; }
.app-mock-titlebar span:nth-child(3) { background: #22c55e; }

.app-mock-body {
  background: var(--steel-50);
  border-radius: 10px;
  padding: 20px;
  color: var(--navy-800);
}

.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
@media (max-width: 640px) { .mock-kpis { grid-template-columns: repeat(2, 1fr); } }
.mock-kpi {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: 8px;
  padding: 12px;
}
.mock-kpi .label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel-500); margin-bottom: 6px; }
.mock-kpi .value { font-size: 1.25rem; font-weight: 800; color: var(--navy-900); }
.mock-kpi .value.teal { color: var(--teal-600); }
.mock-kpi .value.amber { color: var(--amber-500); }
.mock-kpi .value.red { color: #dc2626; }

.mock-panel {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.mock-panel h5 { margin: 0 0 10px; font-size: 0.85rem; color: var(--navy-700); }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid var(--steel-100);
  font-size: 0.82rem;
}
.mock-row:first-of-type { border-top: none; }
.mock-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.mock-pill.ok { background: rgba(34,197,94,0.12); color: #16a34a; }
.mock-pill.warn { background: rgba(245,158,11,0.14); color: #b45309; }
.mock-pill.bad { background: rgba(239,68,68,0.12); color: #dc2626; }

.demo-note {
  font-size: 0.72rem;
  color: var(--steel-500);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid-5 { grid-template-columns: 1fr; } }

/* ---------- Photo strip / gallery ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.photo-strip img:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); }
@media (max-width: 760px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 220px; }
}

.photo-strip-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.photo-strip-2 img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.photo-strip-2 img:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
@media (max-width: 760px) {
  .photo-strip-2 { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(600px 300px at 50% -20%, var(--accent-glow), transparent 70%);
  opacity: 0.7;
}
.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-band p { color: var(--steel-300); margin: 0 0 30px; font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,49,45,0.1); color: var(--accent-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid rgba(255,49,45,0.16);
}
.contact-item h4 { font-family: var(--font-display); margin: 0 0 4px; font-size: 0.96rem; font-weight: 700; }
.contact-item p, .contact-item a { margin: 0; color: var(--steel-500); font-size: 0.93rem; transition: color .15s ease; }
.contact-item a:hover { color: var(--accent-600); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--steel-300);
  padding: 48px 0 28px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: var(--font-display); color: var(--white); font-size: 0.82rem; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a:hover { color: var(--accent-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--steel-500);
}

/* ---------- Page hero (sub-pages, smaller than home hero) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 64px 0 56px;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 780px;
}
.page-hero p { color: var(--steel-300); max-width: 600px; font-size: 1.08rem; line-height: 1.6; margin: 0; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.badge {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--steel-100);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}
