:root {
  --ink: #10231d;
  --ink-soft: #344b43;
  --muted: #667a72;
  --paper: #fbfdfc;
  --surface: #ffffff;
  --surface-soft: #f1f7f4;
  --line: #dbe7e1;
  --brand: #087f5b;
  --brand-dark: #056548;
  --brand-pale: #dff5eb;
  --blue: #2f6fed;
  --violet: #7257d5;
  --amber: #d8891c;
  --shadow: 0 20px 60px rgba(25, 61, 48, 0.1);
  --shadow-sm: 0 8px 30px rgba(25, 61, 48, 0.07);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 8% 7%, rgba(8, 127, 91, 0.08), transparent 27rem),
    radial-gradient(circle at 95% 22%, rgba(47, 111, 237, 0.06), transparent 25rem);
  content: "";
  pointer-events: none;
}

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

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

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

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(219, 231, 225, 0.75);
  background: rgba(251, 253, 252, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(8, 127, 91, 0.22);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(8, 127, 91, 0.2);
}

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

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: #bdd4ca;
  background: var(--surface-soft);
}

.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #20b883;
  box-shadow: 0 0 0 5px rgba(32, 184, 131, 0.12);
}

.hero {
  overflow: hidden;
  padding: 92px 0 84px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.65rem, 3.7vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hero-copy h1 span,
.waitlist-copy h1 span {
  color: var(--brand);
}

.hero-copy > p,
.waitlist-copy > p {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
}

.product-stage {
  position: relative;
}

.product-stage::before {
  position: absolute;
  inset: -35px -70px -55px -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 127, 91, 0.12), transparent 66%);
  content: "";
  filter: blur(10px);
}

.app-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(189, 212, 202, 0.9);
  border-radius: 22px;
  background: white;
  box-shadow: 0 36px 90px rgba(19, 57, 44, 0.17);
}

.app-bar {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fcfefd;
}

.app-dots {
  display: flex;
  gap: 5px;
}

.app-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbd9d3;
}

.app-label {
  color: #74867f;
  font-size: 0.67rem;
  font-weight: 700;
}

.app-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--brand);
  font-size: 0.64rem;
  font-weight: 700;
}

.app-status i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #24bd86;
}

.app-body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 62px 190px 1fr;
}

.app-sidebar {
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  background: #f7faf8;
}

.app-mini-logo {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--brand);
  font-size: 0.66rem;
  font-weight: 800;
}

.app-nav-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 8px auto;
  place-items: center;
  border-radius: 10px;
  color: #71827b;
}

.app-nav-icon.active {
  color: var(--brand);
  background: var(--brand-pale);
}

.app-nav-icon svg {
  width: 16px;
  height: 16px;
}

.conversation-list {
  border-right: 1px solid var(--line);
  background: white;
}

.conversation-head {
  padding: 17px 15px 13px;
  border-bottom: 1px solid var(--line);
}

.conversation-title {
  font-size: 0.76rem;
  font-weight: 800;
}

.search-bar {
  height: 29px;
  margin-top: 11px;
  border-radius: 8px;
  background: #f2f6f4;
}

.conversation-row {
  display: flex;
  gap: 10px;
  padding: 13px 12px;
  border-bottom: 1px solid #edf2ef;
}

.conversation-row.active {
  border-left: 3px solid var(--brand);
  background: #ebf8f2;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #386354;
  background: #dff2ea;
  font-size: 0.68rem;
  font-weight: 800;
}

.avatar.blue {
  color: #315b9d;
  background: #e6efff;
}

.avatar.violet {
  color: #604caa;
  background: #eee9ff;
}

.conversation-text {
  min-width: 0;
  flex: 1;
}

.conversation-name,
.conversation-preview {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.conversation-name {
  color: #1d312a;
  font-size: 0.66rem;
  font-weight: 800;
}

.conversation-preview {
  margin-top: 4px;
  color: #809089;
  font-size: 0.58rem;
}

.chat-pane {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #f5f8fa;
}

.chat-head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.chat-person {
  display: flex;
  align-items: center;
  gap: 9px;
}

.chat-person strong {
  display: block;
  font-size: 0.69rem;
}

.chat-person small {
  display: block;
  margin-top: 1px;
  color: #81918a;
  font-size: 0.55rem;
}

.open-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-pale);
  font-size: 0.55rem;
  font-weight: 800;
}

.chat-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 24px 18px 18px;
}

.day-chip {
  align-self: center;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #809089;
  background: white;
  font-size: 0.5rem;
  font-weight: 700;
}

.bubble {
  max-width: 77%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #344b43;
  background: white;
  font-size: 0.61rem;
  line-height: 1.45;
  box-shadow: 0 3px 12px rgba(25, 61, 48, 0.04);
}

.bubble.out {
  align-self: flex-end;
  border-color: #bfe9d8;
  background: #e8f8f1;
}

.bubble small {
  display: block;
  margin-top: 4px;
  color: #7f9189;
  font-size: 0.47rem;
  text-align: right;
}

.chat-composer {
  height: 52px;
  margin: 0 14px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.floating-card {
  position: absolute;
  right: -24px;
  bottom: 30px;
  display: flex;
  width: 210px;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid #cce6db;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.floating-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--brand);
  background: var(--brand-pale);
}

.floating-icon svg {
  width: 18px;
  height: 18px;
}

.floating-card strong {
  display: block;
  font-size: 0.68rem;
}

.floating-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.55rem;
}

.section {
  padding: 100px 0;
}

.section-soft {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.section-dark {
  color: white;
  background: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-dark .section-heading > p {
  color: #b8c8c1;
}

.channel-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.channel-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.channel-icon,
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
}

.channel-icon svg,
.feature-icon svg {
  width: 21px;
  height: 21px;
}

.channel-icon.green,
.feature-icon.green {
  color: var(--brand);
  background: var(--brand-pale);
}

.channel-icon.blue,
.feature-icon.blue {
  color: var(--blue);
  background: #e8efff;
}

.channel-icon.violet,
.feature-icon.violet {
  color: var(--violet);
  background: #eeeaff;
}

.channel-icon.amber,
.feature-icon.amber {
  color: var(--amber);
  background: #fff2dc;
}

.channel-card strong {
  display: block;
  font-size: 0.92rem;
}

.channel-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  margin: 25px 0 8px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.feature-card .mini-label {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.split-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-dark .split-copy > p {
  color: #b8c8c1;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-dark .check-list li {
  color: #dbe7e1;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #23c48b;
}

.automation-panel {
  padding: 24px;
  border: 1px solid #365148;
  border-radius: var(--radius-xl);
  background: #16332a;
}

.automation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: #d9e8e2;
  font-size: 0.75rem;
  font-weight: 700;
}

.automation-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #93e4c5;
  background: rgba(35, 196, 139, 0.12);
  font-size: 0.64rem;
}

.flow-stack {
  display: grid;
  gap: 11px;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.flow-node {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid #3d5d52;
  border-radius: 13px;
  background: #1b3d32;
}

.flow-node-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #a6efd4;
  background: rgba(35, 196, 139, 0.12);
}

.flow-node-icon svg {
  width: 17px;
  height: 17px;
}

.flow-node strong {
  display: block;
  color: white;
  font-size: 0.76rem;
}

.flow-node span {
  display: block;
  margin-top: 2px;
  color: #97afa6;
  font-size: 0.62rem;
}

.flow-arrow {
  display: grid;
  width: 26px;
  place-items: center;
  color: #729187;
}

.flow-arrow svg {
  width: 15px;
  height: 15px;
}

.security-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.security-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.security-item span {
  display: block;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-item strong {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
}

.security-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.cta-panel {
  display: grid;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border: 1px solid #cce3d9;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(223, 245, 235, 0.96), rgba(242, 248, 245, 0.96));
  grid-template-columns: 1fr auto;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cta-panel p {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 60px 0 28px;
  color: #d8e5df;
  background: #0d211a;
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
}

.site-footer .brand {
  color: white;
}

.footer-about {
  max-width: 480px;
  margin: 18px 0 0;
  color: #9fb3aa;
  font-size: 0.84rem;
}

.footer-company {
  margin: 18px 0 0;
  color: #c7d8d1;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 2px 0 15px;
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #9fb3aa;
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #294138;
  color: #7f978d;
  font-size: 0.73rem;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-line i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2ed59a;
}

.page-hero {
  padding: 82px 0 62px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  gap: 70px;
  padding: 70px 0 100px;
  grid-template-columns: 230px minmax(0, 760px);
}

.legal-nav {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-note {
  padding: 18px;
  border: 1px solid #cce3d9;
  border-radius: 14px;
  color: var(--ink-soft);
  background: var(--brand-pale);
}

.waitlist-hero {
  padding: 72px 0 90px;
}

.waitlist-grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.72fr);
}

.waitlist-copy {
  padding-top: 40px;
}

.waitlist-copy h1 {
  max-width: 650px;
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.waitlist-copy > p {
  max-width: 610px;
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.7;
}

.preview-points {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.preview-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
}

.preview-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--brand);
}

.waitlist-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}

.waitlist-card h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.waitlist-card > p {
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: 0.8125rem;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbdad3;
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: white;
  font-size: 0.875rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input,
.field select {
  height: 44px;
  padding: 0 12px;
}

.field textarea {
  min-height: 92px;
  padding: 11px 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8, 127, 91, 0.1);
}

.honeypot {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--brand);
}

.consent a {
  color: var(--brand-dark);
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 13px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 650;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  border: 1px solid #b8e6d4;
  color: #086247;
  background: #e4f8f0;
}

.form-status.error {
  border: 1px solid #f0c3c3;
  color: #9f3030;
  background: #fff0f0;
}

.brand-proof {
  display: grid;
  gap: 16px;
  margin-top: 36px;
  grid-template-columns: repeat(2, 1fr);
}

.proof-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-top: 7px;
  font-size: 0.9rem;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--brand);
  letter-spacing: -0.07em;
}

.not-found p {
  max-width: 450px;
  margin: 8px auto 24px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .hero-grid,
  .waitlist-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-stage {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .waitlist-copy {
    max-width: 780px;
    padding-top: 0;
  }

  .waitlist-card {
    max-width: 720px;
  }

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

@media (max-width: 820px) {
  .nav-links,
  .nav-actions .button-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.open {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.open a {
    padding: 12px 0;
  }

  .hero {
    padding-top: 70px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

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

  .split-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 36px;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-layout {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-actions .button-primary {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
    line-height: 1.06;
  }

  .waitlist-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    line-height: 1.06;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .app-body {
    min-height: 390px;
    grid-template-columns: 48px 136px 1fr;
  }

  .app-sidebar {
    padding-inline: 5px;
  }

  .conversation-row:nth-of-type(n + 5) {
    display: none;
  }

  .chat-messages {
    padding-inline: 10px;
  }

  .floating-card {
    right: 8px;
    bottom: -26px;
  }

  .channel-strip,
  .feature-grid,
  .security-grid,
  .brand-proof,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .feature-card {
    min-height: 0;
  }

  .cta-panel {
    padding: 28px 22px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

  .waitlist-card {
    padding: 23px 18px;
  }

  .page-hero {
    padding-top: 62px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
