/* Sassy — Empowered by Alice design system (v3.0 tokens)
   Four colours only · sharp corners · gold on dark, teal on light */

:root {
  --offwhite: #F8F7F3;
  --navy: #1C3A4B;
  --navy-deep: #16303D;
  --gold: #DFB167;
  --teal: #1A7E74;
  --sand: #EFE7D8;
  --slate: #55616A;
  --hairline: rgba(28, 58, 75, 0.14);
  --grid-gold: rgba(223, 177, 103, 0.08);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Work Sans', Helvetica, Arial, sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.15; }
h1 em, h2 em { font-style: italic; color: var(--teal); }
.on-dark h1 em, .on-dark h2 em { color: var(--gold); }

.kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
}
.on-dark .kicker { color: var(--gold); }

a { color: var(--teal); text-decoration: none; transition: opacity 200ms var(--ease); }
a:hover { opacity: 0.86; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---- Header / footer ---- */
header.site {
  border-bottom: 1px solid var(--hairline);
  background: var(--offwhite);
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.wordmark { font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.wordmark b { color: var(--teal); font-weight: 500; }
nav.site a { margin-left: 28px; font-size: 14px; color: var(--navy); }

footer.site {
  border-top: 1px solid var(--hairline);
  margin-top: 80px; padding: 32px 0 48px;
  font-size: 12.5px; color: var(--slate);
}
footer.site .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; border: none; cursor: pointer;
  font-family: 'Work Sans', sans-serif; font-size: 14px; letter-spacing: 0.04em;
  padding: 14px 28px; transition: opacity 200ms var(--ease), background 200ms var(--ease);
  background: var(--navy); color: var(--gold);
}
.btn:hover { opacity: 0.9; }
.btn.light { background: transparent; color: var(--navy); border: 1px solid var(--hairline); }
.btn.teal { background: var(--teal); color: var(--offwhite); }
.btn.danger { background: transparent; color: #8a3030; border: 1px solid #c9a0a0; }
.btn.small { padding: 8px 16px; font-size: 12.5px; }

/* ---- Cards with corner registration ---- */
.card {
  background: #fff; border: 1px solid var(--hairline);
  padding: 40px; position: relative;
}
.card.corners::before, .card.corners::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border-color: var(--gold); border-style: solid;
}
.card.corners::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.card.corners::after { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }

.card.dark { background: var(--navy); color: var(--offwhite); border-color: rgba(223,177,103,0.25); }
.card.dark .kicker { color: var(--gold); }

/* ---- Landing hero ---- */
.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  background-image:
    linear-gradient(var(--grid-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-gold) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
  color: var(--offwhite);
  padding: 120px 0 72px;
}
.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 76px); max-width: 720px; }
.hero p.lede { max-width: 560px; margin: 26px 0 40px; color: rgba(248,247,243,0.86); font-size: 18px; }
.hero-tag {
  margin-top: 40px; font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(248,247,243,0.55);
}
.hero-tag em { color: var(--gold); font-style: italic; text-transform: none; font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 0.02em; }
.hero-mark { width: 220px; opacity: 0.9; }
.hero-mark svg { width: 100%; height: auto; }
@media (max-width: 960px) { .hero-mark { display: none; } .hero-inner { grid-template-columns: 1fr; } }

.btn.gold { background: var(--gold); color: var(--navy-deep); }
.btn.ghost { background: transparent; color: var(--offwhite); border: 1px solid rgba(248,247,243,0.35); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }

/* Dimension line — hairline with end ticks and a mono label */
.dim-line { display: flex; align-items: center; gap: 20px; margin-top: 72px; }
.dim-line span { flex: 1; height: 1px; background: rgba(223,177,103,0.35); position: relative; }
.dim-line span::before, .dim-line span::after {
  content: ""; position: absolute; top: -4px; width: 1px; height: 9px; background: rgba(223,177,103,0.55);
}
.dim-line span::before { left: 0; } .dim-line span::after { right: 0; }
.dim-line label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: rgba(223,177,103,0.8); white-space: nowrap; }
@media (max-width: 720px) { .dim-line label { white-space: normal; text-align: center; } }

/* Calm entrance (brand easing, no bounce) */
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fade-1, .fade-2, .fade-3, .fade-4 { animation: fade-up 500ms var(--ease) both; }
.fade-2 { animation-delay: 90ms; } .fade-3 { animation-delay: 180ms; } .fade-4 { animation-delay: 280ms; }

.band { padding: 96px 0; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.grid3 > div { background: #fff; padding: 36px 32px; }
@media (max-width: 860px) { .grid3 { grid-template-columns: 1fr; } }
.hover-card { transition: box-shadow 300ms var(--ease), transform 300ms var(--ease); position: relative; }
.hover-card:hover { box-shadow: 0 18px 50px rgba(28, 58, 75, 0.12); }
.hover-card.featured::before, .hover-card.featured::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border-color: var(--gold); border-style: solid;
}
.hover-card.featured::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.hover-card.featured::after { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }

/* ---- Landing: hero product mock ---- */
.hero-shot { width: 420px; max-width: 100%; }
@media (max-width: 960px) { .hero-shot { display: none; } }
.mock-window {
  background: var(--offwhite); border: 1px solid rgba(223,177,103,0.4);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.mock-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  border-bottom: 1px solid var(--hairline); background: #fff;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hairline); }
.mock-url { margin-left: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.08em; color: var(--slate); }
.mock-body { padding: 20px; }
.mock-kicker { font-family: 'IBM Plex Mono', monospace; font-size: 8.5px; letter-spacing: 0.16em; color: var(--teal); margin: 10px 0 6px; }
.mock-bubble {
  background: #fff; border: 1px solid var(--hairline); border-left: 3px solid var(--gold);
  color: var(--navy); font-size: 12.5px; line-height: 1.6; padding: 12px 14px;
}
.mock-bubble.user { background: var(--sand); border-left: 1px solid var(--hairline); display: inline-block; }
.mock-bubble b { color: var(--teal); }
.mock-typing { display: inline-flex; gap: 5px; padding: 12px 4px 2px; }
.mock-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.3; animation: sassy-think 1.2s infinite ease-in-out; }
.mock-typing span:nth-child(2) { animation-delay: 0.18s; }
.mock-typing span:nth-child(3) { animation-delay: 0.36s; }

/* ---- Landing: proof band ---- */
.proof-band { padding: 0; transform: translateY(-36px); }
.proof-band .stat-row { box-shadow: 0 18px 50px rgba(28,58,75,0.12); }
.stat-sub { font-size: 12.5px; color: var(--slate); margin-top: 6px; }

/* ---- Landing: awards band ---- */
.awards-band { padding: 0; transform: translateY(-36px); }
.awards-row {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr 1.2fr; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
  box-shadow: 0 18px 50px rgba(28,58,75,0.12);
}
.award { background: #fff; padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.award img { height: 108px; width: auto; object-fit: contain; }
.award.wide img { height: 100px; }
.award .n { font-family: 'Cormorant Garamond', serif; font-size: 38px; line-height: 1; color: var(--navy); }
.award-cap { font-size: 12.5px; font-weight: 500; color: var(--navy); line-height: 1.5; }
.award-cap span { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); font-weight: 400; }
@media (max-width: 960px) { .awards-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .awards-row { grid-template-columns: 1fr; } }

/* ---- Landing: testimonials ---- */
.testi-hero {
  background: #fff; border: 1px solid var(--hairline); padding: 44px 48px; position: relative;
}
.testi-hero.corners-gold::before, .testi-hero.corners-gold::after {
  content: ""; position: absolute; width: 14px; height: 14px; border-color: var(--gold); border-style: solid;
}
.testi-hero.corners-gold::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.testi-hero.corners-gold::after { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }
.testi-quote {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 28px); line-height: 1.4; color: var(--navy);
}
.testi-who { margin-top: 18px; font-size: 13.5px; font-weight: 500; color: var(--teal); }
.testi-who span { color: var(--slate); font-weight: 400; }
.testi-card p { font-size: 15px; line-height: 1.7; color: var(--navy); font-style: italic; }

/* ---- Landing: system symbols ---- */
.sym { width: 40px; height: 40px; stroke: var(--teal); stroke-width: 1.5; fill: none; }

/* ---- Landing: feature rows ---- */
.feature-band.alt { background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-shot { order: 1; }
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; gap: 32px; } .feature-row.reverse .feature-copy { order: 1; } .feature-row.reverse .feature-shot { order: 2; } }
.feature-copy h2 { font-size: clamp(24px, 3vw, 36px); margin: 12px 0 18px; }
.feature-copy p { margin-bottom: 14px; }
.mock-panel { background: #fff; border: 1px solid var(--hairline); padding: 28px; position: relative; }
.mock-panel.corners-gold::before, .mock-panel.corners-gold::after {
  content: ""; position: absolute; width: 14px; height: 14px; border-color: var(--gold); border-style: solid;
}
.mock-panel.corners-gold::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.mock-panel.corners-gold::after { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }
.mock-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 10px; }
.mock-table td { padding: 9px 6px; border-bottom: 1px solid var(--hairline); }
.mock-table td:first-child { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); width: 42%; }
.mock-table i { color: var(--teal); }
.phase-line { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.phase-line:last-child { border-bottom: none; }
.phase-line p { font-size: 13px; color: var(--slate); margin-top: 2px; }
.phase-dot { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--teal); margin-top: 5px; flex-shrink: 0; }
.phase-dot.done { background: var(--teal); }
.phase-dot.active { border-color: var(--gold); background: var(--gold); }
.priv-line { display: flex; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--hairline); font-size: 14.5px; }
.priv-line:last-child { border-bottom: none; }

/* ---- Landing: founder ---- */
.founder-row { display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: center; }
@media (max-width: 720px) { .founder-row { grid-template-columns: 1fr; } .founder-mark { width: 120px; } }
.founder-id {
  margin-top: 18px; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
}

/* ---- Landing: FAQ ---- */
.faq { background: #fff; border: 1px solid var(--hairline); margin-bottom: 10px; }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 500; font-size: 15.5px;
  list-style: none; position: relative;
}
.faq summary::after { content: "＋"; position: absolute; right: 20px; color: var(--teal); }
.faq[open] summary::after { content: "－"; color: var(--gold); }
.faq p { padding: 0 22px 18px; font-size: 14.5px; color: var(--slate); }

/* ---- Landing: closing band ---- */
.close-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--offwhite); padding: 110px 0;
  background-image:
    linear-gradient(var(--grid-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-gold) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
}

/* Quote band */
.quote-band {
  background: var(--navy); color: var(--offwhite); padding: 96px 0;
  background-image:
    linear-gradient(var(--grid-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-gold) 1px, transparent 1px);
  background-size: 72px 72px;
}
.bigquote {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(26px, 4vw, 44px); line-height: 1.25; max-width: 820px;
}
.bigquote em { color: var(--gold); }

/* ---- Forms ---- */
form.stack label { display: block; margin: 20px 0 6px; font-size: 13px; letter-spacing: 0.02em; color: var(--slate); }
form.stack input[type=text], form.stack input[type=email], form.stack input[type=date],
form.stack input[type=time], form.stack textarea {
  width: 100%; padding: 12px 14px; font-family: 'Work Sans', sans-serif; font-size: 15px;
  border: 1px solid var(--hairline); background: var(--offwhite); color: var(--navy);
}
form.stack input:focus, form.stack textarea:focus { outline: 1.5px solid var(--teal); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 24px 0; font-size: 13.5px; color: var(--slate); }
.error { background: var(--sand); border-left: 3px solid var(--gold); padding: 12px 16px; margin: 20px 0; font-size: 14px; }
.flash { background: var(--sand); padding: 12px 16px; margin: 16px 0; font-size: 14px; }

/* ---- Chat ---- */
.chat-layout { display: grid; grid-template-columns: 280px 1fr; min-height: calc(100vh - 72px); }
@media (max-width: 860px) { .chat-layout { grid-template-columns: 1fr; } .chat-side { display: none; } }
.chat-side { border-right: 1px solid var(--hairline); padding: 28px 20px; background: #fff; }
.chat-side .headline { font-size: 12.5px; color: var(--slate); line-height: 1.8; margin-bottom: 24px; }
.chat-side .headline b { color: var(--navy); font-weight: 500; }
.chat-side .convo { display: block; padding: 10px 12px; font-size: 13.5px; color: var(--navy); border-left: 2px solid transparent; }
.chat-side .convo.active { border-left-color: var(--gold); background: var(--offwhite); }

.chat-main { display: flex; flex-direction: column; max-height: calc(100vh - 72px); }
.chat-scroll { flex: 1; overflow-y: auto; padding: 40px; }
.msg { max-width: 720px; margin: 0 auto 28px; }
.msg .who { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; }
.msg.user .who { color: var(--slate); }
.msg.assistant .who { color: var(--teal); }
/* Reading typography: one simple sans face, roomy leading, calm hierarchy */
.msg .bubble { padding: 22px 26px; font-size: 16px; line-height: 1.75; white-space: pre-wrap; }
.msg.user .bubble { background: var(--sand); border: 1px solid var(--hairline); }
/* Readability: Sassy speaks navy-on-white with a gold spine, not white-on-navy */
.msg.assistant .bubble {
  background: #fff; color: var(--navy);
  border: 1px solid var(--hairline); border-left: 3px solid var(--gold);
  white-space: normal;
}

/* Rendered markdown inside Sassy's bubbles — everything in Work Sans for
   effortless reading; hierarchy comes from weight and spacing, not fonts */
.msg.assistant .bubble p { margin: 0 0 15px; }
.msg.assistant .bubble p:last-child { margin-bottom: 0; }
.msg.assistant .bubble strong { color: var(--navy); font-weight: 600; }
.msg.assistant .bubble em { color: var(--teal); }
.msg.assistant .bubble h1, .msg.assistant .bubble h2, .msg.assistant .bubble h3, .msg.assistant .bubble h4 {
  font-family: 'Work Sans', Helvetica, Arial, sans-serif; font-weight: 600;
  margin: 22px 0 10px; line-height: 1.3; letter-spacing: 0.01em;
}
.msg.assistant .bubble h1 { font-size: 19px; }
.msg.assistant .bubble h2 { font-size: 17.5px; }
.msg.assistant .bubble h3, .msg.assistant .bubble h4 { font-size: 16.5px; color: var(--teal); }
.msg.assistant .bubble ul, .msg.assistant .bubble ol { margin: 0 0 14px 22px; }
.msg.assistant .bubble li { margin-bottom: 6px; }
.msg.assistant .bubble blockquote { border-left: 2px solid var(--teal); margin: 0 0 14px; padding: 4px 0 4px 16px; color: var(--slate); }
.msg.assistant .bubble hr { border: none; border-top: 1px solid var(--hairline); margin: 18px 0; }
.msg.assistant .bubble code { font-family: 'IBM Plex Mono', monospace; font-size: 13px; background: var(--offwhite); padding: 1px 5px; }
.msg.assistant .bubble table { border-collapse: collapse; margin: 0 0 14px; font-size: 14px; }
.msg.assistant .bubble th, .msg.assistant .bubble td { border: 1px solid var(--hairline); padding: 6px 10px; text-align: left; }

/* Chat greeting bar */
.chat-greet {
  padding: 24px 40px 20px; border-bottom: 1px solid var(--hairline);
  background: var(--offwhite);
}
.chat-greet h2 { font-size: clamp(20px, 2.6vw, 28px); margin-top: 6px; }
.chat-greet h2 em { color: var(--teal); }

/* Quick-start prompt chips */
.chips {
  max-width: 720px; margin: 0 auto 12px; display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); background: #fff;
  border: 1px solid var(--hairline); padding: 8px 14px; cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--teal); }

/* Birth-town autocomplete */
.loc-wrap { position: relative; }
.loc-suggestions {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  background: #fff; border: 1px solid var(--hairline); border-top: none;
  max-height: 240px; overflow-y: auto;
}
.loc-item {
  padding: 10px 14px; font-size: 14px; cursor: pointer;
  border-bottom: 1px solid var(--hairline);
}
.loc-item:last-child { border-bottom: none; }
.loc-item:hover { background: var(--sand); }

/* Typing indicator — three gold dots while Sassy composes */
.typing { display: inline-flex; gap: 6px; padding: 6px 2px; }
.typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); opacity: 0.25;
  animation: sassy-think 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.18s; }
.typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes sassy-think {
  0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Per-message tools */
.msg-tools { margin-top: 6px; }
.tool-btn {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate); background: none; border: none;
  cursor: pointer; padding: 2px 0;
}
.tool-btn:hover { color: var(--teal); }

/* Save as PDF — print only the conversation, nicely */
@media print {
  header.site, .chat-side, .chat-input, .msg-tools, footer.site { display: none !important; }
  .chat-layout { display: block; }
  .chat-main { max-height: none; }
  .chat-scroll { overflow: visible; padding: 0; }
  .msg { max-width: 100%; page-break-inside: avoid; }
  .msg.assistant .bubble, .msg.user .bubble { border: none; padding: 8px 0; background: #fff; }
  body { background: #fff; }
}

.chat-input { border-top: 1px solid var(--hairline); background: #fff; padding: 20px 40px; }
.chat-input form { max-width: 720px; margin: 0 auto; display: flex; gap: 12px; }
.chat-input textarea {
  flex: 1; resize: none; height: 56px; padding: 16px; font-family: 'Work Sans', sans-serif;
  font-size: 15px; border: 1px solid var(--hairline); background: var(--offwhite);
}
.chat-input textarea:focus { outline: 1.5px solid var(--teal); }

/* ---- Tables (admin) ---- */
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; background: #fff; }
table.data th {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate); text-align: left;
  padding: 12px 14px; border-bottom: 1px solid var(--navy);
}
table.data td { padding: 12px 14px; border-bottom: 1px solid var(--hairline); }
.status { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.status.active { color: var(--teal); }
.status.invited { color: var(--gold); }
.status.deactivated { color: var(--slate); }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-bottom: 40px; }
.stat-row > div { background: #fff; padding: 24px; }
.stat-row .n { font-family: 'Cormorant Garamond', serif; font-size: 40px; line-height: 1; }
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

.dimension { display: flex; align-items: center; gap: 12px; margin: 48px 0 24px; }
.dimension::before, .dimension::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
