*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --og-navy: #14203b;
  --og-accent: #e8562a;
  --og-surface: #fafaf8;
  --og-serif: Georgia, "Times New Roman", serif;
  --t-app: #f5f5f5;
  --t-sidebar: #ebebeb;
  --t-canvas: #ffffff;
  --t-header: #ffffff;
  --t-input: #f5f5f5;
  --t-t1: #242424;
  --t-t2: #616161;
  --t-t3: #696969;
  --t-t4: #bdbdbd;
  --t-b1: #e0e0e0;
  --t-b2: #c8c8c8;
  --t-sel: #e8e8e8;
  --t-hov: #f0f0f0;
  --t-purple: #6264a7;
  --t-purple-lt: #e8eaf6;
  --t-purple-dk: #444791;
  --t-red: #c4262e;
  --t-amber: #835b00;
  --t-green: #107c10;
  --t-blue: #0f548c;
  --t-f: "Segoe UI", -apple-system, system-ui, sans-serif;
  --t-r: 4px;
}

/* IQ Design System bridge (2026-05-30)
   Maps legacy OpsGrid tokens to --iq-* values loaded from iq-design-tokens.css.
   Teams-specific colours (--t-purple, --t-red, --t-amber, --t-green, --t-blue,
   --t-sidebar, --t-header, --t-input) are intentionally excluded — they are
   Microsoft Teams brand colours used in the notification card mockup UI. */
:root {
  --og-navy:    var(--iq-primary-500);
  --og-accent:  var(--iq-cta-bg);
  --og-surface: var(--iq-bg-base);
  --og-serif:   var(--iq-font-display);

  --t-t1: var(--iq-text-primary);
  --t-t2: var(--iq-text-secondary);
  --t-t3: var(--iq-text-muted);
  --t-t4: var(--iq-text-disabled);

  --t-b1:     var(--iq-border-light);
  --t-b2:     var(--iq-border-default);
  --t-canvas: var(--iq-bg-base);
  --t-app:    var(--iq-bg-subtle);
  --t-hov:    var(--iq-bg-subtle);
  --t-sel:    var(--iq-primary-50);

  --t-f: var(--iq-font-body);
  --t-r: var(--iq-radius-sm);
}
body {
  font-family: var(--t-f);
  background: var(--og-surface);
  color: var(--og-navy);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  background: var(--og-navy);
  padding: 3.5rem 2.5rem 2.8rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(232, 86, 42, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(34, 197, 94, 0.9);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #22c55e;
  opacity: 0.7;
}
.hero-h1 {
  font-family: var(--og-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  max-width: 660px;
  margin-bottom: 1.1rem;
}
.hero-h1 em {
  color: var(--og-accent);
  font-style: normal;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 0.9rem;
  font-weight: 400;
  text-align: justify;
}
.hero-sub:last-of-type {
  margin-bottom: 2rem;
}
.hero-sub strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.hero-list {
  list-style: none;
  max-width: 560px;
  margin-bottom: 0.9rem;
}
.hero-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
}
.hero-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--og-accent);
}
/* Campaign cards */
.og-campaigns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.og-campaign {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--og-accent);
  border-radius: 6px;
  padding: 1rem 1rem 1.1rem;
}
.ogc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--og-accent);
  margin-bottom: 0.5rem;
}
.ogc-body {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) { .og-campaigns { grid-template-columns: 1fr } }
/* End campaign cards */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 380px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}
.stats-bar-item {
  padding: 2rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stats-bar-item:last-child {
  border-right: none;
}
.stats-num {
  font-family: var(--og-serif);
  font-size: 2.8rem;
  color: var(--og-accent);
  line-height: 1;
}
.stats-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.stats-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.4;
}

/* ── MOBILE-FIRST RESPONSIVE ── */

/* Tablet: ≤900px */

/* Mobile: ≤480px */

/* STORY SECTION */
.story {
  background: var(--og-surface);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.story-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.8rem 2.5rem;
}
.story-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.story-stages::before {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(33.33% - 1px);
  right: calc(33.33% - 1px);
  height: 2px;
  background: linear-gradient(
    to right,
    var(--og-accent),
    rgba(232, 86, 42, 0.3)
  );
  z-index: 0;
}
.stage {
  padding: 1.6rem 1.4rem 1.4rem;
  position: relative;
  z-index: 1;
}
.stage-num {
  font-family: var(--og-serif);
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.22);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stage.pain .stage-num {
  color: rgba(196, 38, 46, 0.35);
}
.stage.now .stage-num {
  color: rgba(232, 86, 42, 0.38);
}
.stage.after .stage-num {
  color: rgba(16, 124, 16, 0.35);
}
.stage-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.stage.pain .stage-tag {
  color: #c4262e;
}
.stage.now .stage-tag {
  color: #c44020;
}
.stage.after .stage-tag {
  color: #107c10;
}
.stage-title {
  font-family: var(--og-serif);
  font-size: 1.05rem;
  color: var(--og-navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.stage-body {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.7;
  text-align: justify;
}
.stage-body strong {
  color: var(--og-navy);
}
.stage-list {
  list-style: none;
  margin: 0.6rem 0 0.75rem;
}
.stage-list li {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}
.stage-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--og-accent);
  font-size: 0.78rem;
}
.stage-arrow {
  position: absolute;
  right: -18px;
  top: 14px;
  width: 40px;
  height: 40px;
  background: var(--og-surface);
  border: 2px solid var(--og-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--og-accent);
  font-weight: 700;
  z-index: 2;
  line-height: 1;
}
.stage:last-child .stage-arrow {
  display: none;
}
.stage-divider {
  width: 1px;
  background: var(--border);
  margin: 0;
}
/* query section */
.query-bar {
  background: #f0f4ff;
  border: 1px solid rgba(98, 100, 167, 0.15);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.qb-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.qb-text {
  flex: 1;
}
.qb-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6264a7;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.qb-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--og-navy);
  margin-bottom: 0.3rem;
}
.qb-body {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
}
.qb-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.qb-ex {
  font-size: 0.75rem;
  background: #fff;
  border: 1px solid rgba(98, 100, 167, 0.25);
  color: #444791;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-style: italic;
}
/* proof bar */
.proof-bar {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}
.proof-stat {
  flex: 1 0 145px;
  padding: 1.4rem 1.4rem 1.4rem 0;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}
.proof-stat:first-child {
  padding-left: 0;
}
.proof-stat:last-child {
  border-right: none;
  padding-right: 0;
}
.proof-num {
  font-family: var(--og-serif);
  font-size: 1.8rem;
  color: var(--og-accent);
  line-height: 1;
}
.proof-cat {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  line-height: 1.3;
}
.proof-lbl {
  font-size: 0.8rem;
  color: #444;
  font-weight: 500;
  line-height: 1.35;
}
/* disclaimer */
.disclaimer {
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  color: #666;
  background: var(--t-app);
  border-top: 1px solid var(--t-b1);
}

/* FILTER */
.filter-bar {
  background: var(--og-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.filter-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.filter-inner::-webkit-scrollbar {
  display: none;
}
.ftab {
  font-family: var(--t-f);
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.ftab:hover {
  color: var(--og-navy);
}
.ftab.active {
  color: var(--og-accent);
  border-bottom-color: var(--og-accent);
}
.ftab-count {
  font-size: 0.62rem;
  background: rgba(0, 0, 0, 0.08);
  color: #666;
  padding: 1px 5px;
  border-radius: 8px;
  margin-left: 4px;
  vertical-align: middle;
}
.ftab.active .ftab-count {
  background: rgba(232, 86, 42, 0.12);
  color: var(--og-accent);
}
.fsep {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* LAYOUT */
.outer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  overflow: visible;
}

/* ASIDE */
.aside {
  align-self: start;
}
.teams-chrome {
  border: 1px solid var(--t-b2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--t-sidebar);
  font-family: var(--t-f);
}
.tc-titlebar {
  background: var(--og-navy);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tc-icon {
  width: 20px;
  height: 20px;
  background: var(--t-purple);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.tc-appname {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.tc-org {
  padding: 8px 10px 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t-t1);
}
.tc-section {
  padding: 6px 10px 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--t-t3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tc-ch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 14px;
  cursor: pointer;
  font-size: 12px;
  color: var(--t-t2);
  transition: background 0.1s;
}
.tc-ch:hover {
  background: var(--t-hov);
  color: var(--t-t1);
}
.tc-ch.active {
  background: var(--t-sel);
  color: var(--t-t1);
  font-weight: 600;
}
.tc-unread {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--t-purple-dk);
  background: var(--t-purple-lt);
  padding: 1px 5px;
  border-radius: 8px;
}
.tc-hash {
  font-size: 11px;
  color: var(--t-t3);
}
.tc-footer {
  padding: 8px 10px;
  border-top: 1px solid var(--t-b1);
  font-size: 10px;
  color: var(--t-t3);
  line-height: 1.6;
}
.tc-sdot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #107c10;
  margin-right: 4px;
  vertical-align: middle;
}
.ch-hash-lg {
  display: none;
}
.legend {
  margin-top: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  background: #fff;
  padding: 0.75rem 0.9rem;
}
.legend-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.6rem;
}
.legend-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: #444;
  margin-bottom: 0.38rem;
}
.lpip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* FEED */
.feed {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
.ch-hdr {
  background: var(--t-header);
  border: 1px solid var(--t-b1);
  border-radius: 6px 6px 0 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--t-f);
}
.ch-hash-lg {
  font-size: 16px;
  color: var(--t-t3);
  font-weight: 300;
}
.ch-name-lg {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-t1);
}
.ch-desc-lg {
  font-size: 12px;
  color: var(--t-t3);
  margin-left: 4px;
}
.ch-mem {
  margin-left: auto;
  font-size: 11px;
  color: var(--t-t3);
}
.canvas {
  background: var(--t-canvas);
  border: 1px solid var(--t-b1);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 12px 0 0;
}
.date-sep {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 8px;
  font-family: var(--t-f);
}
.ds-line {
  flex: 1;
  height: 1px;
  background: var(--t-b1);
}
.ds-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--t-t3);
  white-space: nowrap;
}
.msg {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 2px solid var(--t-purple-lt);
  transition: background 0.1s;
  font-family: var(--t-f);
  animation: fi 0.3s ease both;
  min-width: 0;
  width: 100%;
}
.msg:hover {
  background: #fafafa;
}
@keyframes fi {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.msg:nth-child(1) {
  animation-delay: 0.02s;
}
.msg:nth-child(2) {
  animation-delay: 0.06s;
}
.msg:nth-child(3) {
  animation-delay: 0.1s;
}
.msg:nth-child(4) {
  animation-delay: 0.14s;
}
.msg:nth-child(5) {
  animation-delay: 0.18s;
}
.msg:nth-child(6) {
  animation-delay: 0.22s;
}
.msg:nth-child(7) {
  animation-delay: 0.26s;
}
.msg:nth-child(8) {
  animation-delay: 0.3s;
}
.msg:nth-child(9) {
  animation-delay: 0.34s;
}
.msg:nth-child(10) {
  animation-delay: 0.38s;
}
.msg:nth-child(11) {
  animation-delay: 0.42s;
}
.msg:nth-child(12) {
  animation-delay: 0.46s;
}
.msg:nth-child(13) {
  animation-delay: 0.5s;
}
.msg:nth-child(14) {
  animation-delay: 0.54s;
}
.msg:nth-child(15) {
  animation-delay: 0.58s;
}
.msg:nth-child(16) {
  animation-delay: 0.62s;
}
.msg:nth-child(17) {
  animation-delay: 0.66s;
}
.av {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--t-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--t-f);
}
.msg-body {
  flex: 1;
  min-width: 0;
  overflow: visible;
}
.msg-meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
}
.msg-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t-t1);
}
.msg-app {
  font-size: 10px;
  background: var(--t-purple-lt);
  color: var(--t-purple-dk);
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
}
.msg-time {
  font-size: 11px;
  color: var(--t-t3);
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid var(--t-b1);
  border-radius: var(--t-r);
  max-width: 100%;
  width: 100%;
  min-width: 0; /* always fill msg-body, never overflow */
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
/* Collapsible card details on mobile */
.card-details {
  transition: none;
}
.card-toggle {
  display: none;
}

.cstripe {
  height: 3px;
  width: 100%;
  display: block;
}
.sr {
  background: var(--t-red);
}
.sa {
  background: #c37f00;
}
.sb {
  background: var(--t-blue);
}
.sg {
  background: var(--t-green);
}
.cbody {
  padding: 11px 13px 10px;
  box-sizing: border-box;
  width: 100%;
}

/* Card header: module label left, badge right — must not overflow */
.chdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.chdr-left {
  flex: 1;
  min-width: 0;
} /* critical: allows text to shrink */
.cmod {
  font-size: 10px;
  font-weight: 600;
  color: var(--t-t3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.ctitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--t-t1);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: none;
  min-width: 0;
}
.sbadge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  align-self: flex-start;
}
.sbr {
  background: rgba(196, 38, 46, 0.08);
  color: var(--t-red);
}
.sba {
  background: rgba(131, 91, 0, 0.08);
  color: var(--t-amber);
}
.sbb {
  background: rgba(15, 84, 140, 0.08);
  color: var(--t-blue);
}
.sbg {
  background: rgba(16, 124, 16, 0.08);
  color: var(--t-green);
}

/* Fact rows: grid layout for reliable two-column alignment */
.cfacts {
  border-top: 1px solid var(--t-b1);
  padding-top: 7px;
  margin-bottom: 8px;
}
.fact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  padding: 3px 0;
  border-bottom: 1px solid #f0f0f0;
  min-width: 0; /* prevent grid blowout */
}
.fact:last-child {
  border-bottom: none;
}
.fl {
  color: var(--t-t2);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.4;
}
.fv {
  color: var(--t-t1);
  text-align: right;
  font-weight: 500;
  white-space: nowrap; /* keep values on one line */
  flex-shrink: 0;
  min-width: 0;
}
/* When value is too long, allow wrap */
.fv.wrap {
  white-space: normal;
  text-align: right;
}
.fvr {
  color: var(--t-red);
}
.fva {
  color: var(--t-amber);
}
.fvg {
  color: var(--t-green);
}
.fvb {
  color: var(--t-blue);
}

.cinsight {
  font-size: 11.5px;
  color: var(--t-t2);
  line-height: 1.5;
  margin-bottom: 8px;
  padding: 6px 8px;
  background: #f8f8f8;
  border-radius: 3px;
  border-left: 2px solid var(--t-b2);
  overflow-wrap: break-word;
}

/* Action buttons: always wrap gracefully */
.cactions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--t-b1);
}
.ca {
  font-family: var(--t-f);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--t-r);
  border: 1px solid var(--t-b2);
  cursor: pointer;
  background: #fff;
  color: var(--t-t1);
  transition: background 0.1s;
  white-space: normal; /* allow wrap on narrow */
  word-break: break-word;
  line-height: 1.3;
}
.ca:hover {
  background: var(--t-hov);
}
.ca.primary {
  background: var(--t-purple);
  color: #fff;
  border-color: var(--t-purple);
}
.ca.primary:hover {
  background: #4f5296;
  border-color: #4f5296;
}
.ca.done {
  background: #e8f5e9;
  color: var(--t-green);
  border-color: #c8e6c9;
  cursor: default;
}

.compose {
  background: var(--t-canvas);
  border-top: 1px solid var(--t-b1);
  padding: 10px 16px;
}
.cbox {
  background: var(--t-input);
  border: 1px solid var(--t-b2);
  border-radius: var(--t-r);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--t-t3);
  font-family: var(--t-f);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cbox-hint {
  font-size: 11px;
  color: var(--t-t4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chint {
  font-size: 10px;
  color: var(--t-t3);
  margin-top: 4px;
  font-family: var(--t-f);
  line-height: 1.5;
}

/* HERO SPLIT LAYOUT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.hero-form-col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.6rem;
  flex-shrink: 0;
}
.hf-title {
  font-family: var(--og-serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.hf-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.hf-spots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(34, 197, 94, 0.8);
  margin-bottom: 1.1rem;
}
.hf-sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2.5s infinite;
  flex-shrink: 0;
}
/* Brevo form override styles */
.sib-form-block {
  padding: 0 !important;
}
.entry__field {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 8px 10px !important;
  width: 100% !important;
  margin-bottom: 8px !important;
  font-family: var(--t-f) !important;
}
.entry__field::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}
.entry__field:focus {
  border-color: rgba(232, 86, 42, 0.5) !important;
  outline: none !important;
}
.sib-form-block__button {
  background: var(--og-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  width: 100% !important;
  cursor: pointer !important;
  font-family: var(--t-f) !important;
  margin-top: 4px !important;
}
.sib-form-block__button:hover {
  background: #c94420 !important;
}
.hf-note {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.4;
}
/* fallback form if Brevo not loaded */
.hf-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hf-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  padding: 8px 10px;
  font-family: var(--t-f);
  outline: none;
  transition: border-color 0.15s;
}
.hf-input:focus {
  border-color: rgba(232, 86, 42, 0.5);
}
.hf-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.hf-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 8px 10px;
  font-family: var(--t-f);
}
.hf-select option {
  background: #14203b;
  color: #fff;
}
.hf-submit {
  background: var(--og-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--t-f);
  transition: background 0.2s;
}
.hf-submit:hover {
  background: #c94420;
}

.cta {
  background: var(--og-navy);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(232, 86, 42, 0.09) 0%,
    transparent 65%
  );
}
.cta-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.2rem;
}
.cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #107c10;
  animation: blink 2.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.cta-h {
  font-family: var(--og-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cta-p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.6rem;
  line-height: 1.75;
}
.cta-btn {
  display: inline-block;
  background: var(--og-accent);
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--t-f);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #c94420;
}
.cta-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ROADMAP */
.roadmap {
  background: var(--og-surface);
  padding: 3rem 2.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}
.rm-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.rm-eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 0.5rem;
}
.rm-title {
  font-family: var(--og-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--og-navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.rm-sub {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2rem;
}
.rm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  overflow: hidden;
}
.rm-card {
  background: #fff;
  padding: 1.4rem 1.5rem;
}
.rm-card-live {
  border-top: 3px solid var(--og-accent);
}
.rm-card-next {
  border-top: 3px solid #6264a7;
}
.rm-card-future {
  border-top: 3px solid #bbb;
}
.rm-status {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.rm-status.live {
  color: #c44020;
}
.rm-status.next {
  color: #6264a7;
}
.rm-status.future {
  color: #666;
}
.rm-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--og-navy);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.rm-card-sub {
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.rm-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.rm-features li {
  font-size: 0.78rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
}
.rm-features li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  background: var(--og-accent);
}
.rm-card-next .rm-features li::before {
  background: #6264a7;
}
.rm-card-future .rm-features li::before {
  background: #ccc;
}
.rm-pain {
  font-size: 0.72rem;
  color: #666;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid #f0f0f0;
  line-height: 1.4;
}

/* ABOUT / CITABILITY */
.og-citability { background: #f2f0eb; padding: 3rem 2.5rem; border-top: 1px solid rgba(0,0,0,0.08) }
.og-cit-inner { max-width: 1040px; margin: 0 auto }
.og-cit-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: #888; margin-bottom: 1.5rem; font-weight: 600 }
.og-cit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem }
.og-cit-item { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 1.5rem; border-top: 3px solid var(--og-accent) }
.og-cit-num { font-size: 0.68rem; font-weight: 700; color: var(--og-accent); margin-bottom: 0.7rem; letter-spacing: 0.05em }
.og-cit-item p { font-size: 0.88rem; color: #555; line-height: 1.75; margin: 0 }
.og-cit-item p strong { color: var(--og-navy); font-weight: 600 }
.og-cit-tagline { font-size: 0.95rem; font-weight: 600; color: var(--og-navy); margin-bottom: 0.9rem; line-height: 1.3 }
.og-cit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem }
.og-cit-list li { font-size: 0.86rem; color: #555; line-height: 1.6; padding-left: 1.1rem; position: relative }
.og-cit-list li::before { content: '—'; position: absolute; left: 0; color: var(--og-accent); font-weight: 700 }
.og-cit-status { font-weight: 400; background: rgba(232,86,42,0.08); color: var(--og-accent); padding: 0.1rem 0.4rem; border-radius: 3px; font-size: 0.62rem; letter-spacing: 0.04em; margin-left: 0.4rem; vertical-align: middle; white-space: nowrap }
@media (max-width: 768px) { .og-cit-grid { grid-template-columns: 1fr } }

/* INSIGHTS CROSS-LINKS */
.og-insights { background: var(--og-surface); padding: 3rem 2.5rem; border-top: 1px solid rgba(0,0,0,0.08) }
.og-insights-inner { max-width: 1040px; margin: 0 auto }
.og-insights-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: #888; margin-bottom: 0.4rem; font-weight: 600 }
.og-insights-sub { font-size: 0.88rem; color: #555; margin-bottom: 1.8rem }
.og-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem }
.og-ins-card { display: block; text-decoration: none; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 1.4rem 1.5rem; border-top: 3px solid var(--og-accent); transition: box-shadow 0.2s, transform 0.2s }
.og-ins-card:hover { box-shadow: 0 6px 20px rgba(20,32,59,0.1); transform: translateY(-2px) }
.og-ins-tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--og-accent); font-weight: 600; margin-bottom: 0.5rem }
.og-ins-title { font-size: 0.97rem; font-weight: 600; color: var(--og-navy); line-height: 1.35; margin-bottom: 0.5rem }
.og-ins-desc { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 0.9rem }
.og-ins-link { font-size: 0.8rem; color: var(--og-accent); font-weight: 500 }
@media (max-width: 900px) { .og-insights-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 640px) { .og-insights-grid { grid-template-columns: 1fr } }

/* FOOTER */
.site-footer {
  background: #0d1929;
  padding: 2.5rem 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--og-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-logo span {
  color: var(--og-accent);
}
.footer-product {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.footer-company {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}
.footer-company a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer-company a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.72);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-copy {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  display: flex;
  gap: 1.2rem;
}
.footer-legal a {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── RESPONSIVE — must be at end to override base rules ── */

/* ROADMAP */
.roadmap {
  padding: 1.4rem 0.9rem;
}
.rm-title {
  font-size: 1.3rem;
}
.rm-eyebrow {
  font-size: 0.58rem;
}
.rm-sub {
  font-size: 0.8rem;
}
.rm-card {
  padding: 1rem;
}
.rm-card-title {
  font-size: 0.85rem;
}
.rm-card-sub {
  font-size: 0.74rem;
}
.rm-features li {
  font-size: 0.73rem;
}
.rm-pain {
  font-size: 0.68rem;
}

/* CTA */
.cta {
  padding: 1.8rem 1rem;
}
.cta-h {
  font-size: 1.4rem;
}
.cta-p {
  font-size: 0.81rem;
}
.cta-btn {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  text-align: center;
}

/* FOOTER */
.site-footer {
  padding: 1.4rem 0.9rem 1rem;
}
.footer-bottom {
  gap: 0.4rem;
}
.footer-legal {
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* MISC */
.proof-num {
  font-size: 1.4rem;
}
.proof-lbl {
  font-size: 0.72rem;
}
.disclaimer {
  font-size: 0.65rem;
  padding: 0.45rem 0.9rem;
}
.qb-examples {
  gap: 0.25rem;
}
.qb-ex {
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
}

/* ── RESPONSIVE — must be at end to override base rules ── */

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  /* HERO — copy full width, form stacks below */
  .hero {
    padding: 2.5rem 1.25rem 2rem;
  }
  .hero-split {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-left {
    width: 100%;
  }
  .hero-h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    max-width: 100%;
  }
  .hero-sub {
    max-width: 100%;
    font-size: 0.88rem;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar-item {
    padding: 1.5rem 2rem;
  }
  .stats-bar-item:nth-child(2) {
    border-right: none;
  }
  .stats-bar-item:nth-child(3),
  .stats-bar-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stats-num {
    font-size: 2.2rem;
  }
  /* Form floats below hero into a separate band */
  .hero-form-col {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.18);
  }
  .hf-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hf-input:nth-child(3),
  .hf-select:nth-child(4),
  .hf-select:nth-child(5),
  .hf-input:nth-child(6),
  .hf-submit {
    grid-column: 1/-1;
  }

  /* STORY — proper stacking with left accent */
  .story-inner {
    padding: 2rem 1.25rem;
  }
  .story-stages {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .story-stages::before {
    display: none;
  }
  .stage-arrow {
    display: none !important;
  }
  .stage {
    padding: 1.25rem 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid transparent;
  }
  .stage.pain {
    border-left-color: #c4262e;
  }
  .stage.now {
    border-left-color: var(--og-accent);
  }
  .stage.after {
    border-left-color: #107c10;
  }
  .stage:last-child {
    border-bottom: none;
  }
  .stage-num {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .stage-title {
    font-size: 0.95rem;
  }

  .query-bar {
    flex-direction: column;
    gap: 0.6rem;
  }
  .qb-examples {
    gap: 0.3rem;
  }
  .qb-ex {
    font-size: 0.7rem;
  }
  /* TEAMS DEMO */
  .outer {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .aside {
    display: none;
  }
  .card {
    max-width: 100%;
    width: 100%;
  }
  .cbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  /* ROADMAP */
  .rm-inner {
    padding: 0;
  }
  .roadmap {
    padding: 2rem 1.25rem;
  }
  .rm-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 2.5rem 1.25rem;
  }
  .site-footer {
    padding: 2rem 1.25rem 1.25rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .card {
    max-width: 100%;
    width: 100%;
  }
  .card-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px 0 0;
    font-size: 10.5px;
    color: var(--t-t3);
    font-family: var(--t-f);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    margin-top: 4px;
  }
  .card-toggle-arrow {
    font-size: 10px;
    transition: transform 0.2s;
  }
  .card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .card-details.open {
    max-height: 900px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  /* HERO */
  .hero {
    padding: 1.75rem 1rem 0;
  }
  .hero-h1 {
    font-size: 1.4rem;
    line-height: 1.22;
  }
  .hero-label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar-item {
    padding: 1.2rem 1.5rem;
  }
  .stats-num {
    font-size: 2rem;
  }
  .stats-sub {
    font-size: 0.78rem;
  }
  .hero-form-col {
    padding: 1.4rem 1rem 1.25rem;
  }
  .hf-form {
    grid-template-columns: 1fr;
  }
  .hf-input:nth-child(3),
  .hf-select:nth-child(4),
  .hf-select:nth-child(5),
  .hf-input:nth-child(6),
  .hf-submit {
    grid-column: auto;
  }
  .hf-title {
    font-size: 0.95rem;
  }
  .hf-sub {
    font-size: 0.74rem;
  }

  /* STORY */
  .story-inner {
    padding: 1.4rem 1rem;
  }
  .stage {
    padding: 1rem 0.9rem 1rem 1rem;
  }
  .stage-num {
    font-size: 1.2rem;
  }
  .stage-body {
    font-size: 0.79rem;
    line-height: 1.65;
  }

  /* FILTER */
  .filter-bar {
    position: static;
  }
  .filter-inner {
    padding: 0 0.5rem;
  }
  .ftab {
    padding: 0.55rem 0.55rem;
    font-size: 0.7rem;
  }
  .ftab-count {
    display: none;
  }
  .fsep {
    display: none;
  }

  /* TEAMS CANVAS */
  .outer {
    padding: 0.5rem;
  }
  .msg {
    padding: 10px 8px;
    gap: 6px;
  }
  .av {
    width: 26px;
    height: 26px;
    font-size: 9px;
    border-radius: 3px;
  }
  .ch-hdr {
    padding: 8px 10px;
    gap: 4px;
    flex-wrap: wrap;
  }
  .ch-mem {
    display: none;
  }
  .ch-name-lg {
    font-size: 12px;
  }
  .ch-desc-lg {
    display: none;
  }
  .date-sep {
    padding: 3px 8px 5px;
  }
  .ds-text {
    font-size: 9px;
  }

  /* CARD — compact overrides for 480px */
  .card {
    border-radius: 3px;
  }
  .cbody {
    padding: 9px 10px 8px;
  }
  .cmod {
    font-size: 9px;
  }
  .ctitle {
    font-size: 12px;
    line-height: 1.3;
  }
  .sbadge {
    font-size: 9px;
    padding: 1px 5px;
  }
  /* Stack fact label above value on tiny screens */
  .fact {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 5px 0;
  }
  .fl {
    font-size: 10.5px;
    color: var(--t-t3);
  }
  .fv {
    text-align: left;
    font-size: 11.5px;
  }
  .cinsight {
    font-size: 10.5px;
    padding: 5px 7px;
  }
  .cactions {
    gap: 4px;
    padding-top: 7px;
  }
  .ca {
    font-size: 11px;
    padding: 4px 8px;
  }
  .msg-name {
    font-size: 11.5px;
  }
  .msg-app {
    font-size: 9px;
  }
  .msg-time {
    font-size: 10px;
  }
  .compose {
    padding: 7px 8px;
  }
  .cbox {
    font-size: 10.5px;
    padding: 6px 9px;
  }
  .chint {
    font-size: 8.5px;
    line-height: 1.4;
  }
}

/* ── Brevo form CSS ── */
@font-face {
  font-display: block;
  font-family: Roboto;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff)
      format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff)
      format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff)
      format("woff");
}

#sib-container input:-ms-input-placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}

#sib-container input::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}

#sib-container textarea::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}

#sib-container a {
  text-decoration: underline;
  color: #2bb2fc;
}

/* HACKETT NOTE */
.hackett-note {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.5;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 1rem;
}
.hackett-pct {
  font-family: var(--og-serif);
  font-size: 1.3rem;
  color: var(--og-accent);
  font-weight: 700;
  margin-right: 0.25rem;
}

/* ARC NOTE */
.arc-note {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 1rem -2rem -1.5rem;
  padding: 1rem 2rem 1.2rem;
  background: var(--og-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.arc-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  padding: 0.15rem 0.45rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.arc-note strong { color: rgba(255,255,255,0.92); font-weight: 400 }

/* BEYOND THE PILOT */
.beyond-pilot {
  background: var(--og-navy);
  padding: 5rem 2rem;
}
.bp-inner {
  max-width: 860px;
  margin: 0 auto;
}
.bp-eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--og-accent);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.bp-title {
  font-family: var(--og-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.bp-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1rem;
}
.bp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.bp-pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.4rem 1.2rem;
}
.bp-pillar-head {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--og-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bp-pillar-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .bp-pillars {
    grid-template-columns: 1fr;
  }
}
