/* Triskelion marketing chrome + page styles for the public Shannon page.
   Hand-ported from the Next.js site's Tailwind v4 setup (its globals.css and
   .agent/skills/coding-standards/SKILL.md recipes) so this Python app stays
   self-contained -- no Node build step in the voice-agent repo. Keep the hex
   values in step with that repo if the brand palette ever moves. */

/* Geist, self-hosted. Deliberately not Google Fonts: this page claims "Data
   Never Leaves the EU", so it must not pull a font from a US CDN on load.
   Subsets and unicode-ranges lifted from the site's own next/font output;
   latin + latin-ext are all this English page needs. */
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/static/fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+00-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308,
    U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/static/fonts/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308,
    U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Site palette. #6b5020 is the gold that passes contrast as text -- use it
     for type and icons; #8a6a1f and lighter are gradient/decoration only. */
  --bg: #faf8f4;
  --bg-elev: #ffffff;
  --bg-elev-2: #f4f0e8;
  --border: rgba(33, 31, 28, .09);
  --border-soft: rgba(33, 31, 28, .06);
  --text: #211f1c;
  --text-dim: #52525b;
  --text-faint: #a1a1aa;
  --text-mid: #3f3f46;
  --gold-light: #e9c873;
  --gold: #c9a227;
  --gold-deep: #8a6a1f;
  --gold-ink: #6b5020;
  --navy: #1f2a44;
  --navy-soft: #30405f;
  --green: #059669;
  --green-ink: #047857;
  --rose: #fb7185;
  /* console.js reads --gold and --indigo off :root at runtime for the orb
     ring, and console.css's D3 node styles reference --emerald/--indigo
     directly. The console predates this palette; these map its token names
     onto the site ramp rather than keeping a second set of golds. --indigo
     keeps its name but takes the site navy: the site explicitly rejected
     indigo, and renaming it would break console.js. */
  --emerald: var(--green);
  --indigo: var(--navy);
  --font: Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --shadow-soft: 0 1px 2px rgba(33, 31, 28, .04), 0 12px 32px -12px rgba(33, 31, 28, .12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-mid);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main { flex: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(201, 162, 39, .35); color: #211f1c; }

.icon { width: 1em; height: 1em; flex: none; }

/* The UA stylesheet's `[hidden] { display: none }` is namespaced to HTML, so
   it does not apply to SVG elements: without this the menu and close icons
   both render, side by side, in the mobile nav toggle. */
svg[hidden] { display: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout ---------- */

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* overflow-hidden, not just relative: the decorative .glow blobs are wider
   than a phone viewport and positioned from a percentage, so without this
   they push the page's scroll width past the window and the whole page
   scrolls sideways on mobile. Nothing inside a section relies on escaping
   its bounds or on position: sticky. */
.section { padding: 40px 0; position: relative; overflow: hidden; }
@media (min-width: 640px) { .section { padding: 56px 0; } }

.stack { display: flex; flex-direction: column; gap: 40px; }

/* ---------- decorative utilities ---------- */

.gradient-text {
  background: linear-gradient(90deg, #e9c873, #c9a227, #8a6a1f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-border { position: relative; border: 1px solid var(--border); }
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 162, 39, .45), rgba(31, 42, 68, .12), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 162, 39, .22), transparent);
  filter: blur(90px);
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(33, 31, 28, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(33, 31, 28, .05) 1px, transparent 1px);
  background-size: 64px 64px;
}

.shadow-soft { box-shadow: var(--shadow-soft); }

/* ---------- shared components ---------- */

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s;
}
.card--hover:hover { border-color: rgba(201, 162, 39, .3); }
.card h3 { margin: 20px 0 0; font-size: 16px; font-weight: 600; color: #18181b; }
.card p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--text-dim); }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(233, 200, 115, .2), rgba(31, 42, 68, .1));
  color: var(--gold-ink);
}
.icon-badge .icon { width: 20px; height: 20px; }
.icon-badge--sm { width: 40px; height: 40px; }
.icon-badge--sm .icon { width: 18px; height: 18px; }
.icon-badge--lg { width: 48px; height: 48px; border-radius: var(--radius-md); }
.icon-badge--lg .icon { width: 24px; height: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 12px 24px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .15s;
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(.98); }
.btn--sm { padding: 10px 20px; }
.btn--ghost {
  background: var(--bg-elev);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn .icon { width: 16px; height: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(33, 31, 28, .07);
  border-radius: 999px;
  background: var(--bg-elev);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-dim);
  box-shadow: var(--shadow-soft);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
}

/* Left-aligned section headings only. A blanket align-self on .eyebrow also
   caught the hero's badge, which sits in a centred column. */
.section-heading { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.section-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #18181b;
}
.section-heading p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-dim); max-width: 60ch; }
.section-heading--center { align-items: center; text-align: center; }
.section-heading--center p { margin-inline: auto; }
@media (min-width: 640px) { .section-heading h2 { font-size: 36px; } .section-heading p { font-size: 18px; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 44px; } }

.grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--5 { grid-template-columns: repeat(5, 1fr); } .grid--split { grid-template-columns: 1fr 1fr; } }

.note { text-align: center; font-size: 12px; color: var(--text-faint); margin: 0; }
.note--strong { font-size: 14px; font-weight: 500; color: var(--text-dim); }

/* Reveal-on-scroll, standing in for the site's framer-motion <Reveal>. */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.21, .47, .32, .98), transform .6s cubic-bezier(.21, .47, .32, .98); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes halo { 0% { transform: scale(1); opacity: .7; } 70%, 100% { transform: scale(2.2); opacity: 0; } }
@keyframes flow { to { stroke-dashoffset: -24; } }
@keyframes core-spin { to { transform: rotate(360deg); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, .06);
  background: rgba(250, 248, 244, .85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.site-header .container { display: flex; align-items: center; gap: 32px; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0, 0, 0, .06); }
.brand-name { font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: #18181b; }
.brand-name span { font-weight: 400; color: #71717a; }
.brand-dot { position: relative; display: inline-flex; width: 14px; height: 14px; align-items: center; justify-content: center; }
.brand-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: halo 2.4s ease-out infinite;
}
.brand-dot::after {
  content: "";
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--bg);
}

.site-nav { margin-left: auto; display: none; align-items: center; gap: 20px; }
.site-nav a, .nav-group > button {
  font: inherit;
  font-size: 15px;
  color: var(--text-dim);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color .2s;
}
.site-nav a:hover, .nav-group > button:hover { color: #18181b; }

.nav-group { position: relative; }
.nav-group > button { display: flex; align-items: center; gap: 4px; }
.nav-group > button .icon { width: 14px; height: 14px; transition: transform .2s; }
.nav-group > button[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin-top: 12px;
  width: 224px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-soft);
  z-index: 50;
}
.nav-menu[hidden] { display: none; }
.nav-menu a {
  display: block;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  transition: background-color .2s, color .2s;
}
.nav-menu a:hover { background: var(--bg-elev-2); color: #18181b; }

.header-cta { display: none; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  padding: 8px;
  color: #3f3f46;
  cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }

.mobile-nav {
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: rgba(250, 248, 244, .95);
  backdrop-filter: blur(16px);
}
.mobile-nav[hidden] { display: none; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }
.mobile-nav .container { display: flex; flex-direction: column; gap: 4px; height: auto; padding-top: 16px; padding-bottom: 16px; }
.mobile-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-dim);
}
.mobile-nav a:hover { background: rgba(0, 0, 0, .03); color: #18181b; }
.mobile-nav .btn { margin-top: 8px; }

/* Desktop/mobile swap. Must come after the .header-cta and .nav-toggle base
   rules above -- same specificity, so source order decides, and having it
   earlier left the hamburger showing next to the full desktop nav. */
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .header-cta { display: block; }
  .nav-toggle { display: none; }
}

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid rgba(0, 0, 0, .06); background: #fff; }
.site-footer .container { padding-top: 56px; padding-bottom: 56px; }
.footer-cols { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 1024px) { .footer-cols { flex-direction: row; flex-wrap: wrap; justify-content: space-between; column-gap: 48px; } }
.footer-brand { max-width: 20rem; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-row img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0, 0, 0, .06); }
.footer-brand-row span { font-size: 16px; font-weight: 600; letter-spacing: -.01em; color: #18181b; }
.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold-ink);
}
.footer-tagline i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
/* .footer-brand p would also catch .footer-tagline, and being one class more
   specific it would win, greying out the gold. Target the description only. */
.footer-desc { margin: 16px 0 0; font-size: 14px; line-height: 1.6; color: #71717a; }
.site-footer h3 { margin: 0; font-size: 14px; font-weight: 600; color: #18181b; }
.site-footer ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--text-dim); }
.site-footer li { display: flex; align-items: center; gap: 10px; }
.site-footer li .icon { width: 16px; height: 16px; color: #71717a; }
.site-footer ul a:hover { color: #18181b; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { margin: 0; font-size: 14px; font-weight: 500; color: #3f3f46; }
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a, .footer-legal p { font-size: 12px; color: var(--text-faint); }
.footer-legal a:hover { color: #71717a; }

/* ---------- page: hero ---------- */

.hero { padding: 48px 0 24px; position: relative; overflow: hidden; }
.hero .container { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.hero h1 {
  margin: 0;
  max-width: 56rem;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #18181b;
}
@media (min-width: 640px) { .hero h1 { font-size: 48px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 60px; } }
.hero-lede { margin: 0; max-width: 42rem; font-size: 17px; line-height: 1.75; color: var(--text-dim); }
.hero-sub { margin: 0; max-width: 36rem; font-size: 14px; line-height: 1.6; color: #71717a; }

.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #71717a; transition: color .2s; }
.back-link:hover { color: #18181b; }
.back-link .icon { width: 14px; height: 14px; }

.page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}
.page-nav a { border-radius: 999px; padding: 6px 12px; color: var(--text-dim); transition: background-color .2s, color .2s; }
.page-nav a:hover { background: var(--bg-elev-2); color: #18181b; }

/* ---------- page: three-engines diagram ----------
   Hand-positioned at a fixed 1300x460 design size and scaled down to fit
   whatever width it lands in, same technique as the site's ScaledScene: a
   uniform transform keeps the SVG flow lines and the HTML cards in register,
   which independently reflowing them would not. */

.scene { display: flex; width: 100%; justify-content: center; overflow: hidden; }
.scene-inner {
  position: relative;
  flex: none;
  width: 1300px;
  height: 460px;
  transform-origin: top center;
  text-align: left;
}
.scene svg { position: absolute; inset: 0; }
.scene-card {
  position: absolute;
  width: 260px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}
.scene-card--out { border-color: rgba(201, 162, 39, .6); }
.scene-card .kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-ink);
}
.scene-card .lead { margin: 4px 0 0; font-size: 13.5px; font-weight: 700; line-height: 1.35; color: #18181b; }
.scene-card--out .lead { color: var(--green-ink); }
.scene-card .sub { margin: 6px 0 0; font-size: 11.5px; line-height: 1.35; color: var(--text-dim); }
.scene-label {
  position: absolute;
  margin: 0;
  background: var(--bg);
  padding: 0 6px;
  font-size: 11.5px;
  font-style: italic;
  color: #71717a;
}
.scene-label--strong { font-weight: 700; font-style: italic; color: var(--gold-ink); }
.scene-flow { animation: flow 1.4s linear infinite; }

.emblem { position: absolute; width: 190px; height: 190px; }
.emblem span { position: absolute; border-radius: 50%; }
.emblem .halo { inset: 0; border: 1px solid rgba(201, 162, 39, .5); animation: halo 2.6s ease-out infinite; }
.emblem .ring-1 { inset: -12px; border: 2px solid transparent; border-top-color: var(--gold); border-bottom-color: rgba(201, 162, 39, .35); animation: core-spin 9s linear infinite; }
.emblem .ring-2 { inset: -24px; border: 2px solid transparent; border-left-color: rgba(201, 162, 39, .55); animation: core-spin 14s linear infinite reverse; }
.emblem img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #fff; animation: breathe 3.5s ease-in-out infinite; }
.emblem p { position: absolute; left: 50%; top: 100%; width: 320px; transform: translateX(-50%); padding-top: 12px; margin: 0; text-align: center; font-size: 13px; color: #3f3f46; }
.emblem p b { font-weight: 700; }
.emblem p i { font-style: normal; color: var(--gold-ink); }

/* ---------- page: trust bar ---------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .trust-bar { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.trust-bar div { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.trust-bar p { margin: 0; font-size: 12px; font-weight: 500; line-height: 1.4; color: #3f3f46; }

/* ---------- page: problem statements ---------- */

.problems { display: flex; flex-direction: column; gap: 16px; max-width: 42rem; margin: 0 auto; width: 100%; }
.problems p {
  margin: 0;
  border-left: 4px solid rgba(201, 162, 39, .5);
  padding: 4px 0 4px 20px;
  font-size: 16px;
  line-height: 1.75;
  color: #3f3f46;
}
@media (min-width: 640px) { .problems p { font-size: 18px; } }
.problems-close { text-align: center; font-size: 18px; font-weight: 600; color: #18181b; margin: 0; }

/* ---------- page: numbered steps ---------- */

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.card--step h3 { font-size: 18px; }

/* ---------- page: worked example ---------- */

.example-col { display: flex; flex-direction: column; gap: 12px; }
.example-label { margin: 0; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #71717a; }
.example-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.turn { display: flex; align-items: flex-start; gap: 8px; }
.turn--shannon { flex-direction: row-reverse; }
.turn-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: #3f3f46;
}
.turn--shannon .turn-avatar { background: linear-gradient(135deg, rgba(233, 200, 115, .2), rgba(31, 42, 68, .1)); color: var(--gold-ink); }
.turn-avatar .icon { width: 14px; height: 14px; }
.turn p {
  margin: 0;
  max-width: 85%;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.6;
}
.turn--caller p { border: 1px solid var(--border); background: var(--bg); color: #3f3f46; border-bottom-left-radius: 4px; }
.turn--shannon p { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; border-bottom-right-radius: 4px; }

.trace-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  padding: 14px;
}
.trace-row .icon-badge { width: 32px; height: 32px; background: #fff; border-radius: var(--radius-sm); }
.trace-row .icon-badge .icon { width: 16px; height: 16px; }
/* Scoped, for the same reason as .contact-card-text above: a bare
   `.trace-row span` also matched this row's <span class="icon-badge">. */
.trace-row-text strong { display: block; font-size: 14px; font-weight: 600; color: #18181b; }
.trace-row-text span { display: block; margin-top: 2px; font-size: 12px; line-height: 1.5; color: #71717a; }

/* ---------- page: comparison table ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; background: #fff; text-align: left; }
.compare th, .compare td { padding: 20px; }
.compare thead tr { border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 14px; font-weight: 600; color: #18181b; }
.compare thead th.col-vs { text-align: center; color: #71717a; }
.compare thead th.col-shannon {
  text-align: center;
  color: var(--gold-ink);
  border-left: 1px solid rgba(201, 162, 39, .4);
  border-right: 1px solid rgba(201, 162, 39, .4);
  border-top: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(233, 200, 115, .15), transparent);
}
.compare tbody tr { border-bottom: 1px solid var(--border); }
.compare tbody tr:last-child { border-bottom: 0; }
.compare tbody th { font-size: 14px; font-weight: 400; line-height: 1.6; color: #3f3f46; }
.compare tbody td { text-align: center; }
.compare tbody td.col-shannon { border-left: 1px solid rgba(201, 162, 39, .4); border-right: 1px solid rgba(201, 162, 39, .4); background: rgba(233, 200, 115, .06); }
.compare .icon { width: 16px; height: 16px; }
.compare .yes { color: var(--green-ink); }
.compare .no { color: var(--rose); }
.compare .cell-text { font-size: 14px; color: #3f3f46; font-style: italic; }
.compare .cell-text.is-bold { font-style: normal; font-weight: 600; color: #18181b; }

/* ---------- page: compliance split card ---------- */

.split-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.split-card-inner { position: relative; display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split-card-inner { grid-template-columns: .9fr 1.1fr; } }
.split-left { display: flex; flex-direction: column; gap: 24px; padding: 28px; border-bottom: 1px solid var(--border); }
@media (min-width: 1024px) { .split-left { border-bottom: 0; border-right: 1px solid var(--border); padding: 36px; } }
.split-left .kicker { margin: 0; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gold-ink); }
.split-left h3 { margin: 12px 0 0; font-size: 24px; font-weight: 600; color: #18181b; }
.split-left h3 + p { margin: 16px 0 0; font-size: 15px; line-height: 1.7; color: var(--text-dim); }
.split-right { padding: 28px; }
@media (min-width: 1024px) { .split-right { padding: 36px; } }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; color: #3f3f46; }
.check-list .icon { width: 16px; height: 16px; margin-top: 3px; flex: none; color: var(--gold-ink); }

/* ---------- page: contact band ---------- */

.contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
.contact-card { display: flex; align-items: center; gap: 16px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; padding: 20px; box-shadow: var(--shadow-soft); }
/* Scoped to .contact-card-text, not to any span in the card: a bare
   `.contact-card span` also matched <span class="icon-badge"> and, being one
   class more specific, flattened it to display:block in near-black -- the
   icon fell out of its badge. */
.contact-card-text strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: #71717a; font-weight: 600; }
.contact-card-text span { display: block; margin-top: 4px; font-size: 15px; color: #18181b; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- page: live console section ---------- */

.console-frame { border-radius: var(--radius-lg); overflow: hidden; }
.console-note {
  margin: 0 auto;
  max-width: 62rem;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: center;
}
.console-note strong { color: var(--text); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .brand-dot::before,
  .engines line,
  .engines path { animation: none !important; }
}
