:root {
  --paper: #f5f1e8;
  --paper-bright: #fffdf7;
  --ink: #1e231f;
  --ink-soft: #323a34;
  --signal: #bb431d;
  --signal-dark: #8e2e12;
  --sage: #dde3d7;
  --sage-deep: #8b957d;
  --line: rgba(30, 35, 31, 0.17);
  --line-light: rgba(255, 253, 247, 0.18);
  --muted: #677067;
  --shadow: 0 26px 70px rgba(25, 31, 26, 0.16);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.6rem;
  --shell: min(1180px, calc(100vw - 40px));
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #e86b3e;
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 8rem 0;
}

.section--paper {
  background: var(--paper-bright);
}

.section--sage {
  background: var(--sage);
}

.section--ink {
  color: var(--paper-bright);
  background: var(--ink);
}

.announcement {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.45rem 1.2rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ed7650;
  box-shadow: 0 0 0 4px rgba(237, 118, 80, 0.18);
}

.announcement__sep {
  color: rgba(255, 253, 247, 0.45);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(30, 35, 31, 0.05);
}

.nav-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand__wordmark {
  width: 82px;
  height: auto;
}

.brand__divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}

.brand__product {
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
  font-size: 0.83rem;
  font-weight: 680;
}

.site-nav a {
  position: relative;
  padding-block: 0.35rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__auth {
  display: none;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.auth-link,
.inline-action,
.auth-switch-copy button,
.auth-switch-copy a,
.closing__login {
  padding: 0.45rem 0.2rem;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.auth-link {
  font-size: 0.78rem;
}

.auth-link:hover,
.inline-action:hover,
.auth-switch-copy button:hover,
.auth-switch-copy a:hover {
  color: var(--signal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
}

.button--ink {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--ink:hover {
  background: var(--signal);
}

.button--signal {
  color: var(--paper-bright);
  background: var(--signal);
}

.button--signal:hover {
  background: var(--signal-dark);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

.eyebrow--light {
  color: #ed7650;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 4rem;
  left: calc(50% - 80px);
  width: 1px;
  height: calc(100% - 7rem);
  background: var(--line);
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(510px, 1.14fr);
  align-items: center;
  gap: 5.5rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-intro h2,
.mobile-copy h2,
.roadmap-heading h2,
.closing h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.6rem, 6vw, 6.4rem);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 {
  font-size: clamp(4rem, 6.1vw, 6.6rem);
}

.hero h1 em,
.section-intro h2 em,
.mobile-copy h2 em,
.roadmap-heading h2 em,
.closing h2 em {
  color: var(--signal);
  font-family: var(--serif);
  font-weight: 400;
}

.hero__lede {
  max-width: 580px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 3rem;
}

.text-link {
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 760;
}

.text-link span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero__facts div {
  padding-right: 1rem;
}

.hero__facts div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hero__facts dt {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__facts dd {
  font-size: 0.84rem;
  font-weight: 720;
}

.hero__visual {
  position: relative;
  min-height: 665px;
  align-self: end;
}

.preview-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-frame {
  position: absolute;
  top: 2.1rem;
  right: 0;
  width: min(680px, 100%);
  height: 555px;
  display: grid;
  grid-template-columns: 62px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: #f7f4ec;
  background: #222a25;
  box-shadow: var(--shadow);
}

.app-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.35rem;
  padding: 1.2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.app-rail__logo {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 9px;
  color: white;
  background: var(--signal);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.rail-dot {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 6px;
}

.rail-dot--active {
  border-color: #f1a185;
  background: var(--signal);
  box-shadow: inset 0 0 0 5px #222a25;
}

.app-main {
  padding: 1.5rem;
}

.app-topbar,
.panel-heading,
.lead-card,
.next-action,
.mobile-owner,
.mobile-timeline {
  display: flex;
  align-items: center;
}

.app-topbar {
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.app-topbar strong,
.panel-heading strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1rem;
}

.app-kicker {
  color: rgba(247, 244, 236, 0.55);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #f5c4b4;
  background: #343e37;
  font-size: 0.7rem;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.metric-row article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: #2a332d;
}

.metric-row span,
.metric-row small,
.lead-card small,
.next-action small {
  display: block;
  color: rgba(247, 244, 236, 0.6);
  font-size: 0.62rem;
}

.metric-row strong {
  display: block;
  margin: 0.45rem 0 0.25rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.lead-panel {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: #f3f0e7;
  color: var(--ink);
}

.panel-heading {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.lead-panel .app-kicker {
  color: var(--muted);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(30, 35, 31, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 760;
  text-transform: uppercase;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f8a5f;
}

.lead-card {
  gap: 0.75rem;
  padding: 0.8rem;
  border-top: 1px solid var(--line);
}

.lead-card--active {
  margin-inline: -0.35rem;
  padding-inline: 1.15rem;
  border: 0;
  border-radius: 0.7rem;
  background: #fffdf7;
  box-shadow: 0 10px 24px rgba(30, 35, 31, 0.08);
}

.lead-card__source {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--signal-dark);
  background: #f3d8cc;
  font-size: 0.62rem;
  font-weight: 820;
}

.lead-card div {
  min-width: 0;
  flex: 1;
}

.lead-card strong {
  display: block;
  font-size: 0.78rem;
}

.lead-card small {
  color: var(--muted);
}

.owner-chip {
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  color: #3b6647;
  background: #dce9dd;
  font-size: 0.58rem;
  font-weight: 760;
}

.owner-chip--muted {
  color: var(--muted);
  background: #e7e8e1;
}

.next-action {
  gap: 0.7rem;
  margin-top: 0.65rem;
  padding: 0.75rem;
  border-radius: 0.7rem;
  color: #fffdf7;
  background: var(--signal);
}

.next-action__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.next-action div {
  flex: 1;
}

.next-action small {
  color: rgba(255, 253, 247, 0.9);
}

.next-action strong {
  display: block;
  font-size: 0.72rem;
}

.next-action button {
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 999px;
  color: var(--signal);
  background: white;
  font-size: 0.6rem;
  font-weight: 800;
}

.phone-card {
  position: absolute;
  z-index: 3;
  right: -1.3rem;
  bottom: 0;
  width: 190px;
  min-height: 330px;
  padding: 1.4rem 1.1rem;
  border: 7px solid #131814;
  border-radius: 2rem;
  color: var(--ink);
  background: #fffdf7;
  box-shadow: 0 28px 55px rgba(30, 35, 31, 0.25);
  transform: rotate(2.5deg);
}

.phone-card::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 62px;
  height: 13px;
  border-radius: 0 0 10px 10px;
  background: #131814;
  content: "";
  transform: translateX(-50%);
}

.phone-card__time {
  display: block;
  margin-bottom: 2.7rem;
  font-size: 0.55rem;
  font-weight: 800;
}

.phone-card__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--signal);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.phone-card > strong {
  display: block;
  font-size: 1.1rem;
}

.phone-card > small {
  color: var(--muted);
  font-size: 0.63rem;
}

.phone-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 1.6rem 0 1rem;
}

.phone-card__actions span {
  padding: 0.5rem 0.2rem;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.55rem;
  font-weight: 750;
  text-align: center;
}

.phone-card__actions span:last-child {
  background: var(--signal);
}

.phone-card__note {
  display: block;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.45;
}

.signal-strip {
  color: var(--paper-bright);
  background: var(--signal);
}

.signal-strip__inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip__inner i {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.section-intro > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.2rem;
}

.section-intro--split .eyebrow {
  margin-bottom: 1.35rem;
}

.section-intro h2,
.mobile-copy h2,
.roadmap-heading h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.2vw, 5.4rem);
}

.section-intro > p,
.section-intro--split > p,
.roadmap-heading > p {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.workflow {
  margin-bottom: 5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.workflow__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f0ede5;
}

.workflow__tabs button {
  min-height: 70px;
  padding: 0.9rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 760;
  text-align: left;
}

.workflow__tabs button:last-child {
  border-right: 0;
}

.workflow__tabs button span {
  display: block;
  margin-bottom: 0.2rem;
  color: #596159;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.workflow__tabs button.is-active {
  color: white;
  background: var(--ink);
}

.workflow__tabs button.is-active span {
  color: #ed7650;
}

.workflow__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: var(--paper);
}

.workflow__copy {
  padding: 3.4rem;
}

.workflow__copy h3 {
  max-width: 500px;
  margin: 1.3rem 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.workflow__copy p {
  max-width: 530px;
  color: var(--muted);
}

.workflow__copy ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.workflow__copy li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.83rem;
  font-weight: 650;
}

.workflow__copy li::before {
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.workflow-label,
.capability-card__tag {
  display: inline-flex;
  width: fit-content;
  color: var(--signal);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workflow__demo {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: white;
  background: var(--ink);
}

.demo-caption {
  margin-bottom: 0.8rem;
  color: #eaa58f;
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-window {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: #2a332d;
}

.demo-window__line {
  display: block;
  width: 100%;
  height: 9px;
  margin: 0.75rem 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.demo-window__line--short {
  width: 34%;
}

.demo-window__line--mid {
  width: 62%;
}

.demo-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  margin: 1.3rem 0;
  padding: 1.1rem;
  border-left: 3px solid var(--signal);
  border-radius: 0.75rem;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.demo-event__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--signal);
  font-weight: 800;
}

.demo-event strong,
.demo-event small {
  display: block;
}

.demo-event strong {
  font-size: 0.78rem;
}

.demo-event small,
.demo-event i {
  color: var(--muted);
  font-size: 0.59rem;
}

.demo-event i {
  font-style: normal;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  position: relative;
  min-height: 285px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.capability-card h3 {
  margin: 4.7rem 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.capability-card--signal {
  color: white;
  background: var(--signal);
}

.capability-card--signal p,
.capability-card--signal .capability-card__number {
  color: var(--paper-bright);
}

.capability-card--signal .capability-card__tag {
  color: var(--paper-bright);
}

.mobile-section {
  position: relative;
  overflow: hidden;
  color: var(--paper-bright);
  background: #202923;
}

.mobile-section::after {
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.mobile-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 7rem;
}

.mobile-stage {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
}

.mobile-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.mobile-orbit--one {
  width: 510px;
  height: 510px;
}

.mobile-orbit--two {
  width: 370px;
  height: 370px;
}

.mobile-device {
  position: relative;
  z-index: 2;
  width: 290px;
  min-height: 585px;
  padding: 1.4rem 1.25rem;
  border: 8px solid #111713;
  border-radius: 2.8rem;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.mobile-device::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 80px;
  height: 20px;
  border-radius: 0 0 15px 15px;
  background: #111713;
  content: "";
  transform: translateX(-50%);
}

.mobile-device__bar {
  display: flex;
  justify-content: space-between;
  margin: 0 0.45rem 3.4rem;
  font-size: 0.62rem;
  font-weight: 800;
}

.mobile-device__bar i {
  width: 18px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 3px;
}

.mobile-device__kicker {
  color: var(--signal);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-device h3 {
  margin: 0.65rem 0 0.2rem;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.mobile-device > p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.77rem;
}

.mobile-owner {
  gap: 0.65rem;
  padding: 0.8rem 0;
  border-block: 1px solid var(--line);
}

.mobile-owner > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
}

.mobile-owner div {
  flex: 1;
}

.mobile-owner small,
.mobile-owner strong {
  display: block;
}

.mobile-owner small,
.mobile-timeline small {
  color: var(--muted);
  font-size: 0.56rem;
}

.mobile-owner strong,
.mobile-timeline strong {
  font-size: 0.72rem;
}

.mobile-owner i {
  color: #3b6647;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 760;
}

.mobile-device__button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin: 1.3rem 0;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--signal);
  font-size: 0.67rem;
  font-weight: 790;
}

.mobile-device__button span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.mobile-timeline {
  gap: 0.65rem;
  padding: 0.85rem;
  border-radius: 0.75rem;
  background: #eeeee7;
}

.mobile-timeline > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.mobile-timeline div {
  flex: 1;
}

.mobile-timeline small,
.mobile-timeline strong {
  display: block;
}

.mobile-timeline > i {
  color: var(--muted);
  font-size: 0.56rem;
  font-style: normal;
}

.float-note {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f9d3c6;
  background: #303b33;
  font-size: 0.64rem;
  font-weight: 760;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.float-note--top {
  top: 22%;
  right: 1%;
}

.float-note--bottom {
  bottom: 22%;
  left: 0;
}

.mobile-copy {
  position: relative;
  z-index: 2;
}

.mobile-copy h2 em {
  color: #ed7650;
}

.mobile-copy__lede {
  max-width: 600px;
  margin: 1.8rem 0 2.2rem;
  color: rgba(255, 253, 247, 0.68);
  font-size: 1.04rem;
}

.mobile-principles {
  border-top: 1px solid var(--line-light);
}

.mobile-principles article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}

.mobile-principles article > span {
  color: #ed7650;
  font-family: var(--serif);
  font-style: italic;
}

.mobile-principles strong {
  display: block;
  margin-bottom: 0.35rem;
}

.mobile-principles p {
  margin: 0;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.82rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.platform-row > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 760;
}

.platform-row small {
  color: rgba(255, 253, 247, 0.48);
  font-size: 0.55rem;
  font-weight: 600;
}

.section-intro--split {
  align-items: end;
}

.section--sage .section-intro--split > p {
  color: #566057;
}

.section--sage .eyebrow {
  color: var(--signal-dark);
}

.integration-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.integration-controls button {
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 760;
}

.integration-controls button.is-active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.integration-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 128px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 253, 247, 0.52);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.integration-card:hover {
  background: var(--paper-bright);
  transform: translateY(-2px);
}

.integration-card.is-hidden {
  display: none;
}

.integration-card__logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper-bright);
}

.integration-card__logo img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.integration-card__logo img[src$="webhook.svg"] {
  width: 46px;
  height: 46px;
}

.integration-card__fit {
  display: inline-flex;
  width: max-content;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.integration-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.integration-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.integration-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  margin-top: 2.3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.integration-note span {
  color: var(--signal-dark);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.integration-note p {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.roadmap-section {
  background: var(--paper-bright);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 7rem;
}

.roadmap-heading {
  position: sticky;
  top: 8rem;
}

.roadmap-heading .eyebrow {
  margin-bottom: 1.7rem;
}

.roadmap-heading h2 {
  margin-bottom: 1.5rem;
}

.roadmap-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  min-height: 230px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.roadmap-list__index {
  color: var(--signal);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-list h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.roadmap-list p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.section-intro--light {
  color: var(--paper-bright);
}

.section-intro--light > p {
  color: rgba(255, 253, 247, 0.62);
}

.section-intro--light h2 em {
  color: #ed7650;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.resource-card {
  min-height: 320px;
  padding: 1.6rem;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  color: var(--ink);
  background: #ed7650;
}

.resource-card > span {
  display: block;
  margin-bottom: 5rem;
  color: #ed7650;
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card:hover > span,
.resource-card:focus-visible > span {
  color: var(--ink);
}

.resource-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.resource-card p {
  margin-bottom: 1.5rem;
  color: rgba(255, 253, 247, 0.56);
  font-size: 0.78rem;
}

.resource-card:hover p,
.resource-card:focus-visible p {
  color: rgba(30, 35, 31, 0.72);
}

.resource-card i {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 7rem;
}

.faq-grid h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.3rem;
  right: 0;
  content: "+";
  color: var(--signal);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  padding: 0 3rem 1.6rem 0;
  color: var(--muted);
}

.closing {
  padding: 7rem 0;
  color: var(--paper-bright);
  background: var(--signal);
}

.closing__inner {
  text-align: center;
}

.closing .eyebrow {
  justify-content: center;
  color: var(--paper-bright);
}

.closing h2 em {
  color: var(--paper-bright);
}

.closing p:not(.eyebrow) {
  max-width: 610px;
  margin: 1.6rem auto 2rem;
  color: var(--paper-bright);
}

.closing .button--signal {
  color: var(--ink);
  background: var(--paper-bright);
}

.closing .button--signal:hover {
  color: white;
  background: var(--ink);
}

.closing__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
}

.closing__login {
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.75rem;
}

.closing__login strong {
  color: var(--paper-bright);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: var(--paper-bright);
  background: #151a17;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.brand--footer {
  margin-bottom: 1rem;
  width: fit-content;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--paper-bright);
}

.site-footer__grid > div:first-child p {
  max-width: 360px;
  color: rgba(255, 253, 247, 0.48);
  font-size: 0.78rem;
}

.site-footer__grid > div:not(:first-child) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.site-footer__grid > div:not(:first-child) > span {
  margin-bottom: 0.5rem;
  color: #ed7650;
  font-size: 0.6rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) a:hover {
  color: #ed7650;
}

.site-footer__grid p {
  margin: 0;
  color: rgba(255, 253, 247, 0.5);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 247, 0.52);
  font-size: 0.62rem;
}

.note-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 3rem;
  border: 0;
  border-radius: 1.25rem;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.note-dialog::backdrop,
.auth-dialog::backdrop {
  background: rgba(16, 20, 17, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.dialog-kicker {
  display: block;
  margin-bottom: 1rem;
  color: var(--signal);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-dialog h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.05;
}

.note-dialog h3 {
  margin: 1.8rem 0 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-dialog p,
.note-dialog ol {
  color: var(--muted);
}

.auth-dialog {
  width: min(1020px, calc(100vw - 32px));
  max-width: none;
  height: min(760px, calc(100vh - 32px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.35rem;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.auth-dialog [hidden] {
  display: none !important;
}

.auth-dialog__layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  height: 100%;
}

.auth-dialog__aside {
  display: flex;
  min-width: 0;
  padding: 2.8rem;
  color: var(--paper-bright);
  background: var(--ink);
  flex-direction: column;
  justify-content: space-between;
}

.auth-brand,
.auth-mobile-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--paper-bright);
}

.auth-brand img,
.auth-mobile-brand img {
  width: 82px;
  height: auto;
}

.auth-brand > span,
.auth-mobile-brand > span {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.auth-brand strong,
.auth-mobile-brand strong {
  font-size: 0.69rem;
  letter-spacing: 0.16em;
}

.auth-dialog__aside-copy > span {
  display: block;
  margin-bottom: 1rem;
  color: #ed7650;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-dialog__aside h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.1vw, 3.1rem);
  font-weight: 400;
  line-height: 1.04;
}

.auth-dialog__aside ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-dialog__aside li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.75rem;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.79rem;
  line-height: 1.5;
}

.auth-dialog__aside li i {
  color: #ed7650;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 820;
}

.auth-dialog__aside > p {
  margin: 0;
  color: rgba(255, 253, 247, 0.5);
  font-size: 0.72rem;
}

.auth-dialog__content {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 2.8rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.auth-dialog__close {
  z-index: 2;
  background: var(--paper-bright);
}

.auth-mobile-brand {
  display: none;
}

.auth-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 236px;
  margin: 0 3.2rem 2.2rem 0;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.auth-mode-switch button {
  min-height: 38px;
  padding: 0.5rem 0.8rem;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 780;
}

.auth-mode-switch button.is-active {
  color: var(--paper-bright);
  background: var(--ink);
}

.auth-dialog__content h2 {
  margin-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.auth-intro {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.oauth-button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 760;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.oauth-button:hover {
  border-color: rgba(30, 35, 31, 0.42);
  background: var(--paper);
  transform: translateY(-1px);
}

.oauth-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.oauth-button--compact {
  margin-top: 0.2rem;
}

.oauth-onboarding-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.oauth-onboarding-note[data-tone="error"] {
  color: #9c2f16;
}

.auth-divider {
  position: relative;
  margin: 1.25rem 0;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.auth-divider::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.auth-divider span {
  position: relative;
  z-index: 1;
  padding: 0 0.7rem;
  background: var(--paper-bright);
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.auth-form-grid--context {
  margin-top: 1.2rem;
}

.auth-field {
  display: grid;
  min-width: 0;
  gap: 0.42rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 730;
}

.auth-field--full {
  grid-column: 1 / -1;
}

.auth-field input,
.auth-field select {
  width: 100%;
  min-height: 49px;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--ink);
  background: white;
  font-size: 1rem;
  font-weight: 500;
}

.auth-field input:hover,
.auth-field select:hover {
  border-color: rgba(30, 35, 31, 0.34);
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: var(--signal);
}

.auth-field input[aria-invalid="true"],
.auth-field select[aria-invalid="true"] {
  border-color: var(--signal-dark);
  background: #fff8f4;
}

.auth-field > small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 550;
}

.choice-card input,
.source-choices input {
  accent-color: var(--signal);
}

.email-verification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
}

.email-verification__send {
  min-height: 42px;
  padding: 0.65rem 0.8rem;
  border: 0;
  border-radius: 999px;
  color: var(--paper-bright);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 780;
  white-space: nowrap;
}

.email-verification > span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.otp-panel {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(187, 67, 29, 0.36);
  border-radius: 0.8rem;
  background: #fff7f1;
}

.otp-panel__heading > span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.otp-panel__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.otp-input {
  max-width: 230px;
  font-variant-numeric: tabular-nums;
  font-weight: 780 !important;
  letter-spacing: 0.55em;
  text-align: center;
}

.otp-panel__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
}

.email-verified {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  color: #356044;
  font-size: 0.76rem;
  font-weight: 760;
}

.email-verified span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #356044;
}

.inline-action {
  color: var(--signal-dark);
  font-size: 0.74rem;
}

.auth-feedback {
  min-height: 1.45rem;
  margin: 0;
  color: var(--signal-dark);
  font-size: 0.74rem;
  line-height: 1.45;
}

.auth-feedback[data-tone="error"] {
  color: #9c2f16;
}

.auth-feedback[data-tone="success"] {
  color: #356044;
}

.auth-submit {
  width: 100%;
}

.button[disabled],
.oauth-button[disabled],
.inline-action[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.oauth-button[data-google-state="checking"] {
  cursor: progress;
}

.oauth-button[data-google-state="unavailable"],
.oauth-button[data-google-state="error"] {
  cursor: not-allowed;
}

.auth-switch-copy {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.auth-switch-copy button,
.auth-switch-copy a {
  color: var(--signal-dark);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.signup-form {
  gap: 0;
}

.signup-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.signup-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.signup-progress li::before {
  position: absolute;
  z-index: 0;
  top: 14px;
  left: -50%;
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.signup-progress li:first-child::before {
  display: none;
}

.signup-progress li span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-bright);
  font-size: 0.68rem;
  font-weight: 800;
}

.signup-progress li.is-active,
.signup-progress li.is-complete {
  color: var(--ink);
  font-weight: 750;
}

.signup-progress li.is-active span,
.signup-progress li.is-complete span {
  border-color: var(--signal);
  color: var(--paper-bright);
  background: var(--signal);
}

.signup-progress li.is-complete::before,
.signup-progress li.is-active::before {
  background: var(--signal);
}

.auth-step,
.source-choices {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.auth-step__legend {
  display: grid;
  width: 100%;
  gap: 0.22rem;
  margin-bottom: 1.2rem;
}

.auth-step__legend > span {
  color: var(--signal-dark);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-step__legend strong {
  font-size: 1.15rem;
}

.auth-step__legend small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-card {
  display: flex;
  min-width: 0;
  min-height: 68px;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  border-color: rgba(30, 35, 31, 0.4);
  transform: translateY(-1px);
}

.choice-card:has(input:checked) {
  border-color: var(--signal);
  background: #fff3ed;
}

.choice-card input {
  width: 16px;
  height: 16px;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
}

.choice-card > span {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
}

.choice-card strong {
  font-size: 0.79rem;
  line-height: 1.35;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.choice-card--full {
  grid-column: 1 / -1;
}

.auth-field--other {
  margin-top: 0.8rem;
}

.auth-question {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.79rem;
  font-weight: 760;
}

.choice-grid--team {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-grid--team .choice-card {
  min-height: 82px;
  align-items: center;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.choice-grid--team .choice-card input {
  margin-top: 0;
}

.source-choices {
  margin-top: 1.2rem;
}

.source-choices legend {
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 760;
}

.source-choices legend small {
  color: var(--muted);
  font-weight: 520;
}

.source-choices > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.source-choices label {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-size: 0.69rem;
}

.source-choices label:has(input:checked) {
  border-color: var(--signal);
  background: #fff3ed;
}

.auth-form-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.auth-form-actions > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
}

.auth-form-actions .button {
  justify-self: end;
}

.auth-back {
  justify-self: start;
  min-height: 44px;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 760;
}

.signup-complete {
  padding-top: 2.5rem;
  text-align: center;
}

.signup-complete__mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--signal);
  font-size: 1.6rem;
}

.signup-complete .dialog-kicker {
  text-align: center;
}

.signup-complete p {
  max-width: 440px;
  margin: 0 auto 1.4rem;
  color: var(--muted);
}

.signup-complete dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.signup-complete dl div {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--paper);
}

.signup-complete dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signup-complete dd {
  margin: 0.25rem 0 0;
  font-size: 0.76rem;
  font-weight: 760;
}

.not-found {
  display: flex;
  width: var(--shell);
  min-height: 100vh;
  margin-inline: auto;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 0 7rem;
}

.not-found > div {
  max-width: 760px;
}

.not-found h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.not-found h1 em {
  color: var(--signal);
  font-family: var(--serif);
  font-weight: 400;
}

.not-found p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.note-dialog ol {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.3rem;
}

.js .reveal {
  transform: translateY(20px);
  transition: transform 600ms ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 1rem;
  }

  .nav-shell {
    gap: 1rem;
  }

  .nav-auth {
    gap: 0.35rem;
  }

  .nav-auth .button {
    padding-inline: 0.8rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
    gap: 2.5rem;
  }

  .phone-card {
    right: -0.5rem;
  }

  .mobile-grid,
  .roadmap-grid,
  .faq-grid {
    gap: 4rem;
  }

  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-dialog__aside,
  .auth-dialog__content {
    padding: 2.2rem;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .section {
    padding: 6rem 0;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-auth {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 45;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.25rem;
    background: var(--paper);
    font-size: 1.8rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__auth {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.7rem;
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
  }

  .site-nav__auth .auth-link,
  .site-nav__auth .button {
    min-height: 50px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
  }

  .site-nav a {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 620px;
  }

  .app-frame {
    left: 0;
    width: calc(100% - 40px);
  }

  .section-intro,
  .mobile-grid,
  .roadmap-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 1.3rem;
  }

  .section-intro > .eyebrow {
    margin-bottom: 0.2rem;
  }

  .section-intro--split .eyebrow {
    margin-bottom: 0.9rem;
  }

  .workflow__tabs {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .workflow__panel {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-grid {
    gap: 3rem;
  }

  .mobile-stage {
    order: 2;
    min-height: 620px;
  }

  .integration-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-heading {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .auth-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
  }

  .auth-dialog__layout {
    grid-template-columns: 1fr;
  }

  .auth-dialog__aside {
    display: none;
  }

  .auth-dialog__content {
    padding: 2.2rem;
  }

  .auth-mobile-brand {
    display: inline-flex;
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .announcement {
    min-height: 44px;
    gap: 0.45rem;
    font-size: 0.56rem;
    line-height: 1.4;
  }

  .announcement__sep {
    display: none;
  }

  .nav-shell {
    min-height: 66px;
    gap: 0.65rem;
  }

  .nav-auth .auth-link {
    display: none;
  }

  .nav-auth .button {
    min-height: 40px;
    padding: 0.6rem 0.8rem;
  }

  .site-nav {
    top: 110px;
  }

  .section {
    padding: 4.8rem 0;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .hero__lede {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    padding: 0.75rem 0;
  }

  .hero__facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero__visual {
    min-height: 520px;
  }

  .app-frame {
    width: 100%;
    height: 450px;
    grid-template-columns: 44px 1fr;
  }

  .app-rail {
    gap: 1rem;
  }

  .app-rail__logo {
    width: 28px;
    height: 28px;
  }

  .rail-dot {
    width: 15px;
    height: 15px;
  }

  .app-main {
    padding: 1rem;
  }

  .metric-row article {
    padding: 0.7rem;
  }

  .metric-row strong {
    font-size: 1.45rem;
  }

  .lead-card:nth-of-type(2) {
    display: none;
  }

  .phone-card {
    display: none;
  }

  .signal-strip__inner {
    min-height: 56px;
    overflow-x: auto;
    justify-content: flex-start;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .section-intro h2,
  .mobile-copy h2,
  .roadmap-heading h2,
  .closing h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .workflow__copy,
  .workflow__demo {
    padding: 1.5rem;
  }

  .workflow__copy h3 {
    font-size: 2rem;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 250px;
  }

  .mobile-stage {
    min-height: 600px;
  }

  .mobile-orbit--one {
    width: 420px;
    height: 420px;
  }

  .float-note--top {
    right: -0.5rem;
  }

  .float-note--bottom {
    left: -0.5rem;
  }

  .integration-controls {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .integration-controls button {
    flex: 0 0 auto;
  }

  .integration-card {
    grid-template-columns: auto 1fr;
  }

  .integration-card__fit {
    grid-column: 2;
  }

  .integration-note {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .roadmap-list li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 270px;
  }

  .resource-card > span {
    margin-bottom: 3.5rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__grid > div:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .note-dialog {
    padding: 2.6rem 1.3rem 1.5rem;
  }

  .auth-dialog {
    width: 100vw;
    height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .auth-dialog__content {
    padding: 1.25rem;
  }

  .auth-dialog__close {
    top: 0.9rem;
    right: 0.9rem;
  }

  .auth-mobile-brand {
    margin-bottom: 1.15rem;
  }

  .auth-mode-switch {
    width: calc(100% - 52px);
    margin: 0 52px 1.7rem 0;
  }

  .auth-dialog__content h2 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .auth-form-grid,
  .choice-grid--roles,
  .signup-complete dl {
    grid-template-columns: 1fr;
  }

  .choice-grid--team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card--full {
    grid-column: auto;
  }

  .email-verification {
    align-items: stretch;
    flex-direction: column;
  }

  .email-verification__send {
    white-space: normal;
  }

  .otp-input {
    max-width: none;
  }

  .auth-form-actions {
    position: sticky;
    z-index: 2;
    bottom: -1.25rem;
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
    background: var(--paper-bright);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    transform: none;
  }
}
