:root {
  --paper: #0e171d;
  --paper-2: #152028;
  --ink: #e6ecee;
  --ink-soft: #b4c3ca;
  --teal: #3d8f9c;
  --teal-deep: #8fc9d4;
  --teal-fill: #245a64;
  --teal-wash: rgba(61, 143, 156, 0.16);
  --line: rgba(230, 236, 238, 0.12);
  --panel: #18242c;
  --night: #0b1216;
  --night-2: #1c2c38;
  --radius: 12px;
  --gutter: clamp(22px, 4vw, 64px);
  --header-h: 72px;
  --max: 1180px;
  --display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --void: var(--paper);
  --navy: var(--paper-2);
  --cyan: var(--teal);
  --cyan-bright: #8fc9d4;
  --cyan-dim: var(--teal-wash);
  --ice: var(--ink);
  --mist: var(--ink-soft);
  --glow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --cream: var(--paper);
  --rust: var(--teal);
  --gold: var(--teal);
  --font-display: var(--display);
  --font-body: var(--sans);
  --cond: var(--sans);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  color-scheme: dark;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-deep); }
a:hover { color: var(--ink); }

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(720px 380px at 92% -8%, rgba(61, 143, 156, 0.14), transparent 58%),
    linear-gradient(180deg, #121c22 0%, var(--paper) 42%, var(--night) 100%);
}

.atmosphere::after { content: none; }

.shell {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header,
main,
.site-footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--gutter);
  background: rgba(14, 23, 29, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.brand:hover { color: var(--teal-deep); text-shadow: none; }

.brand span,
.brand i {
  font-style: normal;
  font-weight: 500;
  font-size: 0.72em;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: var(--ink-soft);
}

.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--ink); }

.header-cta { justify-self: end; }

.btn,
.btn.ghost,
.btn.primary,
.btn-solid,
.btn-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn.ghost:hover {
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: none;
}

.btn-solid,
.btn.primary {
  background: var(--teal-fill);
  border-color: var(--teal-fill);
  color: var(--ink);
  box-shadow: none;
}

.btn-solid:hover,
.btn.primary:hover {
  color: var(--ink);
  background: #2c6f7a;
  border-color: #2c6f7a;
  filter: none;
}

.btn-cream,
.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  display: block;
  min-height: auto;
  padding: 56px var(--gutter) 28px;
}

.hero.hub {
  padding: 72px var(--gutter) 20px;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
}

.hero.hub .lede {
  max-width: 46em;
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-copy h1,
.title-card h1,
.page-hero h1,
.hero.compact h1,
.hero.hub h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--ink);
}

.kicker,
.brand-hero {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.lede {
  margin: 0;
  max-width: 40em;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero .actions { margin-top: 28px; }

.hero-mark { display: none; }

.door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 12px var(--gutter) 64px;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
}

.door {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 0 0 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.2s ease, box-shadow 0.28s ease;
}

.door:hover {
  border-color: var(--teal);
  color: inherit;
  transform: translateY(-5px);
  box-shadow: var(--glow);
}

.door .still {
  height: 168px;
  overflow: hidden;
  background: var(--night-2);
}

.door .still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.door .door-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.45rem 0;
}

.door .tag {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.door h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.door p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  flex: 1;
}

.door .go { padding: 0 1.45rem; }

.door .go {
  font-weight: 600;
  color: var(--teal-deep);
}

.band { padding: 88px 0; }
.band-soft { background: var(--paper-2); }
.band-dark {
  background: var(--night);
  color: var(--ink);
}

.band h2,
.split h2,
.invite h2,
.wall-head h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.15;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  color: inherit;
}

.section-lede {
  margin: 0.75rem 0 1.75rem;
  color: var(--ink-soft);
  max-width: 44em;
  font-size: 1.05rem;
}

.feature-grid,
.tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-grid article,
.tools article,
.platform-card,
.steps article {
  padding: 1.35rem 1.3rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-grid h3,
.tools h3,
.platform-card h3,
.steps h3,
.cut-plate h3,
.product-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.feature-grid p,
.tools p,
.platform-card p { margin: 0; color: var(--ink-soft); }

.plan-cta { margin-top: 28px; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.split p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  max-width: 42em;
}

.hero.company {
  padding: 68px var(--gutter) 36px;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
}

.hero.company h1 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 6vw, 4.25rem);
}

.hero.company .lede {
  margin-top: 4px;
  max-width: 42em;
  font-size: 1.16rem;
  line-height: 1.68;
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.jump a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}

.jump a:hover { color: var(--ink); }

.title-card {
  padding: 64px var(--gutter) 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title-card h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  max-width: 12ch;
}

.title-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}

.title-aside {
  max-width: 360px;
  color: var(--ink-soft);
}

.title-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

.title-bar div {
  padding: 22px var(--gutter) 26px 0;
  border-right: 1px solid var(--line);
}

.title-bar div:first-child { padding-left: 0; }
.title-bar div:last-child { border-right: 0; }

.title-bar dt,
.credits dt,
.spec dt,
.account-facts dt,
.field label {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.title-bar dd,
.credits dd { margin: 0; font-weight: 600; }

.wall-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 64px var(--gutter) 28px;
}

.wall-head p { margin: 0; max-width: 36em; color: var(--ink-soft); }

.wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 var(--gutter) 72px;
}

.cut { margin: 0; }

.cut-screen {
  min-height: 240px;
  background: var(--night-2);
  border: 1px solid rgba(61, 143, 156, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
}

.cut-plate { padding: 28px 22px 24px; color: var(--ink); }

.cut-plate .no,
.steps .num {
  display: block;
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan-bright);
  margin-bottom: 10px;
}

.cut-plate h3 { color: var(--ink); }

.cut-plate p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.credits { margin: 32px 0 0; }

.credits div,
.spec div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.invite { text-align: left; }
.invite .lede { max-width: 32em; }
.invite .actions { margin-top: 28px; }

.page { padding: 0 0 4rem; }
.page.narrow { max-width: none; }

.page-hero,
.hero.compact,
.page > .hero.compact {
  min-height: auto;
  display: block;
  margin: 0;
  padding: 56px var(--gutter) 28px;
}

.page-hero h1,
.hero.compact h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  max-width: 22ch;
}

.page-body { padding: 24px 0 96px; }
.prose { max-width: 760px; }

.prose h2,
.panel h2,
.page h2,
.legal h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.prose a,
.legal a,
.note a { color: var(--teal-deep); }

.prose code,
.block code,
.legal code,
.fine code {
  font-family: ui-monospace, "IBM Plex Mono", Consolas, monospace;
  font-size: 0.9em;
  background: var(--teal-wash);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: var(--ink);
}

.note,
.notice,
.support-live-panel {
  padding: 24px 28px;
  border: 1px solid var(--line);
  margin-bottom: 32px;
  background: var(--panel);
  border-radius: var(--radius);
}

.block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.product-card h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.product-card .tag {
  margin: 0 0 12px;
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field input,
.field select,
.field textarea,
.account-form input,
.account-form select,
.account-form textarea,
.support-form input[type="text"],
.support-form input[type="email"],
.support-form select,
.support-form textarea,
.account-row input[type="email"] {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.field textarea,
.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-wrap { max-width: 720px; }

.site-footer {
  background: var(--night);
  color: var(--ink);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.site-footer .brand,
.site-footer .brand:hover,
.site-footer .brand i,
.site-footer .brand span { color: var(--ink); }

.footer-brand p {
  color: var(--ink-soft);
  max-width: 32em;
}

.footer-col h2 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  text-decoration: none;
}

.footer-col a:hover { color: var(--teal-deep); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer-bottom .fbn {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.footer-bottom a { color: var(--teal-deep); }

.desk-frame,
.still-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night);
}

.still-frame img,
.still-frame svg {
  width: 100%;
  display: block;
}

.still-caption {
  margin: 0;
  padding: 12px 16px 14px;
  background: var(--panel);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.gold { color: var(--teal); }

.panel { max-width: none; margin: 0; padding: 2.5rem var(--gutter); }

.account-panel {
  max-width: 760px;
  margin: 0;
  padding: 0 var(--gutter) 2rem;
}

.account-form label,
.support-address .label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 1rem 0 0.5rem;
}

.account-form label:first-child,
.support-form > label:first-of-type { margin-top: 0; }

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus,
.account-row input[type="email"]:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(143, 201, 212, 0.45);
  outline-offset: 1px;
}

.support-channel {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.support-address {
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.support-address a {
  color: var(--ink);
  font-size: 1.15rem;
  word-break: break-all;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.account-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-row input[type="email"] { flex: 1 1 16rem; }

.account-form .fine,
.fine {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.account-status { margin: 1.25rem 0 0; color: var(--ink-soft); }
.account-status.error { color: #e07070; }

.account-dashboard {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.account-facts {
  margin: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.account-facts dd {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.account-actions,
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.account-actions .btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

.plain {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.plain li + li { margin-top: 0.45rem; }

.legal {
  padding: 0 var(--gutter) 4rem;
  max-width: 760px;
}

.legal h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.legal p,
.legal ul,
.legal ol { margin: 0 0 0.85rem; color: var(--ink-soft); }

.legal ul,
.legal ol { padding-left: 1.2rem; }

.legal li + li { margin-top: 0.35rem; }

.legal-index {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.legal-index > li {
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-index p { margin: 0.4rem 0 0; }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.platform-eyebrow {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.platform-card.soon .platform-eyebrow { color: var(--ink-soft); }

.platform-card .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.btn.disabled,
span.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.solene-live {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  font-family: var(--sans);
}

.solene-live-fab {
  border: 0;
  border-radius: 8px;
  background: var(--teal-fill);
  color: var(--ink);
  padding: 0.85rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--glow);
}

.solene-live-panel {
  position: absolute;
  right: 0;
  bottom: 3.4rem;
  width: min(380px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 6rem));
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow);
}

.solene-live-panel[hidden] { display: none !important; }

.solene-live-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.solene-live-head strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.solene-live-status {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.solene-live-status::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
}

.solene-live-close {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.solene-live-close:hover { color: var(--ink); }

.solene-live-msgs {
  flex: 1;
  overflow: auto;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--paper);
}

.solene-live-bubble {
  max-width: 92%;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
  line-height: 1.4;
  border-radius: 10px;
}

.solene-live-bubble.agent {
  align-self: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
}

.solene-live-bubble.user {
  align-self: flex-end;
  background: var(--teal-fill);
  border: 1px solid var(--teal-fill);
  color: var(--ink);
}

.solene-live-who {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
  font-family: var(--sans);
}

.solene-live-form {
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.solene-live-email,
.solene-live-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.solene-live-row { display: flex; gap: 0.45rem; }

.solene-live-send {
  border: 0;
  border-radius: 8px;
  background: var(--teal-fill);
  color: var(--ink);
  padding: 0 0.9rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.process-rail {
  margin-top: 12px;
}

.process-rail article {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process-rail article:last-child { border-bottom: 1px solid var(--line); }

.process-rail h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process-rail p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 46em;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.scope-grid article {
  padding: 1.5rem 1.4rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.scope-grid h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.scope-grid ul { margin: 0; }

.cap-index {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.cap-index article {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(20px, 4vw, 56px);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.cap-index article:last-child { border-bottom: 1px solid var(--line); }

.cap-index h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cap-index p { margin: 0 0 0.9em; color: var(--ink-soft); }
.cap-index p:last-child { margin-bottom: 0; }

.lead-still {
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto 8px;
  padding-inline: var(--gutter);
  background: transparent;
  border: 0;
}

.lead-still img {
  border-radius: 12px;
  border: 1px solid var(--line);
}

.mail-grid.two { grid-template-columns: 1fr 1fr; }

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px var(--gutter);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  color: var(--ink);
}

@media (max-width: 1100px) and (min-width: 721px) {
  .wall,
  .feature-grid,
  .door-grid,
  .contact-grid,
  .how-grid,
  .lane-grid,
  .mail-grid,
  .mail-grid.two,
  .scope-grid,
  .fact-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .platforms,
  .hero { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .hero { min-height: auto; padding-top: 36px; }
  .door-grid,
  .contact-grid,
  .how-grid,
  .lane-grid,
  .mail-grid,
  .mail-grid.two,
  .scope-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-cta { display: none; }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px var(--gutter) 28px;
    background: rgba(14, 23, 29, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open { display: flex; }

  .title-top,
  .title-bar,
  .split,
  .wall-head,
  .wall,
  .tools,
  .feature-grid,
  .steps,
  .block,
  .footer-grid,
  .spec div,
  .credits div,
  .product-card,
  .contact-grid,
  .door-grid,
  .how-grid,
  .lane-grid,
  .mail-grid,
  .mail-grid.two,
  .fact-strip,
  .principal,
  .process-rail article,
  .cap-index article,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .title-bar div,
  .title-bar div:first-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom { flex-direction: column; }
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 8px auto 48px;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip div {
  padding: 22px 20px 24px 0;
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child { border-right: 0; padding-right: 0; }

.fact-strip dt {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.fact-strip dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pull {
  margin: 0 0 1.4em;
  padding: 0 0 0 1.1em;
  border-left: 3px solid var(--teal);
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 28em;
}

.how-grid,
.lane-grid,
.mail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.how-grid article,
.lane-grid article,
.mail-grid article {
  padding: 1.5rem 1.4rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.how-grid h3,
.lane-grid h3,
.mail-grid h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.how-grid p,
.lane-grid p,
.mail-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.how-grid .num,
.lane-grid .num,
.process-rail .num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.principal {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-wash);
  color: var(--teal-deep);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.prose-long {
  max-width: 42em;
}

.prose-long p {
  margin: 0 0 1.15em;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.prose-long p:last-child { margin-bottom: 0; }

.measure {
  max-width: 44em;
  color: var(--ink-soft);
}

.band-dark .measure,
.band-dark .section-lede,
.band-dark p {
  color: var(--ink-soft);
}

.band-dark h2 { color: var(--ink); }
.band-dark .kicker { color: var(--teal-deep); }
.band-dark .pull { color: var(--ink); }

.band-dark a { color: var(--teal-deep); }
.band-dark a:hover { color: var(--ink); }

.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.tier-table th,
.tier-table td {
  text-align: left;
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.tier-table th {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.tier-table td { color: var(--ink-soft); }
.tier-table td:first-child { color: var(--ink); font-weight: 600; }

.page-hero .lede { max-width: 44em; }

.close {
  padding: 88px var(--gutter);
}

.close h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

@media (max-width: 1100px) and (min-width: 721px) {
  .fact-strip,
  .how-grid,
  .lane-grid,
  .mail-grid,
  .scope-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .fact-strip,
  .how-grid,
  .lane-grid,
  .mail-grid,
  .principal,
  .process-rail article,
  .cap-index article,
  .scope-grid { grid-template-columns: 1fr; }

  .fact-strip div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-strip div:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
