/* ────────────────────────────────────────────────────────────
   Surity360 Marketing Site — styles.css
   surity360.com.au
   Dark, Palantir-inspired. Inter font.
──────────────────────────────────────────────────────────── */

:root {
  --bg:          #080b10;
  --bg2:         #0c1018;
  --panel:       #111827;
  --card:        #141c28;
  --card-hover:  #1b2537;
  --border:      #1e2d3f;
  --border-hi:   #2c4060;

  --text:        #dde1e7;
  --text-muted:  #8d96a3;
  --text-faint:  #545f6e;
  --heading:     #f0f3f7;

  --teal:        #4eecc8;
  --teal-dim:    rgba(78, 236, 200, .14);
  --teal-glow:   rgba(78, 236, 200, .08);
  --blue:        #6aa7ff;
  --blue-dim:    rgba(106, 167, 255, .12);

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Apple-grade focus ring on every interactive element */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.feature-card:focus-visible,
.problem-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Tabular numerals for any stacked figures */
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ── Utilities ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.teal { color: var(--teal); }
.blue { color: var(--blue); }
.muted { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease-out, border-color .2s ease-out, color .2s ease-out, transform .15s ease-out, box-shadow .25s ease-out;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: scale(0.97); transition-duration: .08s; }
.btn-primary {
  background: var(--teal);
  color: #06120e;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: #62f0d0;
  border-color: #62f0d0;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(78, 236, 200, .22);
}
.btn-primary:active { transform: scale(0.97); box-shadow: none; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn-secondary:hover {
  border-color: var(--text);
  color: var(--heading);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding: .7rem .75rem;
}
.btn-ghost:hover { color: var(--heading); text-decoration: none; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 16, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: color .2s ease-out;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--heading); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-cta { font-size: 13px; padding: 10px 18px; min-height: 40px; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(78, 236, 200, .08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(106, 167, 255, .06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .25;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(78, 236, 200, .3);
  border-radius: 99px;
  padding: .35rem .9rem;
  margin-bottom: 1.75rem;
  background: var(--teal-glow);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-actions .btn { font-size: 1rem; padding: .85rem 1.8rem; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.hero-stat {
  flex: 1;
  min-width: 150px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: .4rem;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.hero-stat-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ── System Connector ── */
.connector-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.connector-section .section-title { text-align: center; }
.connector-section .section-sub { margin: 0 auto 3rem; text-align: center; }

/* ── Problem Section ── */
.problem-section {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-section .section-title { margin-bottom: .75rem; }
.problem-section .section-sub { margin-bottom: 2.5rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .2s;
}
.problem-card:hover { border-color: var(--border-hi); }
.problem-feel {
  font-size: .85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: .6rem;
  line-height: 1.4;
  font-style: italic;
}
.problem-feel::before {
  content: '"';
  color: var(--text-faint);
}
.problem-feel::after {
  content: '"';
  color: var(--text-faint);
}
.problem-reality {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: .6rem;
  border-top: 1px solid var(--border);
}

/* ── Features Section ── */
.features-section {
  padding: 5rem 0;
}
.features-section .section-title { margin-bottom: .75rem; }
.features-section .section-sub { margin-bottom: 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.feature-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-dim);
  border: 1px solid rgba(78, 236, 200, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}
.feature-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.feature-metric {
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
  padding: .3rem .65rem;
  background: var(--teal-glow);
  border: 1px solid rgba(78, 236, 200, .2);
  border-radius: 99px;
  align-self: flex-start;
}

/* ── Safety Section ── */
.safety-section {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.safety-risks h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}
.risk-item {
  display: flex;
  gap: .85rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.risk-item:first-of-type { border-top: 1px solid var(--border); }
.risk-number {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-faint);
  min-width: 22px;
  padding-top: .1rem;
}
.risk-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: .25rem;
}
.risk-cost {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.safety-reasons h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.reason-item:first-of-type { border-top: 1px solid var(--border); }
.reason-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(78, 236, 200, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.reason-check svg { width: 11px; height: 11px; }
.reason-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: .2rem;
}
.reason-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Pilot Steps ── */
.pilot-section {
  padding: 5rem 0;
}
.pilot-section .section-title { text-align: center; margin-bottom: .75rem; }
.pilot-section .section-sub { text-align: center; margin: 0 auto 3rem; }
.pilot-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.pilot-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--blue));
  z-index: 0;
}
.pilot-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.pilot-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.pilot-step-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.pilot-step-time {
  font-size: .75rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: .35rem;
}
.pilot-step-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.pilot-total {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
.pilot-total-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.pilot-total-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
}
.pilot-total-value span { color: var(--teal); }

/* ── FAQ ── */
.faq-section {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-section .section-title { margin-bottom: 2rem; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 2.5rem;
  align-items: start;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  font-size: .92rem;
  font-weight: 600;
  color: var(--heading);
  padding: 1rem 0 1rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  list-style: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--teal);
}
.faq-item p {
  font-size: .85rem;
  color: var(--text-muted);
  padding-bottom: 1rem;
  line-height: 1.7;
}

/* ── Why Now ── */
.why-now-section {
  padding: 5rem 0;
}
.why-now-section .section-title { margin-bottom: .75rem; }
.why-now-section .section-sub { margin-bottom: 2.5rem; }
.why-now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--blue));
}
.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border-hi);
  line-height: 1;
  margin-bottom: .75rem;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .5rem;
}
.why-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Final CTA ── */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(78, 236, 200, .07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 span { color: var(--teal); }
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-actions .btn { font-size: 1.05rem; padding: .9rem 2rem; }
.cta-fine {
  font-size: .8rem;
  color: var(--text-faint);
}
.cta-fine a { color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .78rem;
  color: var(--text-faint);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: .78rem;
  color: var(--text-faint);
  transition: color .15s;
}
.footer-links a:hover { color: var(--text-muted); text-decoration: none; }
.footer-badge {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: .06em;
  border: 1px solid var(--border);
  padding: .25rem .6rem;
  border-radius: 4px;
}

/* ── Responsive ── */
/* ── Above / Below the Line ── */
.line-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.line-section .section-title { margin-bottom: .75rem; }
.line-section .section-sub { margin-bottom: 2.5rem; }
.line-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.line-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.line-card-above {
  border-color: rgba(78, 236, 200, .3);
  background: linear-gradient(135deg, var(--card), rgba(78,236,200,.04));
}
.line-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.line-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
}
.line-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.line-list li {
  font-size: .87rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.line-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-faint);
}
.line-quote {
  font-size: .82rem;
  color: var(--text-faint);
  font-style: italic;
  border-left: 2px solid rgba(78,236,200,.3);
  padding-left: .85rem;
}

/* ── System of Responsibility ── */
.sor-section {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sor-section .section-title { margin-bottom: .75rem; }
.sor-section .section-sub { margin-bottom: 2.5rem; }
.sor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.sor-card-active {
  border-color: rgba(78, 236, 200, .4);
  background: linear-gradient(135deg, var(--card), rgba(78,236,200,.06));
  box-shadow: 0 0 30px rgba(78,236,200,.08);
}
.sor-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.sor-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.sor-examples {
  font-size: .75rem;
  color: var(--text-faint);
  margin-bottom: .85rem;
  letter-spacing: .04em;
}
.sor-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.sor-quote {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  font-style: italic;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  max-width: 700px;
  margin: 0 auto;
}

/* ── Differentiation ── */
.diff-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.diff-section .section-title { margin-bottom: .75rem; }
.diff-section .section-sub { margin-bottom: 2.5rem; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .2s;
}
.diff-card:hover { border-color: var(--border-hi); }
.diff-vs {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.diff-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
}
.diff-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .safety-inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .why-now-grid { grid-template-columns: 1fr; }
  .sor-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .line-grid { grid-template-columns: 1fr; }
  .pilot-steps::before { display: none; }
  .pilot-steps { grid-template-columns: 1fr 1fr; }
  .pilot-step { flex-direction: row; text-align: left; gap: 1rem; }
  .pilot-step-num { margin-bottom: 0; flex-shrink: 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { letter-spacing: -0.5px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .pilot-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Predatory Marketing — sharp comparison styles ── */
.diff-card {
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
  opacity: .35;
  transition: opacity .25s ease-out;
}
.diff-card:hover::before { opacity: 1; }
.diff-strength {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: .6rem .85rem;
  background: rgba(255,255,255,.02);
  border-left: 2px solid var(--border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.diff-pivot {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: .35rem;
}

/* Tax callout box (where your hours are going) */
.tax-callout {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.tax-callout-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
}
.tax-callout-body { flex: 1; }
.tax-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.tax-callout-text {
  font-size: 15px;
  color: var(--heading);
  line-height: 1.55;
  font-weight: 500;
}
.tax-callout-text strong { color: var(--teal); font-weight: 600; }

/* ── About Section ── */
.about-section {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-section .section-title { margin-bottom: .75rem; }
.about-section .section-sub { margin-bottom: 2.5rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.about-stat {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; }
.about-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
  margin-bottom: .35rem;
  line-height: 1.1;
}
.about-stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-origin {
  margin-bottom: 3rem;
  padding: 2rem 2.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
}
.about-origin-quote {
  font-size: 1.05rem;
  color: var(--heading);
  line-height: 1.7;
  font-weight: 400;
  font-style: italic;
  margin-bottom: .9rem;
}
.about-origin-attr {
  font-size: .78rem;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: .04em;
}

.about-subhead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.founder-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: border-color .2s;
}
.founder-card:hover { border-color: var(--border-hi); }
.founder-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}
.founder-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.founder-meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .35rem;
}
.founder-bio {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.founder-link {
  margin-top: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .02em;
}
.founder-link:hover { text-decoration: underline; }

.about-team {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-team-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .4rem;
}
.about-team-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-stat:nth-child(2n) { border-right: none; }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
  .founders-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .about-stat:last-child { border-bottom: none; }
  .about-origin { padding: 1.5rem 1.5rem; }
  .about-origin-quote { font-size: .98rem; }
}

/* ──────────────────────────────────────────────────────────
   Marketing diagrams — TODAY, Integration Overview, Pilot ROI
   Dark Palantir aesthetic. Reuse: --card, --border, --teal.
────────────────────────────────────────────────────────── */
.diagram {
  margin: 0 0 2.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.diagram-caption {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.diagram-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.diagram-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.diagram-takeaway {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.diagram-takeaway strong { color: var(--heading); font-weight: 600; }

/* Connection legend (shared) */
.diagram-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: .85rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.diagram-legend-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-muted);
}
.legend-line {
  width: 28px; height: 2px;
  display: inline-block;
}
.legend-line-solid { background: var(--teal); }
.legend-line-dash {
  background-image: linear-gradient(to right, var(--teal) 50%, transparent 0%);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.legend-line-none {
  background-image: linear-gradient(to right, var(--text-faint) 50%, transparent 0%);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  opacity: .6;
}
.legend-line-manual {
  background-image: linear-gradient(to right, #ffb673 50%, transparent 0%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}
.legend-pill {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .15rem .5rem;
  border-radius: 99px;
  border: 1px solid;
  text-transform: uppercase;
}
.legend-pill-two-way {
  color: var(--teal);
  border-color: rgba(78, 236, 200, .35);
  background: var(--teal-glow);
}
.legend-pill-feed {
  color: var(--blue);
  border-color: rgba(106, 167, 255, .35);
  background: var(--blue-dim);
}
.legend-pill-limited {
  color: var(--text-muted);
  border-color: var(--border-hi);
  background: rgba(255,255,255,.02);
}

/* ── Diagram 1: TODAY ── */
.diagram-today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}
.stack-tower {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.stack-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .75rem .9rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stack-card-icon {
  width: 28px; height: 28px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-card-icon svg { width: 22px; height: 22px; }
.stack-card-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.stack-card-role {
  font-size: .72rem;
  color: var(--text-faint);
  margin-top: .15rem;
}
.stack-link {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  position: relative;
  padding: .35rem 0;
  list-style: none;
}
.stack-link::before,
.stack-link::after {
  content: '';
  display: block;
  height: 8px;
  border-left: 1px dashed var(--border-hi);
  margin: 0 auto;
  width: 0;
}
.stack-link::before { margin-bottom: .25rem; }
.stack-link::after  { margin-top: .25rem; }
.stack-link-limited {
  color: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}
.stack-link-limited::before,
.stack-link-limited::after {
  border-left-style: dashed;
  border-left-color: var(--teal);
  opacity: .55;
}
.stack-link-detail {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--text-muted);
  font-style: italic;
}

.diagram-today-exception {
  margin-top: 1.25rem;
  padding: .85rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid #ffb673;
  border-radius: var(--radius);
}
.diagram-today-exception-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffb673;
  margin-bottom: .35rem;
}
.diagram-today-exception-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.diagram-today-arrow {
  width: 80px;
  height: 16px;
  align-self: center;
}
.diagram-today-arrow svg { width: 100%; height: 100%; }

.drag-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid #ff9b6a;
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.1rem;
}
.drag-card-icon {
  color: #ff9b6a;
  width: 28px; height: 28px;
  margin-bottom: .5rem;
}
.drag-card-icon svg { width: 28px; height: 28px; }
.drag-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .65rem;
  letter-spacing: -0.01em;
}
.drag-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.drag-card-list li {
  font-size: .82rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1rem;
  line-height: 1.5;
}
.drag-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #ff9b6a;
  opacity: .8;
}

/* ── Diagram 2: Integration Overview ── */
.diagram-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.overview-column {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.overview-column-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.overview-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  align-items: center;
}
.overview-card,
.overview-output {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .7rem .85rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex: 1;
}
.overview-card-icon,
.overview-output-icon {
  width: 28px; height: 28px;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview-card-icon svg,
.overview-output-icon svg { width: 22px; height: 22px; }
.overview-card-name,
.overview-output-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}
.overview-card-role,
.overview-output-role {
  font-size: .7rem;
  color: var(--text-faint);
  margin-top: .15rem;
}
.overview-link {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 99px;
  border: 1px solid;
  white-space: nowrap;
}
.overview-link-two-way {
  color: var(--teal);
  border-color: rgba(78, 236, 200, .35);
  background: var(--teal-glow);
}
.overview-link-feed {
  color: var(--blue);
  border-color: rgba(106, 167, 255, .35);
  background: var(--blue-dim);
}
.overview-link-limited {
  color: var(--text-muted);
  border-color: var(--border-hi);
  background: rgba(255,255,255,.02);
}

.overview-core {
  align-self: center;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--card), var(--teal-glow));
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(78, 236, 200, .12);
  min-width: 200px;
}
.overview-core-icon {
  width: 36px; height: 36px;
  color: var(--teal);
  margin: 0 auto .5rem;
}
.overview-core-icon svg { width: 36px; height: 36px; }
.overview-core-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.5px;
  line-height: 1;
}
.overview-core-title span { color: var(--teal); }
.overview-core-sub {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.overview-core-list {
  list-style: none;
  margin: .85rem 0 0;
  padding: .85rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Diagram 3: Pilot ROI ── */
.diagram-pilot { padding-bottom: 1.75rem; }

.pilot-gap-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pilot-gap-anchor {
  align-self: center;
  text-align: center;
  padding: .9rem 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
}
.pilot-gap-anchor-icon {
  width: 24px; height: 24px;
  color: var(--teal);
  margin: 0 auto .35rem;
}
.pilot-gap-anchor-icon svg { width: 24px; height: 24px; }
.pilot-gap-anchor-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--heading);
}
.pilot-gap-anchor-sub {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

.pilot-gap-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: .5rem;
  align-items: stretch;
  width: 100%;
}
.pilot-gap-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem .9rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.pilot-gap-step-icon {
  width: 28px; height: 28px;
  color: var(--text-faint);
}
.pilot-gap-step-icon svg { width: 28px; height: 28px; }
.pilot-gap-step-target { border-color: rgba(78, 236, 200, .35); background: var(--teal-glow); }
.pilot-gap-step-target .pilot-gap-step-icon { color: var(--teal); }
.pilot-gap-step-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}
.pilot-gap-step-target .pilot-gap-step-title { color: var(--teal); }
.pilot-gap-step-sub {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pilot-gap-arrow {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  min-width: 90px;
}
.pilot-gap-arrow-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-align: center;
  padding: .15rem .4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  line-height: 1.3;
}
.pilot-gap-arrow-dashed .pilot-gap-arrow-label { color: var(--text-faint); }
.pilot-gap-arrow svg { width: 100%; height: 12px; }

.pilot-roi {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.pilot-roi-header {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.pilot-roi-header-icon {
  width: 36px; height: 36px;
  color: var(--teal);
}
.pilot-roi-header-icon svg { width: 36px; height: 36px; }
.pilot-roi-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.pilot-roi-header-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
.pilot-roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: 1rem;
}
.pilot-roi-card {
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pilot-roi-card-icon {
  width: 24px; height: 24px;
  color: var(--teal);
  margin-bottom: .5rem;
}
.pilot-roi-card-icon svg { width: 24px; height: 24px; }
.pilot-roi-card-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.pilot-roi-card-text {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.pilot-roi-outcome {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.pilot-roi-outcome-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.pilot-roi-outcome-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pilot-roi-outcome-text strong { color: var(--heading); font-weight: 700; }

/* Responsive — diagrams */
@media (max-width: 900px) {
  .diagram-today-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .diagram-today-arrow {
    width: 16px;
    height: 60px;
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .diagram-overview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .overview-core { min-width: 0; }
  .pilot-gap-row {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .pilot-gap-arrow {
    transform: rotate(90deg);
    margin: .25rem auto;
  }
  .pilot-gap-arrow-label { transform: rotate(-90deg); white-space: nowrap; }
  .pilot-roi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .diagram { padding: 1.25rem 1.1rem; }
  .pilot-roi-grid { grid-template-columns: 1fr; }
  .pilot-roi { padding: 1rem 1.1rem; }
  .diagram-legend { gap: .75rem 1rem; padding: .75rem .85rem; }
  .legend-item { font-size: .74rem; }
}

/* ──────────────────────────────────────────────────────────
   Architecture Section — agent-native from Day 0
   Pillars (Ontology / Practice Brain / Temporal compliance)
   + AI-on-CRM vs Agent-native contrast
   + Outcome-as-a-Service implication
   + closing tagline
────────────────────────────────────────────────────────── */
.architecture-section {
  position: relative;
  padding: 5.5rem 0 5rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.architecture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(78, 236, 200, .05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 90% 90%, rgba(106, 167, 255, .04) 0%, transparent 60%);
  pointer-events: none;
}
.architecture-section .container { position: relative; z-index: 1; }
.architecture-section .section-title {
  text-align: center;
  margin-bottom: .9rem;
}
.architecture-section .section-sub {
  text-align: center;
  margin: 0 auto 3rem;
}
.architecture-section > .container > .eyebrow { text-align: center; }

.arch-pillars {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.arch-pillar {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 1.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  transition: border-color .2s ease-out, transform .2s ease-out;
}
.arch-pillar:hover { border-color: var(--border-hi); border-left-color: var(--teal); }
.arch-pillar-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: .55;
}
.arch-pillar-body { display: flex; flex-direction: column; gap: .55rem; }
.arch-pillar-name {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.arch-pillar-headline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.arch-pillar-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.arch-pillar-text em {
  color: var(--heading);
  font-style: italic;
}
.arch-pillar-quote {
  margin-top: .35rem;
  padding: .65rem .85rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--teal);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-style: italic;
  color: var(--heading);
  font-weight: 500;
  line-height: 1.5;
}

/* Contrast block: AI-on-CRM vs Agent-native */
.arch-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.arch-contrast-col { display: flex; flex-direction: column; gap: .85rem; }
.arch-contrast-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.arch-contrast-them .arch-contrast-label { color: var(--text-faint); }
.arch-contrast-us .arch-contrast-label { color: var(--teal); }
.arch-contrast-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.arch-contrast-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .9rem;
  line-height: 1.55;
}
.arch-contrast-them .arch-contrast-list li {
  color: var(--text-muted);
}
.arch-contrast-us .arch-contrast-list li {
  color: var(--text);
}
.arch-contrast-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 5px; height: 5px;
  border-radius: 50%;
}
.arch-contrast-them .arch-contrast-list li::before { background: var(--text-faint); opacity: .7; }
.arch-contrast-us .arch-contrast-list li::before { background: var(--teal); }
.arch-contrast-divider {
  width: 1px;
  background: var(--border-hi);
  align-self: stretch;
}

/* Outcome-as-a-Service callout */
.arch-oaas {
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--card), var(--teal-glow));
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(78, 236, 200, .08);
}
.arch-oaas-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.arch-oaas-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0 0 .65rem;
}
.arch-oaas-text {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.arch-oaas-text strong { color: var(--teal); font-weight: 600; }

/* Closing mic-drop tagline */
.arch-mic-drop {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.5;
}
.arch-mic-drop span {
  color: var(--heading);
  font-weight: 600;
  font-style: normal;
}

/* Responsive — architecture */
@media (max-width: 900px) {
  .arch-pillar {
    grid-template-columns: 1fr;
    gap: .65rem;
    padding: 1.5rem 1.5rem;
  }
  .arch-pillar-num { font-size: 1.75rem; }
  .arch-contrast {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .arch-contrast-divider {
    width: auto;
    height: 1px;
  }
}
@media (max-width: 640px) {
  .architecture-section { padding: 4rem 0 3.5rem; }
  .arch-pillar { padding: 1.25rem 1.1rem; }
  .arch-pillar-headline { font-size: 1.15rem; }
  .arch-oaas { padding: 1.4rem 1.25rem; }
  .arch-oaas-title { font-size: 1.2rem; }
  .arch-mic-drop { font-size: 1rem; }
}

/* ── Reduced motion ── */
@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;
  }
  .hero-badge-dot { animation: none; opacity: 1; }
}
