@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
:root {
  --paper: #f8faf8;
  --ink: #10272d;
  --muted: #56686c;
  --blue: #315df3;
  --line: #dce3e0;
  --pale: #e9f0ff;
  --white: #fff;
  --radius: 12px;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 750;
}
h2 {
  font-size: clamp(32px, 3.15vw, 48px);
  line-height: 1.16;
  letter-spacing: -1.8px;
}
h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
}
p {
  line-height: 1.75;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
section[id],
div[id] {
  scroll-margin-top: 32px;
}
.wrap {
  width: min(1364px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 750;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1px;
  gap: 0;
}
.brand img {
  width: 56px;
  height: 56px;
  flex: none;
  margin-left: -15px;
  margin-right: -9px;
}
.main-nav {
  display: flex;
  gap: 34px;
  margin-left: 60px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  padding-block: 12px;
}
.main-nav a:hover,
.text-link:hover,
.site-footer nav a:hover {
  color: var(--blue);
}
.launch-pill {
  border: 1px solid #bfcac7;
  border-radius: 24px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.launch-pill:hover {
  border-color: var(--blue);
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.42fr);
  gap: 42px;
  align-items: center;
  min-height: 742px;
  padding-top: 34px;
  padding-bottom: 98px;
}
.hero-copy {
  padding-bottom: 28px;
}
.hero .eyebrow {
  margin-bottom: 26px;
  font-size: 10px;
  letter-spacing: 1.35px;
}
.hero h1 {
  font-size: clamp(58px, 5.2vw, 80px);
  line-height: 1.07;
  letter-spacing: -4.6px;
  font-weight: 750;
}
.hero h1 span {
  color: var(--blue);
}
.hero-description {
  font-size: 16px;
  line-height: 1.85;
  max-width: 385px;
  margin-top: 27px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 0.16s,
    transform 0.16s,
    box-shadow 0.16s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 7px #315df319;
}
.primary:hover {
  background: #214bdd;
  box-shadow: 0 6px 15px #315df329;
}
.secondary {
  background: transparent;
  border-color: var(--line);
}
.secondary:hover {
  background: #edf1ee;
}
.light {
  background: var(--paper);
  color: var(--ink);
}
.light:hover {
  background: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding-block: 10px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 24px;
}
.hero-footnote .icon {
  width: 15px;
  height: 15px;
}
.demo-area {
  min-width: 0;
}
.demo-stage {
  padding: 26px 20px 22px;
  background: #e8effb;
  border: 1px solid #e0e8f6;
  border-radius: 16px;
}
.browser-preview {
  border: 1px solid #c9d5df;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 14px 28px #213c6310,
    0 2px 5px #213c6308;
}
.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 13px;
  background: #f7f9fc;
  border-bottom: 1px solid #e0e6eb;
  color: #8b979f;
}
.window-dots {
  display: flex;
  gap: 5px;
  flex: none;
}
.window-dots i {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #f6a49d;
}
.window-dots i:nth-child(2) {
  background: #e9ce88;
}
.window-dots i:nth-child(3) {
  background: #97c9aa;
}
.browser-bar > .icon {
  width: 14px;
  height: 14px;
}
.address {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  border: 1px solid #e1e6ea;
  border-radius: 5px;
  background: #fff;
  height: 24px;
  flex: 1;
  margin-left: 14px;
  font-size: 9px;
  padding: 0 8px;
  color: #697d8b;
}
.address .icon {
  width: 12px;
  height: 12px;
}
.address-star {
  margin-left: auto;
}
.messenger {
  display: grid;
  grid-template-columns: 32% minmax(0, 1fr);
  min-height: 485px;
}
.chat-sidebar {
  border-right: 1px solid #e4e9ec;
  background: #fff;
  padding: 0 5px;
}
.chat-search {
  height: 57px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 9px;
  color: #71818a;
}
.chat-search > .icon {
  height: 17px;
  width: 17px;
}
.chat-search > span {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 31px;
  padding: 0 12px;
  background: #f1f4f6;
  border-radius: 18px;
  color: #8a959c;
  font-size: 10px;
  flex: 1;
}
.chat-search span .icon {
  width: 13px;
  height: 13px;
}
.chat-row {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 65px;
  padding: 9px 7px;
  position: relative;
  border-radius: 6px;
}
.chat-row.selected {
  background: #edf2ff;
}
.avatar {
  width: 37px;
  height: 37px;
  object-fit: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 14px;
  font-weight: 700;
}
.avatar-peach {
  background: #f4dbd1;
  color: #8a513c;
}
.avatar-green {
  background: #dfebe2;
  color: #466554;
}
.avatar-purple {
  background: #e9e0f0;
  color: #765b84;
}
.avatar-yellow {
  background: #f1e6c7;
  color: #79642f;
}
.avatar-grey {
  background: #e7edef;
  color: #7b8d95;
}
.avatar .icon {
  width: 16px;
  height: 16px;
}
.chat-row > div {
  min-width: 0;
}
.chat-row b {
  display: block;
  font-size: 11px;
  line-height: 1.8;
  padding-right: 14px;
}
.chat-row p {
  font-size: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.7;
  color: #76858c;
}
.chat-row small {
  font-size: 7px;
  color: #849398;
  position: absolute;
  top: 13px;
  right: 8px;
}
.conversation {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #e8f0f7;
}
.conversation-header {
  height: 57px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 17px;
}
.conversation-header .avatar {
  width: 30px;
  height: 30px;
}
.conversation-header b {
  font-size: 11px;
  display: block;
}
.conversation-header span {
  font-size: 8px;
  display: block;
  color: #81909a;
  margin-top: 3px;
}
.conversation-header > .icon {
  margin-left: auto;
  width: 17px;
  height: 17px;
  color: #7b8b98;
}
.conversation-body {
  padding: 13px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chat-date {
  display: inline-block;
  font-size: 8px;
  line-height: 1.6;
  padding: 3px 10px;
  border-radius: 15px;
  background: #d3dee8;
  color: #516b7a;
  margin-bottom: 11px;
}
.message-card {
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 2px #223c4a09;
  width: 100%;
}
.sample-photo {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.sample-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-download {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 3px 10px #183b9840;
  transition:
    transform 0.15s,
    background-color 0.15s;
}
.sample-download:hover {
  transform: translateY(2px);
  background: #1944db;
}
.sample-download:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--blue);
}
.sample-download .icon {
  width: 21px;
  height: 21px;
}
.message-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
  padding: 10px 10px 9px;
  font-size: 9px;
  line-height: 1.5;
}
.message-caption > span {
  margin-left: auto;
  font-size: 7px;
  color: #8c9ba2;
  white-space: nowrap;
}
.read-ticks {
  color: #61a8b6;
  letter-spacing: -2px;
  padding-left: 3px;
}
.sample-file {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-inline: 10px;
  padding-block: 10px;
  border-top: 1px solid #edf0f1;
}
.sample-file > .icon {
  color: #7892a3;
  width: 23px;
  height: 23px;
}
.sample-file b {
  font-size: 9px;
  display: block;
  font-weight: 650;
}
.sample-file span {
  display: block;
  font-size: 7px;
  color: #8a999e;
  margin-top: 3px;
}
.sample-file .file-check {
  margin-left: auto;
  width: 14px;
  height: 14px;
  color: #a5b4b9;
}
.chat-composer {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 43px;
  margin: 0 13px 13px;
  background: #fff;
  border-radius: 6px;
  padding: 0 12px;
  color: #8b9ba8;
}
.chat-composer .icon {
  width: 16px;
  height: 16px;
}
.chat-composer span {
  flex: 1;
  font-size: 9px;
}
.demo-caption {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 17px;
  min-height: 36px;
  line-height: 1.7;
}
.mini-arrow {
  font-size: 19px;
  vertical-align: middle;
  margin-right: 5px;
  color: #7894c0;
}
.features {
  border-top: 1px solid var(--line);
  padding-top: 57px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.section-heading > p {
  font-size: 15px;
  color: var(--muted);
  padding-bottom: 5px;
  min-width: 260px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: #edf1ff;
  border: 1px solid #d9e2fc;
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature h3 {
  margin-bottom: 15px;
}
.feature p {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
}
.feature-label {
  display: block;
  margin-top: 23px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 750;
  color: #637976;
}
.feature-note {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 19px;
  font-size: 11px;
  color: var(--muted);
}
.how-section {
  background: #edf2ee;
  border-block: 1px solid #e3e9e4;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 55px 0 0;
}
.step-number {
  font-size: 12px;
  display: block;
  color: var(--blue);
  padding-bottom: 18px;
  border-bottom: 1px solid #cdd9d0;
  margin-bottom: 23px;
  font-weight: 750;
}
.steps h3 {
  font-size: 18px;
  margin-bottom: 13px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
  max-width: 340px;
}
.pricing-intro {
  text-align: center;
}
.pricing-intro h2 {
  margin-top: 19px;
}
.pricing-intro > p:last-child {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.billing-control {
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  background: #edf1ed;
  width: fit-content;
  border-radius: 10px;
  margin: 33px auto;
}
.billing-control button {
  border: 0;
  background: transparent;
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  min-height: 40px;
}
.billing-control button[aria-pressed="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 5px #18392a0d;
}
.billing-control button span {
  font-size: 9px;
  color: var(--blue);
  margin-left: 5px;
}
.plans {
  max-width: 890px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 33px;
  background: #fff;
}
.plan.premium {
  border-color: #91a8fc;
  background: #f4f6ff;
  box-shadow: 0 6px 22px #315df306;
}
.plan-top h3 {
  font-size: 23px;
}
.plan-top p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.plan-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.plan-badge {
  font-size: 9px;
  background: #e5ebff;
  color: #3154bd;
  border-radius: 5px;
  padding: 6px 8px;
  font-weight: 700;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 30px;
  line-height: 1.4;
}
.plan-price > span {
  font-size: 50px;
  font-weight: 750;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.plan-price small {
  font-size: 13px;
  color: var(--muted);
}
.billing-note {
  font-size: 11px;
  color: var(--muted);
  min-height: 40px;
  line-height: 1.7;
  margin-top: 4px;
}
.wide {
  width: 100%;
}
.plan .button {
  margin-top: 14px;
}
.plan-features {
  list-style: none;
  padding: 22px 0 0;
  margin: 25px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.plan-features li {
  font-size: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}
.plan-features li::before {
  content: "✓";
  color: var(--blue);
  position: absolute;
  left: 0;
  font-size: 15px;
}
.pricing-disclosure {
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
  margin: 24px auto 0;
  max-width: 800px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
.faq-intro h2 {
  margin: 17px 0 25px;
}
.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 13px;
}
.faq-intro .text-link {
  padding-top: 3px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  padding: 23px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 17px;
  height: 17px;
  color: #788b86;
  transition: transform 0.16s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 33px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.faq-list a {
  color: var(--blue);
}
.launch-section {
  padding-bottom: 64px;
}
.launch-panel {
  background: var(--blue);
  color: #fff;
  border-radius: 16px;
  padding: 55px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.launch-panel .eyebrow {
  color: #d4ddff;
}
.launch-panel h2 {
  margin-top: 18px;
  font-size: 44px;
}
.launch-panel p:last-child {
  font-size: 13px;
  color: #e2e8ff;
  margin-top: 19px;
}
.launch-panel .button {
  flex: none;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--line);
  padding-block: 33px 27px;
  gap: 25px;
  align-items: center;
}
.site-footer .brand {
  font-size: 25px;
}
.site-footer > div > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: -1px;
}
.site-footer nav {
  display: flex;
  gap: 27px;
  font-size: 12px;
}
.site-footer nav a {
  text-decoration: none;
}
.footer-fine {
  grid-column: 1/-1;
  font-size: 10px;
  color: #687d76;
  padding-top: 17px;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 28px 35px 35px;
  width: min(460px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  text-align: center;
  box-shadow: 0 24px 80px #0b244233;
}
dialog::backdrop {
  background: #0c243c70;
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 13px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--muted);
}
.dialog-close:hover {
  background: #e9efed;
}
.dialog-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.dialog-mark img {
  width: 80px;
  height: 80px;
}
dialog h2 {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 12px 0 16px;
}
dialog > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
}
dialog form {
  margin: 24px 0 18px;
}
dialog > a {
  font-size: 12px;
}
.document {
  max-width: 760px;
  padding-block: 70px 100px;
  min-height: 65vh;
}
.document .eyebrow {
  color: var(--blue);
  margin-bottom: 20px;
}
.document h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 25px;
}
.document .lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.document h2 {
  font-size: 23px;
  letter-spacing: -0.5px;
  margin: 35px 0 13px;
}
.document p,
.document li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.document p + p {
  margin-top: 15px;
}
.document ul {
  padding-left: 22px;
}
.document li {
  padding-left: 5px;
  margin-block: 9px;
}
.document a:not(.button) {
  color: var(--blue);
}
.notice {
  margin: 30px 0;
  padding: 20px 24px;
  border: 1px solid #d4dffb;
  background: #edf2ff;
  border-radius: 10px;
}
.notice strong {
  color: var(--ink);
}
.document .button {
  margin-top: 25px;
}
.simple-header nav {
  margin-left: auto;
  display: flex;
  gap: 27px;
  font-size: 13px;
}
.simple-header nav a {
  text-decoration: none;
}
/* Desktop proportions follow the accepted 1536 × 1024 concept. */
@media (min-width: 1201px) {
  .wrap {
    max-width: 1348px;
  }
  .site-header .brand {
    font-size: 32px;
  }
  .site-header .brand img {
    width: 68px;
    height: 68px;
    margin-left: -16px;
    margin-right: -7px;
  }
  .site-header .main-nav a {
    font-size: 14px;
  }
  .site-header .launch-pill {
    font-size: 14px;
    padding: 12px 24px;
  }
  .hero {
    min-height: 759px;
    padding-top: 20px;
    padding-bottom: 48px;
    align-items: start;
  }
  .hero-copy {
    padding-top: 56px;
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 11px;
    color: #6b778a;
    font-weight: 600;
    letter-spacing: 0.45px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 88px;
    line-height: 1.01;
    letter-spacing: -4.6px;
  }
  .hero h1 .headline-start {
    font-size: 0.83em;
    line-height: 1.12;
    white-space: nowrap;
  }
  .hero-description {
    font-size: 19px;
    line-height: 1.67;
    max-width: 470px;
    margin-top: 29px;
  }
  .hero-actions {
    gap: 32px;
    margin-top: 38px;
  }
  .hero-actions .primary {
    font-size: 16px;
    min-width: 226px;
    min-height: 60px;
    padding-inline: 26px;
  }
  .hero-actions .text-link {
    font-size: 16px;
    color: var(--blue);
  }
  .hero-footnote {
    font-size: 12px;
    margin-top: 25px;
  }
  .hero-footnote .icon {
    display: none;
  }
  .demo-area {
    width: calc(100% + 42px);
  }
  .demo-stage {
    padding: 31px 30px 29px;
  }
  .messenger {
    grid-template-columns: 35.5% minmax(0, 1fr);
    min-height: 532px;
  }
  .browser-bar {
    height: 45px;
  }
  .browser-bar .address {
    font-size: 11px;
    height: 27px;
  }
  .window-dots i {
    width: 9px;
    height: 9px;
  }
  .chat-search {
    height: 63px;
  }
  .chat-search > span {
    height: 36px;
    font-size: 11px;
  }
  .chat-row {
    min-height: 71px;
    padding: 10px 7px;
    gap: 11px;
  }
  .chat-row .avatar {
    width: 47px;
    height: 47px;
    font-size: 17px;
  }
  .chat-row b {
    font-size: 12px;
    line-height: 1.8;
  }
  .chat-row p {
    font-size: 10px;
    line-height: 1.8;
  }
  .chat-row small {
    font-size: 9px;
    top: 16px;
  }
  .conversation-header {
    height: 63px;
  }
  .conversation-header .avatar {
    width: 42px;
    height: 42px;
  }
  .conversation-header b {
    font-size: 14px;
  }
  .conversation-header span {
    font-size: 10px;
  }
  .conversation-body {
    padding: 20px 20px 22px;
    justify-content: flex-start;
  }
  .chat-date {
    display: none;
  }
  .sample-photo {
    aspect-ratio: 1.38;
  }
  .sample-download {
    width: 42px;
    height: 42px;
    top: 11px;
    right: 11px;
  }
  .message-caption {
    font-size: 11px;
    padding-block: 10px;
  }
  .message-caption > span {
    font-size: 9px;
  }
  .sample-file {
    padding-block: 11px;
  }
  .sample-file b {
    font-size: 10px;
  }
  .sample-file span {
    font-size: 9px;
  }
  .chat-composer {
    height: 43px;
    gap: 14px;
  }
  .chat-composer span {
    font-size: 11px;
  }
  .demo-caption {
    font-size: 12px;
    margin-top: 16px;
  }
  .features {
    padding-top: 45px;
  }
  .features h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }
  .features h2 br {
    display: none;
  }
  .features .section-heading > p {
    min-width: auto;
    font-size: 14px;
  }
  .features .section-heading > p br {
    display: none;
  }
}
.headline-start {
  color: var(--ink) !important;
  display: block;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 770px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 26px;
    grid-template-columns: 0.9fr 1.3fr;
    min-height: 660px;
    padding-bottom: 75px;
  }
  .hero h1 {
    font-size: 62px;
    letter-spacing: -3.5px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 330px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .demo-stage {
    padding: 17px 12px;
  }
  .messenger {
    min-height: 430px;
    grid-template-columns: 29% minmax(0, 1fr);
  }
  .chat-row {
    padding-inline: 4px;
    gap: 6px;
  }
  .chat-row .avatar {
    width: 29px;
    height: 29px;
    font-size: 11px;
  }
  .chat-row small {
    display: none;
  }
  .chat-row b {
    font-size: 9px;
  }
  .chat-row p {
    font-size: 7px;
  }
  .chat-search {
    padding-inline: 5px;
    gap: 7px;
  }
  .chat-search > span {
    padding: 0 8px;
    font-size: 8px;
  }
  .chat-search > .icon {
    width: 14px;
  }
  .conversation-body {
    padding: 12px;
  }
  .feature-grid,
  .steps {
    gap: 35px;
  }
  .section {
    padding-block: 78px;
  }
  .features {
    padding-top: 48px;
  }
  .launch-panel {
    padding: 45px;
  }
  .launch-panel h2 {
    font-size: 39px;
  }
}
@media (max-width: 1000px) {
  .hero h1 {
    font-size: 51px;
    letter-spacing: -2.9px;
  }
  .hero {
    min-height: 600px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 9px 18px;
  }
  .hero-footnote {
    font-size: 9px;
  }
  .main-nav {
    gap: 22px;
    margin-left: 0;
  }
  .demo-stage {
    padding: 14px 10px;
  }
  .messenger {
    min-height: 390px;
    grid-template-columns: 25% minmax(0, 1fr);
  }
  .chat-row .avatar {
    display: none;
  }
  .chat-row {
    padding: 10px 6px;
    min-height: 53px;
  }
  .chat-search > span .icon {
    display: none;
  }
  .chat-search {
    gap: 6px;
  }
  .chat-search > span {
    font-size: 8px;
    padding-inline: 7px;
  }
  .sample-photo {
    aspect-ratio: 1.2;
  }
  .conversation-header {
    padding-inline: 12px;
  }
  .conversation-header span {
    font-size: 7px;
  }
  .message-caption {
    font-size: 8px;
  }
  .sample-file b {
    font-size: 8px;
  }
  .sample-file > svg:first-child {
    width: 19px;
  }
  .demo-caption {
    font-size: 9px;
  }
  .feature-grid {
    gap: 28px;
  }
  .feature h3 {
    font-size: 17px;
  }
  .feature p,
  .steps p {
    font-size: 13px;
  }
  .section-heading > p {
    min-width: 200px;
    font-size: 13px;
  }
  .faq-section {
    gap: 40px;
  }
  .launch-panel {
    padding: 38px;
  }
  .launch-panel .button {
    font-size: 11px;
    padding-inline: 15px;
    gap: 12px;
  }
  .plan {
    padding: 27px;
  }
  .plan-badge {
    font-size: 8px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 82px;
    gap: 12px;
  }
  .brand {
    font-size: 26px;
  }
  .launch-pill {
    margin-left: auto;
    padding: 9px 12px;
    font-size: 10px;
  }
  .menu-toggle {
    display: flex;
    order: 3;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    z-index: 10;
    box-shadow: 0 12px 24px #183b4a12;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    padding: 13px 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 43px;
    padding-bottom: 43px;
    min-height: 0;
  }
  .hero-copy {
    padding: 0 6px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(54px, 9.5vw, 74px);
    line-height: 1.07;
    letter-spacing: -3.3px;
  }
  .hero h1 span br {
    display: none;
  }
  .hero-description {
    max-width: 430px;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 25px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-footnote {
    font-size: 10px;
    margin-top: 21px;
  }
  .demo-stage {
    padding: 20px 16px;
  }
  .messenger {
    grid-template-columns: 30% minmax(0, 1fr);
    min-height: 410px;
  }
  .chat-row .avatar {
    display: flex;
    width: 30px;
    height: 30px;
  }
  .chat-row {
    padding-inline: 7px;
    min-height: 55px;
  }
  .chat-search > span .icon {
    display: block;
  }
  .sample-photo {
    aspect-ratio: 1.55;
  }
  .message-caption {
    font-size: 9px;
  }
  .sample-file b {
    font-size: 9px;
  }
  .conversation-header b {
    font-size: 12px;
  }
  .conversation-header span {
    font-size: 8px;
  }
  .demo-caption {
    font-size: 10px;
    margin-top: 13px;
    min-height: 35px;
  }
  .section {
    padding-block: 62px;
  }
  .features {
    padding-top: 40px;
  }
  .section-heading {
    display: block;
    margin-bottom: 36px;
  }
  .section-heading > p {
    margin-top: 21px;
    line-height: 1.8;
    font-size: 14px;
  }
  .section-heading > p br {
    display: none;
  }
  h2 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  .feature:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .feature-icon {
    margin-bottom: 17px;
  }
  .feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .feature p {
    font-size: 14px;
    max-width: 100%;
  }
  .feature-label {
    margin-top: 15px;
  }
  .feature-note {
    margin-top: 28px;
    font-size: 10px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .step-number {
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .steps h3 {
    font-size: 19px;
  }
  .steps p {
    font-size: 14px;
    max-width: 100%;
  }
  .pricing-intro > p:last-child {
    font-size: 13px;
  }
  .plans {
    max-width: 450px;
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .plan {
    padding: 29px;
  }
  .plan-badge {
    font-size: 9px;
  }
  .plan-features li {
    font-size: 13px;
  }
  .pricing-disclosure {
    font-size: 10px;
    max-width: 430px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro h2 {
    margin-bottom: 18px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 21px;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 15px;
  }
  .launch-panel {
    padding: 33px 27px;
    display: block;
  }
  .launch-panel h2 {
    font-size: 36px;
  }
  .launch-panel p:last-child {
    font-size: 12px;
  }
  .launch-panel .button {
    margin-top: 25px;
    font-size: 12px;
  }
  .launch-section {
    padding-bottom: 43px;
  }
  .site-footer {
    gap: 25px;
    padding-top: 24px;
  }
  .site-footer nav {
    gap: 20px;
    font-size: 11px;
  }
  .site-footer > div > p {
    font-size: 10px;
  }
  .footer-fine {
    font-size: 9px;
  }
  .document {
    padding-block: 45px 65px;
  }
  .document .lead {
    font-size: 16px;
  }
  .simple-header nav {
    font-size: 11px;
    gap: 17px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 54px;
    letter-spacing: -3.4px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 span br {
    display: block;
  }
  .hero-description {
    max-width: 330px;
    font-size: 14px;
  }
  .hero-actions {
    gap: 21px;
  }
  .button {
    font-size: 12px;
    padding: 13px 16px;
  }
  .demo-stage {
    padding: 13px 10px;
    border-radius: 12px;
  }
  .browser-bar {
    height: 34px;
    gap: 7px;
    padding-inline: 8px;
  }
  .window-dots {
    gap: 4px;
  }
  .window-dots i {
    width: 5px;
    height: 5px;
  }
  .address {
    font-size: 8px;
    margin-left: 6px;
    padding-inline: 5px;
    height: 21px;
  }
  .messenger {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .chat-sidebar {
    display: none;
  }
  .conversation-header {
    height: 54px;
  }
  .conversation-body {
    padding: 10px 12px 16px;
  }
  .sample-photo {
    aspect-ratio: 1.3;
  }
  .message-caption {
    font-size: 9px;
    padding-block: 10px;
  }
  .sample-file {
    padding-block: 10px;
  }
  .sample-file b {
    font-size: 9px;
  }
  .sample-file span {
    font-size: 8px;
  }
  .chat-composer {
    height: 38px;
  }
  .demo-caption {
    font-size: 9px;
    max-width: 290px;
    margin-inline: auto;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer nav {
    gap: 26px;
  }
  .footer-fine {
    padding-top: 4px;
    line-height: 1.8;
  }
  .launch-panel h2 {
    font-size: 32px;
  }
  .launch-panel {
    padding: 29px 24px;
  }
  .plan {
    padding: 26px;
  }
  .plan-badge {
    font-size: 8px;
  }
  .plan-price > span {
    font-size: 48px;
  }
  .simple-header nav {
    gap: 14px;
    font-size: 10px;
  }
  .document h1 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root:not([data-motion="on"]) {
    scroll-behavior: auto;
  }
  :root:not([data-motion="on"]) *,
  :root:not([data-motion="on"]) *::before,
  :root:not([data-motion="on"]) *::after {
    transition: none !important;
    animation: none !important;
  }
}
