/* ============================================================
   QURIA SOLUTIONS — Shared Stylesheet
   The Metallic Orchid Design System
   Technology that grows. Intelligence that blooms.
   ============================================================ */

/* ---------- 1. CSS Custom Properties ---------- */

:root {
  --bg-primary: #080808;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;

  --accent: #E8590C;
  --accent-dim: rgba(232, 89, 12, 0.1);
  --accent-glow: rgba(232, 89, 12, 0.25);
  --accent-glow-strong: rgba(232, 89, 12, 0.45);

  --silver: #c0c0c0;
  --silver-mid: #8a8a8a;
  --silver-dim: #4a4a4a;

  --text-primary: #f0f0f0;
  --text-secondary: #9a9a9a;
  --text-muted: #555555;

  --border-subtle: rgba(192, 192, 192, 0.07);
  --border-silver: rgba(192, 192, 192, 0.14);
  --border-orange: rgba(232, 89, 12, 0.28);

  --radius-card: 12px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;
  --gutter: 48px;
}

/* ---------- 2. Reset / Base ---------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(232,89,12,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(192,192,192,0.025) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Ccircle cx='24' cy='24' r='0.6' fill='rgba(192,192,192,0.12)'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

/* ---------- 3. Typography ---------- */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.h-hero {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 9vw, 108px);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.h-section {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.h-card {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--text-primary);
}

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.body-large { font-size: clamp(17px, 1.6vw, 20px); color: var(--silver); }
.body-muted { color: var(--text-secondary); }
.body-small { font-size: 14px; color: var(--text-muted); }

.accent-text { color: var(--accent); }
.silver-text { color: var(--silver); }
.text-white { color: var(--text-primary); }

/* ---------- 4. Layout ---------- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
  padding: 120px 0;
}

section.tight { padding: 80px 0; }
section.flush-top { padding-top: 0; }

/* ---------- 5. Section Label (orange line + uppercase) ---------- */

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ---------- 6. Section Divider (silver rule + orchid icon) ---------- */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,192,192,0.35), transparent);
}
.section-divider .orchid-mini {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ---------- 7. Buttons ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: orange-pulse 2.5s ease infinite;
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn-primary:active { transform: scale(0.99); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border-silver);
  padding: 13px 34px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(232,89,12,0.15);
}

.btn-small {
  padding: 9px 20px;
  font-size: 13px;
  animation: none;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes orange-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,89,12,0.5), 0 4px 20px rgba(232,89,12,0.2); }
  50%      { box-shadow: 0 0 0 10px rgba(232,89,12,0), 0 4px 20px rgba(232,89,12,0.3); }
}

/* ---------- 8. Navigation ---------- */

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: nav-fade-in 0.5s ease forwards 0.4s;
}

@keyframes nav-fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand .orchid { width: 28px; height: 28px; }
.nav-brand .wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-mid);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--text-primary); border-bottom-color: var(--accent); }

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--silver);
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle svg { width: 22px; height: 22px; }

/* ---------- 9. Feature Card ---------- */

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--silver-mid), transparent) 1;
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(232, 89, 12, 0.08);
}

.card .h-card { margin-bottom: 10px; }
.card .card-body { color: var(--text-secondary); font-size: 15px; line-height: 1.65; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card-grid.two-col { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
.card-grid.three-col { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* Card with icon/number badge */
.card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---------- 10a. SMS message display (single-bubble, for legal/compliance pages) ---------- */

.sms-message-display {
  margin: 32px 0;
  max-width: 560px;
}
.sms-message-display .sms-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---------- 10. SMS Conversation Component ---------- */

.sms-conv {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-silver);
  border-radius: 16px;
}

.sms-bubble {
  position: relative;
  max-width: 82%;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}

.sms-bubble .sms-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Manager (right-aligned) */
.sms-bubble.from-manager {
  align-self: flex-end;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  color: var(--text-primary);
  border-bottom-right-radius: 4px;
}
.sms-bubble.from-manager .sms-label { color: var(--silver-mid); }

/* Aegis (left-aligned) */
.sms-bubble.from-aegis {
  align-self: flex-start;
  background: rgba(232, 89, 12, 0.10);
  border: 1px solid var(--border-orange);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

/* ---------- 11. Two-column comparison ---------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}
.compare-grid .compare-col {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-card);
}
.compare-grid .compare-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin: 0 0 16px;
}
.compare-grid .compare-col.is-yours h4 { color: var(--silver); }
.compare-grid .compare-col.is-aegis h4 { color: var(--accent); }
.compare-grid .compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-grid .compare-col li {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--text-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-grid .compare-col li:last-child { border-bottom: none; }

.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-orange);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: rgba(232, 89, 12, 0.06);
}

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ---------- 12. Personality / callout block ---------- */

.callout {
  position: relative;
  padding: 28px 32px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  margin: 32px 0;
}
.callout p { margin: 0; color: var(--text-primary); }

/* ---------- 13. Orchid SVG — Sizing + Animation ---------- */

.orchid {
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.orchid-700 { width: 700px; height: 700px; }
.orchid-240 { width: 240px; height: 240px; }
.orchid-32  { width: 32px; height: 32px; }
.orchid-28  { width: 28px; height: 28px; }

.brand-orchid-accent {
  width: 240px;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}
@media (max-width: 1024px) {
  .brand-orchid-accent {
    width: 180px;
    margin: 0 auto;
  }
}

.nav-brand img.brand-mark-nav {
  display: inline-block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}

.footer-brand img.brand-mark-footer {
  display: inline-block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}

/* Static (default) — petals visible at their rotations */
.orchid .petal { transform-origin: 100px 100px; }
.orchid .petal-1 { transform: rotate(0deg); }
.orchid .petal-2 { transform: rotate(60deg); }
.orchid .petal-3 { transform: rotate(120deg); }
.orchid .petal-4 { transform: rotate(180deg); }
.orchid .petal-5 { transform: rotate(240deg); }
.orchid .petal-6 { transform: rotate(300deg); }

/* Static — veins visible */
.orchid .vein { stroke-dasharray: 1; stroke-dashoffset: 0; }
.orchid .vein-dot { opacity: 1; transform-origin: center; transform-box: fill-box; }

/* Spin variant (hero background) */
.orchid.spin {
  animation: orchid-spin 80s linear infinite;
  transform-origin: center;
}
@keyframes orchid-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Bloom variant — petals collapsed until triggered */
.orchid.bloom .petal { opacity: 0; }
.orchid.bloom .petal-1 { transform: rotate(-30deg) scale(0); }
.orchid.bloom .petal-2 { transform: rotate(30deg) scale(0); }
.orchid.bloom .petal-3 { transform: rotate(90deg) scale(0); }
.orchid.bloom .petal-4 { transform: rotate(150deg) scale(0); }
.orchid.bloom .petal-5 { transform: rotate(210deg) scale(0); }
.orchid.bloom .petal-6 { transform: rotate(270deg) scale(0); }
.orchid.bloom .vein { stroke-dashoffset: 1; }
.orchid.bloom .vein-dot { opacity: 0; transform: scale(0); transform-origin: center; transform-box: fill-box; }
.orchid.bloom .stamens { opacity: 0; }

/* Bloom triggered (class added by IntersectionObserver) */
.orchid.bloom.orchid-bloomed .petal-1 { animation: petal-bloom-1 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.00s; }
.orchid.bloom.orchid-bloomed .petal-2 { animation: petal-bloom-2 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.15s; }
.orchid.bloom.orchid-bloomed .petal-3 { animation: petal-bloom-3 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.30s; }
.orchid.bloom.orchid-bloomed .petal-4 { animation: petal-bloom-4 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.45s; }
.orchid.bloom.orchid-bloomed .petal-5 { animation: petal-bloom-5 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.60s; }
.orchid.bloom.orchid-bloomed .petal-6 { animation: petal-bloom-6 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.75s; }
.orchid.bloom.orchid-bloomed .vein {
  animation: vein-draw 1.0s ease forwards 1.4s;
}
.orchid.bloom.orchid-bloomed .vein-dot {
  animation: dot-glow 0.4s ease forwards 2.2s;
}
.orchid.bloom.orchid-bloomed .stamens {
  animation: fade-in 0.5s ease forwards 1.0s;
}

@keyframes petal-bloom-1 { from { transform: rotate(-30deg) scale(0); opacity: 0; } to { transform: rotate(0deg)   scale(1); opacity: 1; } }
@keyframes petal-bloom-2 { from { transform: rotate(30deg)  scale(0); opacity: 0; } to { transform: rotate(60deg)  scale(1); opacity: 1; } }
@keyframes petal-bloom-3 { from { transform: rotate(90deg)  scale(0); opacity: 0; } to { transform: rotate(120deg) scale(1); opacity: 1; } }
@keyframes petal-bloom-4 { from { transform: rotate(150deg) scale(0); opacity: 0; } to { transform: rotate(180deg) scale(1); opacity: 1; } }
@keyframes petal-bloom-5 { from { transform: rotate(210deg) scale(0); opacity: 0; } to { transform: rotate(240deg) scale(1); opacity: 1; } }
@keyframes petal-bloom-6 { from { transform: rotate(270deg) scale(0); opacity: 0; } to { transform: rotate(300deg) scale(1); opacity: 1; } }

@keyframes vein-draw {
  from { stroke-dashoffset: 1; }
  to   { stroke-dashoffset: 0; }
}
@keyframes dot-glow {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- 14. Scroll Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ---------- 15. Hero Stagger (page-load sequence) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: fade-in 0.8s ease forwards 0s;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 78%, rgba(232,89,12,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 82% 22%, rgba(192,192,192,0.04) 0%, transparent 60%);
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: slide-up 0.4s ease forwards 0.7s;
}
.hero-line-1 {
  opacity: 0;
  transform: translateY(-12px);
  animation: drop-in 0.6s cubic-bezier(0.4,0,0.2,1) forwards 0.9s;
}
.hero-line-2 {
  opacity: 0;
  transform: translateY(-12px);
  animation: drop-in 0.6s cubic-bezier(0.4,0,0.2,1) forwards 1.1s;
}
.hero-copy {
  opacity: 0;
  transform: translateY(12px);
  animation: slide-up 0.5s ease forwards 1.3s;
}
.hero-tease {
  opacity: 0;
  animation: fade-in 0.5s ease forwards 1.45s;
}
.hero-ctas {
  opacity: 0;
  transform: translateY(12px);
  animation: slide-up 0.4s ease forwards 1.5s;
}
.hero-scroll-cue {
  opacity: 0;
  animation: fade-in 0.3s ease forwards 1.8s, scroll-bounce 2s ease infinite 2.1s;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drop-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-cue svg { width: 14px; height: 14px; opacity: 0.6; }

/* ---------- 16. Footer ---------- */

footer.site-footer {
  position: relative;
  margin-top: 80px;
  padding: 56px 0 32px;
  border-top: 2px solid var(--accent);
  background: var(--bg-primary);
}
footer.site-footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-mid);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--accent); }

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta a { color: var(--silver-mid); }
.footer-meta a:hover { color: var(--accent); }

/* ---------- 17. Legal page styling ---------- */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 80px;
}
.legal-page .legal-accent {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
}
.legal-page h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.legal-page .legal-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.legal-page .legal-org {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--silver-mid);
  margin-bottom: 56px;
}
.legal-page h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  margin: 40px 0 12px;
  color: var(--text-primary);
}
.legal-page p {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.legal-page p strong { color: var(--text-primary); font-weight: 500; }
.legal-page ul, .legal-page ol { color: var(--text-secondary); line-height: 1.8; padding-left: 22px; }
.legal-page a { color: var(--accent); }
.legal-page a:hover { text-decoration: underline; }

/* ---------- 18. Aegis logo treatment (mix-blend) ---------- */

.aegis-logo {
  mix-blend-mode: screen;
  filter: contrast(1.05);
}

/* ---------- 19. "Coming soon" doppelgänger placeholders ---------- */

.doppel-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
.doppel-row::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-silver) 15%, var(--border-silver) 85%, transparent);
  top: 50px;
  z-index: 0;
  pointer-events: none;
}
.doppel-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  z-index: 1;
}
.doppel-item .doppel-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: 50%;
  overflow: hidden;
}
.doppel-item .doppel-img.live {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(232, 89, 12, 0.18);
}
.doppel-item .doppel-img img { width: 70px; height: 70px; }
.doppel-item .doppel-img.coming { opacity: 0.5; }
.doppel-item .doppel-img.coming .orchid { opacity: 0.3; }
.doppel-item .doppel-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-mid);
}
.doppel-item .doppel-label.live { color: var(--accent); }
.doppel-item .doppel-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
}
.doppel-item .doppel-name.coming { color: var(--text-muted); }

@media (max-width: 768px) {
  .doppel-row { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .doppel-row::before { display: none; }
}

/* ---------- 20. Accordion (Aegis capabilities list) ---------- */

.accordion { border-top: 1px solid var(--border-subtle); }
.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}
.accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
  gap: 16px;
}
.accordion-summary::-webkit-details-marker { display: none; }
.accordion-summary .acc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  width: 28px;
  flex-shrink: 0;
}
.accordion-summary .acc-title {
  flex: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 0.005em;
}
.accordion-summary .acc-icon {
  width: 18px;
  height: 18px;
  color: var(--silver-mid);
  transition: transform 0.3s ease, color var(--transition-fast);
  flex-shrink: 0;
}
details[open] .acc-icon { transform: rotate(45deg); color: var(--accent); }
.accordion-summary:hover .acc-title { color: var(--accent); }
.accordion-body {
  padding: 0 4px 24px 36px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

/* ---------- 21. Tier visual (3 permission levels) ---------- */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tier {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-top: 3px solid var(--silver-mid);
  border-radius: var(--radius-card);
}
.tier.tier-manager { border-top-color: var(--silver); }
.tier.tier-employee { border-top-color: var(--silver-dim); }
.tier.tier-quria { border-top-color: var(--accent); }
.tier .tier-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 8px;
}
.tier.tier-quria .tier-label { color: var(--accent); }
.tier .tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.tier .tier-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

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

/* ---------- 22. Home-page specific components ---------- */

/* Problem section — 2-col with text + bloom orchid */
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .problem-grid .orchid-trigger { justify-self: center; }
}

.pain-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pain-point {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--border-subtle);
  transition: border-color 0.5s ease;
}
.pain-point.revealed { border-left-color: var(--accent); }

/* Solution section — 2-col with text + bloom orchid (mirror of problem) */
.solution-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .solution-layout { grid-template-columns: 1fr; gap: 32px; }
  .solution-layout .orchid-trigger { justify-self: center; order: -1; }
}

/* Aegis spotlight — Section 4 */
.aegis-spotlight-header {
  text-align: center;
  margin-bottom: 56px;
}
.aegis-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: block;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}
.aegis-mark-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
}

/* Vision section — Section 5 — full-width, watermark, top inset glow */
.vision-section {
  position: relative;
  padding: 140px 0;
  background: var(--bg-surface);
  border-top: 1px solid rgba(232, 89, 12, 0.18);
  box-shadow: inset 0 60px 80px -40px rgba(232, 89, 12, 0.18);
  overflow: hidden;
}
.vision-section .vision-watermark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.vision-section .container { position: relative; z-index: 1; }

.big-headline {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.big-headline.size-72 { font-size: clamp(48px, 7vw, 72px); }
.big-headline.size-80 { font-size: clamp(52px, 8vw, 80px); }

/* CTA Close — Section 7 */
.cta-close {
  position: relative;
  text-align: center;
  padding: 140px 0;
  overflow: hidden;
}
.cta-close .cta-bg-orchid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.cta-close .container { position: relative; z-index: 1; }
.cta-close .cta-headline { margin-bottom: 20px; }
.cta-close .cta-sub { color: var(--silver); margin-bottom: 48px; font-size: 19px; }
.cta-close .cta-secondary {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 14px;
}
.cta-close .cta-secondary a { color: var(--silver); border-bottom: 1px solid var(--border-silver); }
.cta-close .cta-secondary a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 768px) {
  .vision-section { padding: 96px 0; }
  .vision-section .vision-watermark { width: 480px; height: 480px; right: -200px; }
  .cta-close { padding: 96px 0; }
  .cta-close .cta-bg-orchid { width: 500px; height: 500px; }
}

/* ---------- 22b. Aegis page-specific components ---------- */

/* Aegis page hero — centered, with backing orchid */
.aegis-hero {
  position: relative;
  text-align: center;
  padding: 120px 0 96px;
  overflow: hidden;
}
.aegis-hero .aegis-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.aegis-hero .container { position: relative; z-index: 1; }

.aegis-mark-large {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  display: block;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}
.aegis-mark-line-large {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

/* Is / Is-Not 2-column comparison */
.isnt-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.isnt-col, .is-col {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-card);
}
.isnt-col { border-top: 2px solid var(--silver-dim); }
.is-col { border-top: 2px solid var(--accent); }
.isnt-col .col-header,
.is-col .col-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.isnt-col .col-header { color: var(--silver-mid); }
.is-col .col-header { color: var(--accent); }
.isnt-col ul, .is-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.isnt-col li, .is-col li {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.005em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.isnt-col li:last-child, .is-col li:last-child { border-bottom: none; }
.isnt-col li { color: var(--silver-mid); }
.is-col li { color: var(--text-primary); }
.isnt-col li::before {
  content: '✕';
  color: var(--silver-dim);
  font-size: 13px;
  flex-shrink: 0;
}
.is-col li::before {
  content: '→';
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .isnt-is-grid { grid-template-columns: 1fr; gap: 16px; }
  .isnt-col, .is-col { padding: 24px; }
  .isnt-col li, .is-col li { font-size: 16px; }
}

/* Accordion section with side bloom orchid */
.accordion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .accordion-layout { grid-template-columns: 1fr; gap: 32px; }
  .accordion-layout .orchid-trigger { display: none; }
}

/* Closing CTA section (Aegis + Homebase pages) */
.closing-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}
.closing-cta .closing-orchid {
  position: absolute;
  top: 50%;
  right: -180px;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.closing-cta .container { position: relative; z-index: 1; }
.closing-cta .closing-headline { margin-bottom: 20px; }
.closing-cta .closing-sub {
  color: var(--silver);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .closing-cta { padding: 96px 0; }
  .closing-cta .closing-orchid { width: 360px; height: 360px; right: -180px; }
}

/* ---------- 22c. Homebase page-specific components ---------- */

/* Homebase hero — left-aligned with offset orchid */
.hb-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hb-hero .hb-hero-orchid {
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.hb-hero .container { position: relative; z-index: 1; }
.hb-hero h1 {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.hb-hero .hb-tag {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 16px 0 24px;
}
.hb-hero h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  max-width: 820px;
}

@media (max-width: 768px) {
  .hb-hero { padding: 80px 0 56px; }
  .hb-hero .hb-hero-orchid { width: 420px; height: 420px; right: -180px; opacity: 0.05; }
}

/* Relation grid — Homebase | Aegis comparison table */
.relation-grid {
  margin-top: 48px;
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
}
.relation-header,
.relation-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.relation-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-silver);
}
.relation-row:not(:last-child) {
  border-bottom: 1px solid var(--border-subtle);
}
.rel-header-cell {
  padding: 18px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rel-header-cell:first-child { color: var(--silver); }
.rel-header-cell:last-child {
  color: var(--accent);
  border-left: 1px solid var(--border-silver);
}
.rel-cell {
  padding: 20px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
}
.rel-cell:first-child {
  color: var(--silver);
  border-right: 1px solid var(--border-subtle);
}
.rel-cell:last-child {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .relation-header { display: none; }
  .relation-row { grid-template-columns: 1fr; }
  .rel-cell { padding: 16px 22px; border-right: none !important; font-size: 16px; }
  .rel-cell:first-child {
    border-bottom: 1px dashed var(--border-subtle);
    padding-bottom: 4px;
  }
  .rel-cell::before {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .rel-cell:first-child::before { content: 'Homebase'; color: var(--silver-mid); }
  .rel-cell:last-child::before { content: 'Aegis'; color: var(--accent); padding-top: 4px; }
}

/* Icon card — used for 6 platform areas */
.icon-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--silver-mid), transparent) 1;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.icon-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(232, 89, 12, 0.08);
}
.icon-card .ic-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.9;
}
.icon-card .ic-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 4px;
}
.icon-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  margin: 0 0 12px;
  letter-spacing: 0.005em;
}
.icon-card .ic-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* 2-column comparison (used for Soteria vs Aegis) */
.compare-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.compare-2col .col {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-card);
}
.compare-2col .col.left { border-top: 2px solid var(--silver-mid); }
.compare-2col .col.right { border-top: 2px solid var(--accent); }
.compare-2col .col .col-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.compare-2col .col.left .col-eyebrow { color: var(--silver-mid); }
.compare-2col .col.right .col-eyebrow { color: var(--accent); }
.compare-2col .col .col-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--text-primary);
  margin: 0 0 20px;
  letter-spacing: 0.005em;
}
.compare-2col .col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-2col .col li {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.5;
}
.compare-2col .col li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .compare-2col { grid-template-columns: 1fr; gap: 16px; }
  .compare-2col .col { padding: 24px; }
}

/* ---------- 22d. Services page-specific components ---------- */

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--silver-mid), transparent) 1;
  border-radius: var(--radius-card);
  padding: 48px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 24px;
}
.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(232, 89, 12, 0.08);
}
.service-card .service-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-card .service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 20px;
  letter-spacing: 0.005em;
}
.service-card .service-lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 0 16px;
}
.service-card .service-includes {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-surface);
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}
.service-card .service-includes .includes-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.service-card .service-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card .service-includes li {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-primary);
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  line-height: 1.5;
}
.service-card .service-includes li:last-child { border-bottom: none; }
.service-card .service-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-weight: 500;
}
.service-card .service-best-for {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin: 24px 0 0;
}
.service-card.brief {
  padding: 40px;
}
.service-card.brief .service-title {
  font-size: clamp(22px, 2.6vw, 28px);
}
.service-card.brief .service-lead {
  font-size: 16px;
}

@media (max-width: 768px) {
  .service-card { padding: 32px 24px; }
  .service-card.brief { padding: 28px 24px; }
  .service-card .service-includes { padding: 20px 22px; }
}

/* ---------- 23. Responsive breakpoints ---------- */

@media (max-width: 1280px) {
  :root { --gutter: 36px; }
  .orchid-700 { width: 560px; height: 560px; }
}

@media (max-width: 1024px) {
  section { padding: 96px 0; }
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 12px; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; }
  section { padding: 80px 0; }
  .h-section { font-size: 36px; }
  .h-card { font-size: 20px; }

  nav.site-nav { padding: 0 24px; height: 60px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-brand .wordmark { font-size: 13px; }

  .orchid-700 { width: 340px; height: 340px; }
  .orchid-240 { width: 160px; height: 160px; }

  footer.site-footer .container { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; }

  .card { padding: 22px; }
  .card-grid { gap: 16px; }
  .card-grid.two-col { grid-template-columns: 1fr; }
  .card-grid.three-col { grid-template-columns: 1fr; }

  .sms-conv { padding: 20px; }
  .sms-bubble { font-size: 14px; }

  .btn-primary, .btn-secondary { padding: 12px 26px; font-size: 14px; }

  .legal-page { padding: 64px 20px 64px; }
  .legal-page h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  .h-hero { font-size: 54px; line-height: 0.95; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; }
}

/* ---------- 23. Utility ---------- */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-72 { margin-top: 72px; }
.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.max-720 { max-width: 720px; }
.max-820 { max-width: 820px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.relative { position: relative; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orchid.bloom .petal { opacity: 1; transform: rotate(var(--base, 0deg)) scale(1); }
  .orchid.bloom .vein { stroke-dashoffset: 0; }
  .orchid.bloom .vein-dot,
  .orchid.bloom .stamens { opacity: 1; }
}
