:root {
  color-scheme: light;
  --paper: #f4f3ee;
  --paper-deep: #ebe9e1;
  --white: #ffffff;
  --ink: #171a18;
  --muted: #686d68;
  --line: #d8d8d0;
  --green: #176b4d;
  --green-deep: #0d3f30;
  --green-soft: #dcebe3;
  --orange: #e66a32;
  --orange-soft: #f8e1d5;
  --yellow: #efc75e;
  --blue: #476b93;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Manrope", "DM Sans", system-ui, sans-serif;
  --content: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(244, 243, 238, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--content));
  height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  width: 27px;
  height: 27px;
  display: inline-block;
  background: var(--ink);
  border-radius: 7px;
}

.brand-mark i {
  position: absolute;
  top: 7px;
  width: 7px;
  height: 13px;
  background: var(--paper);
  border-radius: 5px 5px 2px 2px;
  transform: rotate(-20deg);
}

.brand-mark i:first-child {
  left: 6px;
}

.brand-mark i:last-child {
  right: 6px;
  transform: rotate(20deg);
}

.brand-mark-small {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.brand-mark-small i {
  top: 5px;
  width: 5px;
  height: 10px;
}

.brand-mark-small i:first-child {
  left: 4px;
}

.brand-mark-small i:last-child {
  right: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.text-link,
.footer-links a {
  position: relative;
  color: #343936;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.desktop-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
}

.button {
  max-width: 100%;
  min-height: 48px;
  height: auto;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
}

.button:focus-visible,
.tab-list button:focus-visible,
.menu-button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #9b9d98;
}

.button-secondary:hover {
  color: var(--white);
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 2;
  top: 72px;
  left: 0;
  right: 0;
  height: calc(100svh - 72px);
  padding: 32px 24px;
  background: var(--paper);
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.hero {
  position: relative;
  height: min(880px, calc(100svh - 24px));
  min-height: 720px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  width: 8px;
  height: 86px;
  background: var(--orange);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), 850px);
  margin: 0 auto;
  padding-top: 124px;
  text-align: center;
}

.motion-ready .hero-copy > * {
  opacity: 0;
  animation: hero-item-in 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-ready .hero-copy > :nth-child(1) { animation-delay: 80ms; }
.motion-ready .hero-copy > :nth-child(2) { animation-delay: 150ms; }
.motion-ready .hero-copy > :nth-child(3) { animation-delay: 230ms; }
.motion-ready .hero-copy > :nth-child(4) { animation-delay: 310ms; }
.motion-ready .hero-copy > :nth-child(5) { animation-delay: 390ms; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.closing-section h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: 68px;
  line-height: 1.02;
  font-weight: 600;
}

.hero-lead {
  max-width: 700px;
  margin: 20px auto 0;
  color: #454b47;
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-actions > *,
.closing-actions > *,
.price-card,
.footer-links > div,
.admin-title > * {
  min-width: 0;
}

.hero-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 72px), 1240px);
  height: 500px;
  margin: 32px auto 0;
  transform: translate3d(0, var(--stage-shift, 0px), 0);
  perspective: 1400px;
  will-change: transform;
}

.product-window {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #b9bcb8;
  border-radius: var(--radius);
  transform: rotateX(2deg);
  transform-origin: center top;
  box-shadow: 0 24px 60px rgba(23, 26, 24, 0.12);
  animation: stage-in 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.window-bar {
  height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 420px) 1fr;
  align-items: center;
  gap: 18px;
  background: #1d211f;
  color: var(--white);
}

.window-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.window-brand .brand-mark {
  background: var(--orange);
}

.window-brand .brand-mark i {
  background: var(--white);
}

.window-search {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfc4c0;
  background: #303532;
  border: 1px solid #424844;
  border-radius: 5px;
  font-size: 12px;
}

.window-user {
  justify-self: end;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.workspace-preview {
  height: calc(100% - 54px);
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr) 242px;
}

.preview-sidebar {
  padding: 18px 12px;
  color: #d8ddd9;
  background: #252a27;
  border-right: 1px solid #3b403d;
}

.workspace-name {
  margin: 0 4px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
}

.workspace-name > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 6px;
  font-weight: 700;
}

.preview-sidebar > p {
  margin: 18px 8px 8px;
  color: #858c87;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-channel {
  width: 100%;
  height: 34px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c7cdc9;
  background: transparent;
  border: 0;
  border-radius: 4px;
  text-align: left;
  font-size: 12px;
}

.preview-channel.is-current {
  color: var(--white);
  background: #3a403c;
}

.preview-channel i {
  color: #8d958f;
  font-style: normal;
}

.preview-channel b {
  min-width: 18px;
  margin-left: auto;
  padding: 1px 5px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-size: 9px;
  text-align: center;
}

.presence-dot {
  width: 7px;
  height: 7px;
  background: #58bd84;
  border-radius: 50%;
}

.presence-dot.away {
  background: var(--yellow);
}

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

.chat-heading {
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3e4de;
}

.chat-heading > div:first-child {
  display: flex;
  flex-direction: column;
}

.chat-heading strong {
  font-size: 15px;
}

.chat-heading span {
  color: var(--muted);
  font-size: 10px;
}

.chat-tools {
  display: flex;
  gap: 8px;
}

.chat-tools span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 16px;
}

.message-list {
  flex: 1;
  padding: 22px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  animation: message-in 420ms ease forwards;
}

.message-two {
  animation-delay: 450ms;
}

.message-three {
  animation-delay: 820ms;
}

.message-four {
  animation-delay: 1120ms;
}

.avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.avatar-green {
  background: var(--green);
}

.avatar-ink {
  background: #343b48;
}

.avatar-orange {
  background: var(--orange);
}

.message-row > div {
  min-width: 0;
  font-size: 12px;
}

.message-row p {
  margin: 0 0 3px;
}

.message-row time {
  margin-left: 8px;
  color: #8d918d;
  font-size: 9px;
}

.message-row > div > span {
  color: #555b57;
}

.reaction {
  width: max-content;
  margin-top: 6px;
  padding: 2px 7px;
  display: block;
  color: var(--green) !important;
  background: var(--green-soft);
  border-radius: 8px;
  font-size: 9px;
}

.current-user {
  justify-content: flex-end;
}

.current-user > div {
  max-width: 78%;
  padding: 10px 12px;
  background: var(--green-soft);
  border-radius: 6px 6px 2px 6px;
}

.file-row {
  width: min(270px, 80%);
  margin-left: 44px;
  padding: 10px;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 10px;
  border: 1px solid #d6d9d4;
  border-radius: 6px;
  opacity: 0;
  animation: message-in 420ms ease forwards;
}

.file-type {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #a43f32;
  background: #f5dcd7;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
}

.file-row div {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.file-row div span {
  color: var(--muted);
  font-size: 9px;
}

.file-row button,
.composer-preview button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
}

.composer-preview {
  height: 48px;
  margin: 0 20px 18px;
  padding: 0 7px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #929691;
  border: 1px solid #d2d4cf;
  border-radius: 6px;
  font-size: 11px;
}

.preview-context {
  padding: 22px;
  background: #f0efe9;
  border-left: 1px solid #dedfd9;
}

.context-label {
  margin: 0 0 12px;
  color: #7e847f;
  font-size: 10px;
  font-weight: 700;
}

.meeting-preview {
  display: flex;
  flex-direction: column;
}

.meeting-time {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.meeting-preview strong {
  font-size: 14px;
}

.meeting-preview p,
.context-copy {
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.meeting-preview button {
  height: 34px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
}

.context-divider {
  height: 1px;
  margin: 24px 0;
  background: var(--line);
}

.team-stack {
  display: flex;
  align-items: center;
}

.team-stack span,
.team-stack b {
  width: 32px;
  height: 32px;
  margin-right: -7px;
  display: grid;
  place-items: center;
  border: 2px solid #f0efe9;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 8px;
}

.team-stack span:nth-child(2) {
  background: #3b4657;
}

.team-stack span:nth-child(3) {
  background: var(--orange);
}

.team-stack b {
  color: var(--ink);
  background: var(--yellow);
}

.context-copy {
  margin-top: 16px;
}

.proof-strip {
  padding: 30px max(24px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  min-height: 62px;
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.motion-ready .proof-strip.reveal div {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 440ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .proof-strip.reveal.is-revealed div {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .proof-strip.reveal.is-revealed div:nth-child(2) { transition-delay: 70ms; }
.motion-ready .proof-strip.reveal.is-revealed div:nth-child(3) { transition-delay: 140ms; }
.motion-ready .proof-strip.reveal.is-revealed div:nth-child(4) { transition-delay: 210ms; }

.proof-strip div:first-child {
  border-left: 0;
}

.proof-strip strong {
  font-size: 14px;
}

.proof-strip span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 120px max(24px, calc((100% - var(--content)) / 2));
}

.section-heading {
  max-width: 850px;
  margin-bottom: 52px;
}

.section-heading h2,
.pricing-heading h2,
.setup-heading h2,
.faq-heading h2 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
}

.section-heading > p:last-child,
.pricing-heading > p,
.security-copy > p,
.setup-heading + p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.product-section {
  background: var(--white);
}

.product-tabs {
  border-top: 1px solid var(--line);
}

.tab-list {
  height: 72px;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.tab-list button {
  position: relative;
  min-width: 160px;
  padding: 0 24px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 0;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease;
}

.tab-list button::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -1px;
  left: 24px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tab-list button[aria-selected="true"] {
  color: var(--ink);
}

.tab-list button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.tab-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: center;
  padding: 64px 0 0;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel.is-visible {
  animation: panel-in 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tab-panel.is-visible .panel-copy > * {
  animation: panel-element-in 440ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tab-panel.is-visible .panel-copy > :nth-child(2) { animation-delay: 50ms; }
.tab-panel.is-visible .panel-copy > :nth-child(3) { animation-delay: 100ms; }
.tab-panel.is-visible .panel-copy > :nth-child(4) { animation-delay: 150ms; }

.tab-panel.is-visible .conversation-demo,
.tab-panel.is-visible .call-demo,
.tab-panel.is-visible .calendar-demo {
  animation: demo-in 560ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-index {
  width: 44px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}

.panel-copy h3 {
  margin: 22px 0 16px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.16;
}

.panel-copy > p {
  color: var(--muted);
  font-size: 17px;
}

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

.plain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.plain-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
}

.conversation-demo,
.call-demo,
.calendar-demo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #c9cbc5;
  border-radius: var(--radius);
  background: #f5f4ef;
}

.demo-label {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  min-height: 24px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  color: #59605b;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.conversation-demo {
  padding: 54px 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #efece4;
}

.demo-day {
  align-self: center;
  padding: 5px 12px;
  color: #5d625f;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
}

.demo-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.demo-message > div {
  max-width: 73%;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 2px 7px 7px 7px;
  border: 1px solid #dedfd9;
}

.demo-message strong {
  font-size: 12px;
}

.demo-message p {
  margin: 3px 0;
}

.demo-message time {
  display: block;
  color: #8a8f8a;
  font-size: 10px;
  text-align: right;
}

.demo-message.own {
  justify-content: flex-end;
}

.demo-message.own > div {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  border-radius: 7px 2px 7px 7px;
}

.demo-message.own time {
  color: #c5ded2;
}

.audio-demo {
  width: min(350px, 84%);
  margin-left: 44px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid #dedfd9;
  border-radius: 7px;
}

.audio-demo button {
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.audio-demo > span {
  color: var(--muted);
  font-size: 11px;
}

.wave {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wave i {
  width: 3px;
  height: 8px;
  display: block;
  background: #a2a6a1;
  border-radius: 3px;
  animation: wave 1.3s ease-in-out infinite;
}

.wave i:nth-child(2n) { height: 19px; animation-delay: 100ms; }
.wave i:nth-child(3n) { height: 25px; animation-delay: 220ms; }
.wave i:nth-child(5n) { height: 13px; animation-delay: 340ms; }

.audio-demo:not(.is-playing) .wave i {
  animation-play-state: paused;
}

.call-demo {
  padding: 50px 18px 18px;
  color: var(--white);
  background: #202421;
}

.call-top {
  height: 38px;
  display: flex;
  justify-content: space-between;
  color: #d7dcd8;
  font-size: 12px;
}

.call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.call-person {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid #454b47;
  border-radius: 5px;
  background: #303633;
}

.call-person > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-weight: 700;
}

.call-person p {
  position: absolute;
  left: 10px;
  bottom: 8px;
  margin: 0;
  font-size: 10px;
}

.person-two > span { background: var(--orange); }
.person-three > span { background: var(--blue); }
.person-four > span { color: var(--ink); background: var(--yellow); }

.call-controls {
  height: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.call-controls span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #3d443f;
}

.call-controls .hangup {
  background: #bd463c;
}

.calendar-demo {
  padding: 50px 20px 20px;
  background: var(--white);
}

.calendar-head {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.calendar-head button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
}

.calendar-grid {
  height: 330px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.calendar-grid > div {
  position: relative;
  padding: 18px 8px;
  border-left: 1px solid var(--line);
}

.calendar-grid > div:first-child {
  border-left: 0;
}

.calendar-grid b,
.calendar-grid > div > span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.calendar-grid > div > span {
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.calendar-grid .today > span {
  width: 28px;
  height: 28px;
  margin: 4px auto 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.event-block {
  position: absolute;
  top: 104px;
  left: 6px;
  right: 6px;
  padding: 9px 7px;
  border-radius: 4px;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 9px;
  font-style: normal;
  line-height: 1.35;
}

.event-block small {
  opacity: 0.72;
}

.event-orange {
  top: 174px;
  color: #7c351b;
  background: var(--orange-soft);
}

.event-ink {
  top: 132px;
  color: var(--white);
  background: #353d48;
}

.security-section {
  color: var(--white);
  background: #18221e;
}

.security-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.security-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.security-copy .eyebrow {
  color: #79c59d;
}

.security-copy h2 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
}

.security-copy > p {
  color: #b7c0bb;
}

.inline-link {
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  color: #dbeee3;
  border-bottom: 1px solid #6e8076;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.inline-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.security-list article {
  padding: 26px 0 30px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  border-top: 1px solid #3c4942;
}

.security-list article:last-child {
  border-bottom: 1px solid #3c4942;
}

.security-list article > span {
  color: #73b993;
  font-size: 12px;
  font-weight: 700;
}

.security-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 21px;
}

.security-list p {
  margin: 0;
  color: #aeb8b2;
}

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

.section-heading.compact {
  max-width: 720px;
}

.admin-preview {
  min-height: 600px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  color: #ebefec;
  background: #151a18;
  border: 1px solid #303632;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(25, 30, 27, 0.13);
}

.admin-nav {
  padding: 24px 14px;
  background: #202522;
  border-right: 1px solid #343b37;
}

.admin-brand {
  margin: 0 8px 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
}

.admin-brand .brand-mark {
  background: var(--orange);
}

.admin-nav > p {
  margin: 0 12px 10px;
  color: #778079;
  font-size: 9px;
  font-weight: 700;
}

.admin-nav button {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  color: #aeb6b1;
  background: transparent;
  border: 0;
  border-radius: 5px;
  text-align: left;
  font-size: 12px;
}

.admin-nav button.selected {
  color: var(--white);
  background: #343b37;
}

.admin-content {
  padding: 38px;
}

.admin-demo-label {
  position: static;
  margin-bottom: 14px;
  color: #b6beb9;
  background: #252c28;
  border-color: #3e4842;
}

.admin-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-title span {
  color: #778079;
  font-size: 9px;
  font-weight: 700;
}

.admin-title h3 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: 28px;
}

.admin-title button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.metric-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #343c37;
  border-radius: 6px;
}

.metric-row > div {
  min-width: 0;
  min-height: 126px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #343c37;
}

.metric-row > div:first-child {
  border-left: 0;
}

.metric-row span,
.metric-row small {
  color: #8d9690;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.metric-row strong {
  margin: 8px 0 2px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
}

.admin-table {
  margin-top: 24px;
  border-top: 1px solid #343c37;
}

.table-heading,
.table-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px 1.1fr 1.4fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #343c37;
}

.table-heading {
  grid-template-columns: 1fr auto;
}

.table-heading span,
.table-row > span:not(.avatar),
.table-row time {
  color: #89928c;
  font-size: 11px;
}

.table-row strong {
  font-size: 12px;
}

.table-row .avatar {
  width: 30px;
  height: 30px;
  font-size: 8px;
}

.setup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 110px;
  background: var(--orange-soft);
}

.setup-heading h2 {
  max-width: 520px;
}

.setup-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-steps li {
  min-height: 140px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(105, 64, 43, 0.24);
}

.setup-steps li:last-child {
  border-bottom: 1px solid rgba(105, 64, 43, 0.24);
}

.setup-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 700;
}

.setup-steps h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 21px;
}

.setup-steps p {
  margin: 0;
  color: #6a5145;
}

.pricing-section {
  background: var(--white);
}

.pricing-heading {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.pricing-heading > p {
  margin-bottom: 4px;
}

.pricing-toolbar {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-family {
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f4ef;
}

.product-family button {
  min-height: 52px;
  padding: 7px 14px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.product-family button small {
  color: inherit;
  font-size: 9px;
  font-weight: 600;
}

.product-family button[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.product-family button:focus-visible {
  outline: 3px solid rgba(23, 107, 77, 0.22);
  outline-offset: 2px;
}

.billing-cycle {
  width: fit-content;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(116px, 1fr));
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f4ef;
}

.billing-cycle button {
  min-height: 44px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.billing-cycle button small {
  color: inherit;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.billing-cycle button[aria-pressed="true"] {
  color: var(--white);
  background: var(--green);
}

.billing-cycle button:focus-visible {
  outline: 3px solid rgba(23, 107, 77, 0.22);
  outline-offset: 2px;
}

.pricing-tax {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pricing-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.business-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
[data-pricing-panel][hidden] { display: none; }

.price-card {
  position: relative;
  grid-column: auto;
  min-width: 0;
  min-height: 674px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: opacity 480ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.motion-ready .price-card {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .price-card.is-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .price-card:nth-child(2) { transition-delay: 70ms; }
.motion-ready .price-card:nth-child(3) { transition-delay: 140ms; }
.motion-ready .price-card:nth-child(4) { transition-delay: 210ms; }
.motion-ready .price-card:nth-child(5) { transition-delay: 280ms; }

@media (hover: hover) and (pointer: fine) {
  .motion-ready .price-card.is-card-visible:hover,
  .price-card:hover {
    border-color: #9cb5a8;
    transform: translateY(-6px);
  }

  .price-card.featured:hover {
    border-color: #1c2420;
  }
}

.price-card.featured {
  color: var(--white);
  background: #1c2420;
  border-color: #1c2420;
}

.business-status {
  width: fit-content;
  margin-bottom: 13px;
  padding: 5px 8px;
  border: 1px solid #bfd4ca;
  border-radius: 5px;
  color: var(--green);
  background: #edf7f2;
  font-size: 9px;
  font-weight: 800;
}

.business-featured .business-status {
  margin-top: 20px;
  color: var(--yellow);
  border-color: #596359;
  background: #29322d;
}

.business-featured .plan-name {
  margin-top: 0;
}

.business-checkout[aria-disabled="true"] {
  color: #757d78;
  border-color: var(--line);
  background: #eff0ec;
  cursor: default;
  box-shadow: none;
}

.featured .business-checkout[aria-disabled="true"] {
  color: #d4dad6;
  border-color: #49534d;
  background: #333c37;
}

.plan-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 7px 7px 0 0;
  font-size: 9px;
  font-weight: 700;
}

.featured .plan-name {
  margin-top: 20px;
}

.plan-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.price {
  min-height: 108px;
  margin: 20px 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price strong {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.price-contact strong {
  max-width: 14ch;
  font-size: 22px;
  overflow-wrap: normal;
}

.price span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.price small {
  margin-top: 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.featured .price small {
  color: var(--yellow);
}

.featured .price span,
.featured > p:not(.plan-name) {
  color: #aeb8b2;
}

.price-card > p:not(.plan-name) {
  min-height: 84px;
  margin: 0 0 22px;
  color: var(--muted);
}

.price-card .button {
  width: 100%;
}

.featured .button {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.plan-capacity {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-capacity div {
  min-width: 0;
  padding: 14px 10px 14px 0;
}

.plan-capacity div:nth-child(even) {
  padding-right: 0;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.plan-capacity div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.plan-capacity div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  padding-left: 0;
  border-left: 0;
}

.plan-capacity dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-capacity dd {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (min-width: 1001px) {
  [data-pricing-panel="sylo"] .plan-capacity {
    grid-template-columns: 1fr;
  }

  [data-pricing-panel="sylo"] .plan-capacity div,
  [data-pricing-panel="sylo"] .plan-capacity div:nth-child(even),
  [data-pricing-panel="sylo"] .plan-capacity div:last-child:nth-child(odd) {
    grid-column: auto;
    padding: 11px 0;
    border-left: 0;
  }

  [data-pricing-panel="sylo"] .plan-capacity div + div {
    border-top: 1px solid var(--line);
  }

  [data-pricing-panel="sylo"] .featured .plan-capacity div + div {
    border-color: #465049;
  }
}

.featured .plan-capacity {
  border-color: #465049;
}

.featured .plan-capacity div:nth-child(even),
.featured .plan-capacity div:nth-child(n + 3) {
  border-color: #465049;
}

.featured .plan-capacity dt {
  color: #aeb8b2;
}

.price-card ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 23px;
  color: #4c514e;
  font-size: 14px;
}

.featured li {
  color: #d7ddd9;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.featured li::before {
  color: var(--yellow);
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.custom-pricing {
  margin-top: 42px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f5f0;
}

.custom-pricing-intro h3 {
  max-width: 15ch;
  margin: 9px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.custom-pricing-intro > p:not(.section-eyebrow) {
  margin: 0;
  color: var(--muted);
}

.custom-pricing-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-pricing-trust span {
  padding: 6px 9px;
  border: 1px solid #d7d9d1;
  border-radius: 999px;
  color: #555d58;
  background: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
}

.custom-pricing-entry {
  align-items: center;
}

.custom-pricing-route {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.custom-pricing-route ol {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.custom-pricing-route li {
  min-width: 0;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.custom-pricing-route li:first-child { padding-top: 0; }

.custom-pricing-route li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.custom-pricing-route li div { display: grid; gap: 4px; }
.custom-pricing-route li strong { font-size: 14px; }
.custom-pricing-route li small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.custom-pricing-route > .button { width: 100%; }
.custom-pricing-route > small { margin-top: 11px; display: block; color: var(--muted); font-size: 10px; text-align: center; }

.custom-pricing-builder {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.78fr);
  gap: 16px;
}

.custom-pricing-form,
.custom-pricing-result {
  min-width: 0;
  padding: 24px;
  border-radius: 10px;
}

.custom-pricing-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  border: 1px solid var(--line);
  background: var(--white);
}

.custom-pricing-family,
.custom-pricing-form .field-note,
.custom-pricing-form .custom-special,
.custom-pricing-form > .button {
  grid-column: 1 / -1;
}

.custom-pricing-family {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.custom-pricing-family span,
.custom-pricing-form label {
  color: #4c514e;
  font-size: 11px;
  font-weight: 700;
}

.custom-pricing-family strong {
  color: var(--green);
  font-size: 12px;
}

.custom-pricing-form label:not(.custom-special) {
  display: grid;
  gap: 7px;
}

.custom-pricing-form input[type="number"],
.custom-pricing-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid #cfd2ca;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfbf8;
  font: inherit;
  font-size: 14px;
}

.custom-pricing-form input:focus,
.custom-pricing-form select:focus {
  outline: 3px solid rgba(23, 107, 77, 0.18);
  border-color: var(--green);
}

.custom-pricing-form .field-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.custom-special {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.4;
}

.custom-special input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.custom-pricing-result {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: #1c2420;
}

.custom-result-kicker {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.custom-pricing-result h4 {
  margin: 13px 0 9px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.05;
}

.custom-pricing-result > p {
  margin: 0;
  color: #b8c0bb;
  font-size: 13px;
}

.custom-pricing-result dl {
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.custom-pricing-result dl div {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #414a45;
}

.custom-pricing-result dt {
  color: #aeb8b2;
  font-size: 10px;
  text-transform: uppercase;
}

.custom-pricing-result dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.custom-pricing-result .button {
  width: 100%;
  margin-top: auto;
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.custom-pricing-result .button[aria-disabled="true"] {
  color: #b8c0bb;
  border-color: #4a544e;
  background: #303934;
  cursor: default;
}

.custom-pricing-result > small {
  margin-top: 12px;
  color: #909b95;
  font-size: 9px;
  text-align: center;
}

@media (max-width: 1100px) {
  .custom-pricing { grid-template-columns: 1fr; }
  .custom-pricing-intro h3 { max-width: 22ch; }
}

@media (max-width: 680px) {
  .custom-pricing { padding: 20px; gap: 24px; }
  .custom-pricing-builder { grid-template-columns: 1fr; }
  .custom-pricing-form { grid-template-columns: 1fr; padding: 18px; }
  .custom-pricing-form label { grid-column: 1 / -1; }
  .custom-pricing-result { min-height: 310px; padding: 22px; }
  .custom-pricing-route { padding: 20px; }
}

.pricing-foot {
  margin-top: 28px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  border-top: 1px solid var(--line);
}

.pricing-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-foot strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.motion-ready .security-list.reveal article,
.motion-ready .setup-steps.reveal li,
.motion-ready .pricing-foot.reveal p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .security-list.reveal.is-revealed article,
.motion-ready .setup-steps.reveal.is-revealed li,
.motion-ready .pricing-foot.reveal.is-revealed p {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .security-list.reveal.is-revealed article:nth-child(2),
.motion-ready .setup-steps.reveal.is-revealed li:nth-child(2),
.motion-ready .pricing-foot.reveal.is-revealed p:nth-child(2) { transition-delay: 80ms; }

.motion-ready .security-list.reveal.is-revealed article:nth-child(3),
.motion-ready .setup-steps.reveal.is-revealed li:nth-child(3) { transition-delay: 160ms; }

.motion-ready .security-list.reveal.is-revealed article:nth-child(4) { transition-delay: 240ms; }

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  background: var(--paper);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid #bfc1bb;
}

.faq-list details {
  border-bottom: 1px solid #bfc1bb;
  overflow: clip;
}

.faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease;
}

.faq-list summary:hover {
  color: var(--green);
}

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

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #aeb1aa;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 48px 26px 0;
  color: var(--muted);
}

.closing-section {
  padding: 116px 24px;
  color: var(--white);
  background: var(--green-deep);
}

.closing-inner {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}

.closing-inner .eyebrow {
  color: #8ac6a6;
}

.closing-section h2 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
}

.closing-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.inline-link.light {
  margin-top: 0;
  color: var(--white);
}

.site-footer {
  padding: 70px max(24px, calc((100% - var(--content)) / 2)) 28px;
  color: #d8ddd9;
  background: #151917;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-main .brand-mark {
  background: var(--orange);
}

.footer-main .brand-mark i {
  background: var(--white);
}

.footer-main p {
  max-width: 340px;
  margin: 4px 0 0;
  color: #88918b;
  text-align: right;
}

.footer-links {
  margin-top: 68px;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #363c38;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #7e8781;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  color: #d8ddd9;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #727a75;
  border-top: 1px solid #363c38;
  font-size: 12px;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stage-in {
  from { opacity: 0; transform: translateY(36px) rotateX(4deg); }
  to { opacity: 1; transform: translateY(0) rotateX(2deg); }
}

@keyframes message-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-element-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes demo-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes metric-pop {
  0% { opacity: 0.45; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.metric-row strong.is-counting {
  animation: metric-pop 320ms ease both;
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    grid-column: span 1;
  }

  .desktop-nav {
    gap: 18px;
  }

  .product-stage {
    width: calc(100% - 36px);
  }

  .workspace-preview {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .preview-context {
    display: none;
  }

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

  .proof-strip div:nth-child(3) {
    border-left: 0;
  }

  .tab-panel,
  .security-inner,
  .setup-section,
  .pricing-heading,
  .faq-section {
    gap: 54px;
  }

  .admin-preview {
    grid-template-columns: 170px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-shell {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .desktop-action {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero {
    height: calc(100svh - 42px);
    min-height: 770px;
  }

  .hero-copy {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .product-stage {
    margin-top: 28px;
    height: 430px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .setup-heading h2,
  .faq-heading h2,
  .security-copy h2 {
    font-size: 40px;
  }

  .tab-panel,
  .security-inner,
  .setup-section,
  .pricing-heading,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .security-copy,
  .faq-heading {
    position: static;
  }

  .admin-nav {
    display: none;
  }

  .admin-preview {
    min-height: 520px;
    grid-template-columns: 1fr;
  }

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

  .pricing-toolbar {
    align-items: flex-start;
  }

  .pricing-controls {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .product-family,
  .billing-cycle {
    width: 100%;
  }

  .price-card {
    grid-column: auto;
    min-height: 0;
  }

  .motion-ready .price-card {
    transition-delay: 0ms;
  }

  .price-card > p:not(.plan-name) {
    min-height: 0;
  }

  .pricing-foot {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-header,
  .nav-shell {
    height: 66px;
  }

  .mobile-nav {
    top: 66px;
    height: calc(100svh - 66px);
  }

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

  .hero {
    height: calc(100svh - 64px);
    min-height: 760px;
  }

  .hero::before {
    top: 78px;
    width: 5px;
    height: 54px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 100px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 22px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    font-size: 12px;
  }

  .product-stage {
    width: calc(100% - 20px);
    height: 360px;
    margin-top: 24px;
  }

  .product-window {
    transform: none;
    border-radius: 6px;
  }

  .window-bar {
    height: 44px;
    grid-template-columns: 1fr auto;
  }

  .window-user {
    font-size: 10px;
  }

  .window-search {
    display: none;
  }

  .workspace-preview {
    height: calc(100% - 44px);
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .preview-sidebar {
    padding: 12px 6px;
  }

  .workspace-name {
    margin: 0 2px 16px;
  }

  .workspace-name strong,
  .preview-sidebar > p,
  .preview-channel b {
    display: none;
  }

  .preview-channel {
    height: 32px;
    padding: 0 5px;
    gap: 4px;
    overflow: hidden;
    font-size: 8px;
    white-space: nowrap;
  }

  .chat-heading {
    height: 50px;
    padding: 0 10px;
  }

  .chat-heading strong {
    font-size: 12px;
  }

  .chat-tools span:last-child {
    display: none;
  }

  .message-list {
    padding: 14px 10px 6px;
    gap: 12px;
  }

  .avatar {
    width: 26px;
    height: 26px;
    font-size: 7px;
  }

  .message-row > div {
    font-size: 9px;
  }

  .message-row time {
    font-size: 7px;
  }

  .file-row {
    margin-left: 34px;
    padding: 6px;
    grid-template-columns: 27px 1fr;
  }

  .file-type {
    width: 27px;
    height: 30px;
  }

  .file-row button {
    display: none;
  }

  .current-user > div {
    max-width: 88%;
    padding: 7px 8px;
  }

  .composer-preview {
    height: 38px;
    margin: 0 8px 8px;
    font-size: 8px;
  }

  .proof-strip {
    padding: 24px 18px;
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:nth-child(3) {
    min-height: 64px;
    padding: 10px 4px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip div:first-child {
    border-top: 0;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .setup-heading h2,
  .faq-heading h2,
  .security-copy h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  .section-heading > p:last-child,
  .pricing-heading > p,
  .security-copy > p {
    font-size: 16px;
  }

  .product-tabs {
    margin: 0 -18px;
  }

  .tab-list {
    height: 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .tab-list button {
    min-width: 0;
    padding: 0 8px;
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
  }

  .tab-list button::after {
    right: 8px;
    left: 8px;
  }

  .tab-panel {
    min-height: 0;
    gap: 36px;
    padding: 46px 18px 0;
  }

  .panel-copy h3 {
    font-size: 28px;
  }

  .conversation-demo,
  .call-demo,
  .calendar-demo {
    min-height: 360px;
  }

  .conversation-demo {
    padding: 34px 16px 24px;
  }

  .conversation-demo .demo-label {
    top: 8px;
    right: 8px;
  }

  .audio-demo {
    width: calc(100% - 30px);
    margin-left: 30px;
  }

  .call-person {
    min-height: 115px;
  }

  .calendar-demo {
    padding: 12px;
  }

  .calendar-grid {
    height: 280px;
  }

  .calendar-grid > div {
    padding: 14px 3px;
  }

  .event-block {
    left: 2px;
    right: 2px;
    padding: 7px 3px;
    font-size: 7px;
  }

  .security-inner,
  .setup-section,
  .pricing-heading,
  .faq-section {
    gap: 42px;
  }

  .security-list article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .admin-preview {
    min-height: 470px;
    margin: 0 -8px;
  }

  .admin-content {
    padding: 22px 14px;
  }

  .admin-title h3 {
    font-size: 23px;
  }

  .metric-row > div {
    min-height: 100px;
    padding: 14px 10px;
  }

  .metric-row strong {
    font-size: 21px;
  }

  .metric-row small {
    font-size: 8px;
  }

  .table-row {
    grid-template-columns: 34px 1fr auto;
  }

  .table-row > span:not(.avatar) {
    display: none;
  }

  .setup-steps li {
    grid-template-columns: 44px 1fr;
  }

  .pricing-heading {
    margin-bottom: 36px;
  }

  .pricing-toolbar {
    margin-bottom: 28px;
    flex-direction: column;
    gap: 12px;
  }

  .billing-cycle {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-family button {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
  }

  .billing-cycle button {
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

  .pricing-tax {
    width: 100%;
    text-align: center;
  }

  .price-card {
    padding: 30px 24px;
  }

  .price strong {
    font-size: 34px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 16px;
  }

  .closing-section {
    padding: 84px 18px;
  }

  .closing-section h2 {
    font-size: 38px;
  }

  .closing-actions {
    flex-direction: column;
  }

  .site-footer {
    padding: 54px 18px 24px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-main p {
    text-align: left;
  }

  .footer-links {
    margin-top: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 42px;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 600px) and (max-height: 720px) {
  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 82px;
  }

  .product-stage {
    height: 260px;
    margin-top: 18px;
  }
}

@media (max-width: 360px) {
  .nav-shell,
  .hero-copy {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 21px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .product-stage {
    width: calc(100% - 12px);
  }

  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .setup-heading h2,
  .faq-heading h2,
  .security-copy h2 {
    font-size: 30px;
  }

  .product-tabs {
    margin-right: -14px;
    margin-left: -14px;
  }

  .tab-panel {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tab-list button {
    min-width: 0;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
  }

  .admin-preview {
    margin-right: 0;
    margin-left: 0;
  }

  .admin-content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .metric-row > div {
    padding-right: 6px;
    padding-left: 6px;
  }

  .metric-row strong {
    font-size: 18px;
  }

  .price-card {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .footer-links > div:last-child {
    grid-column: auto;
  }
}

/* Product-led landing refresh */
.hero {
  height: auto;
  min-height: 820px;
  padding: 132px 24px 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(23, 107, 77, 0.12), transparent 28%),
    radial-gradient(circle at 61% 70%, rgba(230, 106, 50, 0.08), transparent 26%),
    var(--paper);
}

.hero::before {
  top: 122px;
  width: 6px;
  height: 70px;
  border-radius: 0 6px 6px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 72px 0 auto 50%;
  width: min(62vw, 840px);
  height: 620px;
  pointer-events: none;
  opacity: 0.3;
  background-image: linear-gradient(rgba(23, 107, 77, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 107, 77, 0.09) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(620px, 1.42fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-copy .eyebrow span {
  width: 7px;
  height: 7px;
  display: block;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(230, 106, 50, 0.12);
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(48px, 5.2vw, 68px);
  line-height: 1.01;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #4f5652;
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 30px;
  justify-content: flex-start;
}

.hero-actions .button {
  min-height: 50px;
  padding-inline: 21px;
}

.hero-assurance {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  color: #656c67;
  font-size: 12px;
  font-weight: 600;
}

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

.hero-assurance i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.hero-product {
  min-width: 0;
}

.product-stage {
  width: 100%;
  height: 598px;
  margin: 0;
  transform: none;
  perspective: 1600px;
}

.stage-aura {
  position: absolute;
  inset: -34px -44px 76px 3%;
  z-index: -1;
  border-radius: 48%;
  background: linear-gradient(135deg, rgba(23, 107, 77, 0.2), rgba(239, 199, 94, 0.2) 52%, rgba(230, 106, 50, 0.16));
  filter: blur(30px);
  transform: rotate(-4deg);
}

.product-window {
  position: relative;
  height: 518px;
  border-color: rgba(20, 38, 30, 0.2);
  border-radius: 16px;
  transform: rotateX(1deg) rotateY(-0.5deg);
  box-shadow: 0 38px 90px rgba(30, 43, 36, 0.2), 0 8px 24px rgba(30, 43, 36, 0.12);
  animation: product-window-in 900ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.window-bar {
  height: 48px;
  padding: 0 14px;
  grid-template-columns: 54px auto minmax(180px, 1fr) 32px;
  gap: 12px;
  background: #183f32;
}

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

.window-dots i {
  width: 7px;
  height: 7px;
  display: block;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.window-dots i:first-child { background: #f08a5b; }
.window-dots i:nth-child(2) { background: #efc75e; }
.window-dots i:last-child { background: #69be8e; }

.window-brand {
  font-size: 12px;
  letter-spacing: 0;
}

.window-brand .brand-mark {
  width: 18px;
  height: 18px;
  background: var(--orange);
}

.window-brand .brand-mark i {
  top: 4px;
  width: 4px;
  height: 9px;
}

.window-search {
  width: min(100%, 290px);
  height: 29px;
  justify-self: center;
  justify-content: flex-start;
  gap: 8px;
  padding-inline: 11px;
  color: #bfd0c8;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  font-size: 9px;
}

.window-search b {
  color: #e3ebe7;
  font-size: 13px;
}

.window-user {
  width: 26px;
  height: 26px;
  color: #173d31;
  background: #f3c971;
  font-size: 8px;
}

.workspace-preview {
  height: calc(100% - 48px);
  grid-template-columns: 48px 156px minmax(280px, 1fr) 158px;
}

.preview-rail {
  padding: 13px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #b6c5be;
  background: #123428;
}

.rail-workspace,
.rail-avatar,
.rail-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
}

.rail-workspace {
  margin-bottom: 10px;
  color: var(--white);
  background: var(--orange);
}

.rail-icon {
  color: #a7bbb1;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
}

.rail-icon.is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 2px 0 var(--orange);
}

.rail-spacer { flex: 1; }

.rail-avatar {
  color: #153f31;
  background: #f0c76d;
  border-radius: 50%;
}

.preview-sidebar {
  padding: 16px 9px;
  color: #cdd8d2;
  background: #1a4436;
  border-right-color: rgba(255, 255, 255, 0.08);
}

.workspace-name {
  margin: 0 4px 22px;
  gap: 7px;
}

.workspace-name > span {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-size: 10px;
}

.workspace-name > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.workspace-name strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-name small {
  color: #91aa9e;
  font-size: 8px;
}

.workspace-name > b {
  margin-left: auto;
  color: #93aa9f;
  font-size: 10px;
}

.preview-sidebar > p {
  margin: 18px 7px 7px;
  color: #759486;
  font-size: 8px;
  letter-spacing: 0.05em;
}

.preview-channel {
  height: 31px;
  padding: 0 8px;
  gap: 7px;
  color: #b8cbc1;
  border-radius: 6px;
  font-size: 9px;
}

.preview-channel.is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.preview-channel b {
  min-width: 15px;
  padding: 0 4px;
  font-size: 7px;
}

.preview-chat {
  background: #fbfcfa;
}

.chat-heading {
  height: 58px;
  padding: 0 16px;
  border-bottom-color: #e5e8e3;
}

.chat-heading strong { font-size: 12px; }
.chat-heading span { font-size: 8px; }
.chat-tools { gap: 5px; }
.chat-tools span {
  width: 24px;
  height: 24px;
  border: 0;
  background: #f0f2ee;
  border-radius: 7px;
  font-size: 9px;
}

.message-list {
  padding: 10px 16px 6px;
  gap: 11px;
}

.chat-date {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #929993;
  font-size: 7px;
  text-transform: uppercase;
}

.chat-date::before,
.chat-date::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e5e7e2;
}

.message-row { gap: 8px; }
.message-row .avatar {
  width: 28px;
  height: 28px;
  font-size: 8px;
}
.message-row > div { font-size: 9px; line-height: 1.45; }
.message-row p { margin-bottom: 2px; }
.message-row time { font-size: 7px; }

.file-row {
  width: min(230px, calc(100% - 34px));
  margin-left: 36px;
  padding: 8px;
  grid-template-columns: 30px 1fr 24px;
  gap: 8px;
  background: var(--white);
  border-color: #dfe3dd;
  border-radius: 8px;
}

.file-type {
  width: 30px;
  height: 34px;
  font-size: 7px;
}

.file-row div { font-size: 8px; }
.file-row div span { font-size: 7px; }
.file-row button,
.composer-preview button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 9px;
}

.call-summary {
  margin-left: 36px;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: #34443c;
  background: #eef5f1;
  border: 1px solid #d7e6de;
  border-radius: 8px;
  font-size: 7px;
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.call-summary-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
}

.call-summary div { display: flex; flex-direction: column; }
.call-summary strong { font-size: 8px; }
.call-summary small { color: #77847d; font-size: 7px; }
.call-summary > span:last-child { color: var(--green); font-weight: 700; }

.current-user > div {
  max-width: 84%;
  padding: 8px 9px;
  background: #dfeee6;
  border-radius: 8px 3px 8px 8px;
}

.current-user .reaction {
  margin-top: 3px;
  padding: 0;
  background: transparent;
  font-size: 7px;
}

.composer-preview {
  height: 38px;
  margin: 0 12px 12px;
  padding: 0 5px 0 9px;
  gap: 7px;
  border-color: #dfe3dd;
  border-radius: 9px;
  font-size: 8px;
}

.composer-preview p { flex: 1; margin: 0; }
.composer-preview > span,
.composer-preview > i { color: #727c76; font-size: 11px; font-style: normal; }

.preview-context {
  padding: 0 13px 16px;
  background: #f3f5f1;
  border-left-color: #e0e4de;
}

.context-head {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe3dd;
}

.context-head p { margin: 0; font-size: 10px; font-weight: 700; }
.context-head span { color: #89918c; font-size: 13px; }
.context-label { margin: 16px 0 8px; font-size: 7px; }

.meeting-preview {
  padding: 11px;
  background: var(--white);
  border: 1px solid #dfe4de;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(26, 54, 42, 0.05);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.meeting-day {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.meeting-preview strong { font-size: 10px; }
.meeting-preview p { margin: 3px 0 9px; font-size: 8px; }
.meeting-preview p b { color: #414b45; }
.meeting-preview button {
  height: 29px;
  padding-inline: 9px;
  justify-content: space-between;
  display: flex;
  align-items: center;
  border-radius: 6px;
  font-size: 8px;
}

.context-divider { margin: 17px 0; }
.team-stack span,
.team-stack b {
  width: 27px;
  height: 27px;
  font-size: 7px;
}
.context-copy { margin-top: 12px; font-size: 8px; }

.stage-focus-message,
.stage-focus-call,
.stage-focus-calendar {
  opacity: 0.62;
  transform: translateY(0) scale(0.985);
}

.product-stage[data-step="message"] .stage-focus-message,
.product-stage[data-step="call"] .stage-focus-call,
.product-stage[data-step="calendar"] .stage-focus-calendar {
  opacity: 1;
  transform: translateY(-2px) scale(1);
  box-shadow: 0 10px 28px rgba(23, 107, 77, 0.15), 0 0 0 2px rgba(23, 107, 77, 0.12);
}

.stage-flow {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  z-index: 5;
  height: 66px;
  padding: 8px 14px;
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(28, 50, 40, 0.13);
  border-radius: 13px;
  box-shadow: 0 18px 42px rgba(26, 45, 36, 0.14);
  backdrop-filter: blur(14px);
}

.stage-flow button {
  min-width: 0;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #707873;
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

.stage-flow button > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #7a847e;
  background: #ecefea;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  transition: color 220ms ease, background-color 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stage-flow button div { min-width: 0; display: flex; flex-direction: column; }
.stage-flow button strong { color: inherit; font-size: 9px; }
.stage-flow button small { overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.stage-flow button.is-active { color: var(--green-deep); background: #f2f7f4; }
.stage-flow button.is-active > span { color: var(--white); background: var(--green); transform: scale(1.08); }
.stage-flow > i { height: 1px; background: #d8ded9; transform: scaleX(0.55); }

.proof-strip {
  position: relative;
  z-index: 3;
  box-shadow: 0 -1px rgba(255, 255, 255, 0.7);
}

.tab-list {
  height: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tab-list button {
  min-width: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-left: 1px solid var(--line);
  font-size: 14px;
}

.tab-list button:first-child { border-left: 0; }
.tab-list button > span {
  color: #9a9f9b;
  font-size: 10px;
  font-weight: 700;
}
.tab-list button[aria-selected="true"] > span { color: var(--orange); }

.tab-panel {
  min-height: 590px;
  grid-template-columns: minmax(280px, 0.7fr) minmax(560px, 1.3fr);
  gap: 64px;
  padding-top: 72px;
}

.panel-copy h3 {
  font-size: 36px;
  letter-spacing: 0;
}

.conversation-demo,
.call-demo,
.calendar-demo {
  min-height: 520px;
  border-color: #cdd3cd;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(27, 46, 37, 0.12);
}

.demo-label {
  top: 11px;
  right: 11px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.conversation-demo {
  padding: 0;
  display: block;
  background: #f7f8f5;
}

.demo-appbar {
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #bacdc4;
  background: #183f32;
  font-size: 9px;
}

.demo-app-brand { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; }
.demo-app-brand b { width: 25px; height: 25px; display: grid; place-items: center; background: var(--orange); border-radius: 7px; font-size: 8px; }
.conversation-layout { height: 472px; display: grid; grid-template-columns: 176px minmax(0, 1fr); }

.demo-conversations {
  padding: 22px 10px;
  background: #eef1ed;
  border-right: 1px solid #dce1db;
}

.demo-conversations > p { margin: 0 9px 11px; color: #89928c; font-size: 8px; font-weight: 800; }
.demo-conversations > div {
  min-height: 52px;
  padding: 8px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
}
.demo-conversations > div.is-selected { background: var(--white); box-shadow: 0 4px 14px rgba(35, 52, 43, 0.06); }
.demo-conversations > div > span { color: #7e8983; font-size: 12px; text-align: center; }
.demo-conversations div div { min-width: 0; display: flex; flex-direction: column; }
.demo-conversations strong,
.demo-conversations small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-conversations strong { font-size: 9px; }
.demo-conversations small { color: #89918c; font-size: 7px; }
.demo-conversations > div > b { min-width: 16px; padding: 1px 4px; color: var(--white); background: var(--orange); border-radius: 8px; font-size: 7px; text-align: center; }
.mini-presence { width: 7px; height: 7px; margin: auto; display: block; background: #55b780; border-radius: 50%; }

.demo-thread { min-width: 0; display: flex; flex-direction: column; background: #fbfcfa; }
.demo-thread-head { height: 60px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e2e6e1; }
.demo-thread-head div { display: flex; flex-direction: column; }
.demo-thread-head strong { font-size: 11px; }
.demo-thread-head small,
.demo-thread-head > span { color: #87908a; font-size: 8px; }
.demo-thread-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 18px; }
.demo-thread-body .demo-message > div { font-size: 10px; }
.demo-thread-body .demo-message p { font-size: 10px; }
.demo-thread-body .audio-demo { width: min(290px, calc(100% - 44px)); }

.demo-file {
  width: min(300px, calc(100% - 44px));
  margin-left: 44px;
  padding: 10px;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid #dce1db;
  border-radius: 9px;
}
.demo-file > span { width: 36px; height: 40px; display: grid; place-items: center; color: #a14538; background: #f7ded8; border-radius: 6px; font-size: 8px; font-weight: 800; }
.demo-file div { min-width: 0; display: flex; flex-direction: column; }
.demo-file strong { font-size: 9px; }
.demo-file small { color: #8b938e; font-size: 8px; }
.demo-file i { color: var(--green); font-size: 13px; font-style: normal; }

.call-demo {
  padding: 0;
  background: #18201c;
}
.call-top {
  height: 54px;
  padding: 0 16px;
  align-items: center;
  border-bottom: 1px solid #303934;
}
.call-top div { display: flex; align-items: center; gap: 8px; }
.call-top i { width: 7px; height: 7px; display: block; background: #58bb82; border-radius: 50%; box-shadow: 0 0 0 4px rgba(88, 187, 130, 0.1); }
.call-layout { height: 466px; display: grid; grid-template-columns: minmax(0, 1fr) 174px; }
.call-stage { min-width: 0; padding: 13px; display: flex; flex-direction: column; }
.call-grid { flex: 1; gap: 7px; }
.call-person { min-height: 0; border-color: #3a4640; border-radius: 9px; background: radial-gradient(circle at 50% 36%, #34423b, #27312c); }
.call-person > span { width: 54px; height: 54px; font-size: 13px; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16); }
.call-person p { left: 9px; bottom: 8px; padding: 3px 7px; display: flex; align-items: center; gap: 5px; background: rgba(12, 18, 15, 0.66); border-radius: 5px; font-size: 8px; }
.call-person p i { width: 5px; height: 5px; display: block; background: #62c28d; border-radius: 50%; }
.call-person > b { position: absolute; top: 7px; right: 8px; color: #9caaa3; font-size: 8px; }
.call-person.is-speaking { border-color: #66c28f; box-shadow: inset 0 0 0 1px #66c28f; }
.call-controls { height: 56px; align-items: center; }
.call-controls span { width: 32px; height: 32px; font-size: 10px; }
.call-controls .hangup { width: 42px; border-radius: 17px; font-size: 17px; }

.meeting-chat { padding: 18px 12px 12px; display: flex; flex-direction: column; color: #313a35; background: #f4f5f2; border-left: 1px solid #3b4641; }
.meeting-chat > div { padding-bottom: 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dfe3dd; font-size: 9px; }
.meeting-chat > div span { color: #89918c; }
.meeting-chat p { margin: 14px 0 0; padding: 9px; display: flex; flex-direction: column; background: var(--white); border-radius: 8px; font-size: 8px; }
.meeting-chat p span { margin-top: 3px; color: #59615d; line-height: 1.45; }
.meeting-chat time { margin-top: 4px; color: #9aa09c; font-size: 7px; }
.meeting-chat label { height: 34px; margin-top: auto; padding: 0 5px 0 9px; display: flex; align-items: center; justify-content: space-between; color: #929994; background: var(--white); border: 1px solid #dce1db; border-radius: 7px; font-size: 7px; }
.meeting-chat label i { width: 23px; height: 23px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 5px; font-style: normal; }

.calendar-demo { padding: 0; background: var(--white); }
.calendar-toolbar { height: 64px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.calendar-toolbar > div { display: flex; align-items: center; gap: 9px; }
.calendar-toolbar button { min-height: 30px; padding: 0 10px; color: #3d4942; background: var(--white); border: 1px solid #d8ddd7; border-radius: 6px; font-size: 8px; font-weight: 700; }
.calendar-toolbar > button { color: var(--white); background: var(--green); border-color: var(--green); }
.calendar-toolbar span { color: #7e8882; font-size: 15px; }
.calendar-toolbar strong { margin-left: 4px; font-size: 10px; }
.calendar-layout { height: 456px; display: grid; grid-template-columns: minmax(0, 1fr) 176px; }
.calendar-layout .calendar-grid { height: 100%; background: repeating-linear-gradient(to bottom, transparent 0 54px, #edf0eb 55px); }
.calendar-grid > div { padding: 17px 5px; border-left-color: #e6e9e4; }
.calendar-grid b { font-size: 7px; }
.calendar-grid > div > span { font-size: 13px; }
.calendar-grid .today > span { width: 24px; height: 24px; font-size: 11px; }
.event-block { top: 92px; padding: 8px 6px; display: flex; flex-direction: column; border-left: 3px solid #4fa878; border-radius: 6px; font-size: 8px; }
.event-block small { margin-bottom: 3px; font-size: 7px; }
.event-block em { margin-top: 5px; opacity: 0.7; font-size: 6px; font-style: normal; }
.event-orange { top: 155px; border-left-color: var(--orange); }
.event-ink { top: 238px; border-left-color: #3a4654; }
.agenda-preview { padding: 20px 12px; background: #f4f6f2; border-left: 1px solid #dfe3dd; }
.agenda-preview > p { margin: 0 0 3px; color: var(--orange); font-size: 7px; font-weight: 800; }
.agenda-preview > strong { font-size: 12px; }
.agenda-preview > div { margin-top: 16px; display: grid; grid-template-columns: 34px 1fr; gap: 7px; }
.agenda-preview time { color: var(--green); font-size: 8px; font-weight: 700; }
.agenda-preview span { display: flex; flex-direction: column; }
.agenda-preview b { font-size: 8px; }
.agenda-preview small { margin-top: 2px; color: #89918c; font-size: 7px; }

.admin-preview {
  min-height: 650px;
  grid-template-columns: 216px minmax(0, 1fr);
  color: var(--ink);
  background: #f6f7f4;
  border-color: #ccd3cd;
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(27, 47, 37, 0.16);
}
.admin-nav { position: relative; padding: 24px 13px 18px; display: flex; flex-direction: column; color: #dce7e1; background: #123d2f; border-right: 0; }
.admin-brand { margin: 0 8px 26px; gap: 10px; }
.admin-brand .brand-mark { background: var(--orange); }
.admin-brand > div { display: flex; flex-direction: column; }
.admin-brand strong { font-size: 14px; }
.admin-brand small { color: #91aa9f; font-size: 8px; }
.admin-org { margin-bottom: 25px; padding: 10px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 9px; }
.admin-org > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 7px; font-size: 9px; font-weight: 800; }
.admin-org > div { min-width: 0; display: flex; flex-direction: column; }
.admin-org strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-org small { color: #96ada2; font-size: 8px; }
.admin-org > b { color: #91aa9f; font-size: 9px; }
.admin-nav > p { margin: 0 10px 9px; color: #789789; font-size: 8px; }
.admin-nav button { height: 42px; padding: 0 10px; display: flex; align-items: center; gap: 10px; color: #b4c9bf; border-radius: 7px; font-size: 10px; }
.admin-nav button > span { width: 20px; color: #8aa698; text-align: center; font-size: 12px; }
.admin-nav button.selected { color: var(--white); background: rgba(255, 255, 255, 0.12); }
.admin-nav button.selected > span { color: #f0be74; }
.admin-nav-user { margin-top: auto; padding: 12px 8px 0; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 9px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.admin-nav-user > span { width: 30px; height: 30px; display: grid; place-items: center; color: #123d2f; background: #efc56c; border-radius: 50%; font-size: 8px; font-weight: 800; }
.admin-nav-user > div { display: flex; flex-direction: column; }
.admin-nav-user strong { font-size: 9px; }
.admin-nav-user small { color: #8da79a; font-size: 7px; }

.admin-content { padding: 0 32px 32px; overflow: hidden; }
.admin-topbar { height: 58px; margin: 0 -32px 0; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.75); border-bottom: 1px solid #dfe4df; }
.admin-demo-label { margin: 0; color: #6b746e; background: #f1f3ef; border-color: #dce1dc; }
.admin-topbar > div { display: flex; align-items: center; gap: 9px; }
.admin-topbar > div span { width: 27px; height: 27px; display: grid; place-items: center; color: #738078; background: #f2f4f1; border-radius: 7px; font-size: 9px; }
.admin-topbar > div b { width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 8px; }
.admin-title { margin-top: 26px; }
.admin-title span { color: var(--green); font-size: 8px; letter-spacing: 0.04em; }
.admin-title h3 { color: #1d2923; font-size: 26px; letter-spacing: 0; }
.admin-title p { margin: 3px 0 0; color: #7a837e; font-size: 10px; }
.admin-title button { min-height: 38px; padding: 0 13px; color: var(--white); background: var(--green); border-radius: 7px; }
.metric-row { margin-top: 24px; gap: 10px; border: 0; }
.metric-row > div { position: relative; min-height: 116px; padding: 16px; background: var(--white); border: 1px solid #dfe4df; border-radius: 10px; }
.metric-row > div:first-child { border-left: 1px solid #dfe4df; }
.metric-row span,
.metric-row small { color: #7d8781; font-size: 8px; }
.metric-row strong { margin: 7px 0 0; color: #213028; font-size: 25px; }
.metric-row i { position: absolute; right: 15px; bottom: 14px; left: 15px; height: 4px; overflow: hidden; background: #edf0ec; border-radius: 3px; }
.metric-row i::after { content: ""; width: var(--usage); height: 100%; display: block; background: linear-gradient(90deg, var(--green), #57aa80); border-radius: inherit; transform-origin: left; animation: usage-grow 900ms 300ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.admin-grid { margin-top: 14px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.8fr); gap: 12px; }
.admin-table,
.audit-preview { margin-top: 0; overflow: hidden; background: var(--white); border: 1px solid #dfe4df; border-radius: 10px; }
.table-heading { min-height: 58px; padding: 0 14px; grid-template-columns: 1fr auto; border-bottom-color: #e4e8e3; }
.table-heading > div { display: flex; flex-direction: column; }
.table-heading strong { font-size: 10px; }
.table-heading span { color: #8a928d; font-size: 8px; }
.table-heading > b { color: var(--green); font-size: 8px; }
.table-row { min-height: 60px; padding: 0 13px; grid-template-columns: 32px 1fr 0.75fr auto; gap: 8px; border-bottom-color: #e7eae6; }
.table-row:last-child { border-bottom: 0; }
.table-row .avatar { width: 28px; height: 28px; font-size: 7px; }
.table-row > div { min-width: 0; display: flex; flex-direction: column; }
.table-row > div strong { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.table-row > div small,
.table-row > span:not(.avatar),
.table-row time { color: #838d87; font-size: 7px; }
.table-row time { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.table-row time i { width: 5px; height: 5px; display: block; background: #4db579; border-radius: 50%; }
.audit-preview { padding: 0 13px; }
.audit-preview > div { min-height: 58px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e4e8e3; }
.audit-preview > div span { font-size: 10px; font-weight: 700; }
.audit-preview > div b { color: var(--green); font-size: 8px; }
.audit-preview article { min-height: 60px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; border-bottom: 1px solid #e8ebe7; }
.audit-preview article:last-child { border-bottom: 0; }
.audit-preview article > i { width: 26px; height: 26px; display: grid; place-items: center; color: #53625a; background: #eef2ee; border-radius: 7px; font-size: 9px; font-style: normal; }
.audit-preview article > i.audit-green { color: var(--green); background: #e4f0e9; }
.audit-preview article > i.audit-orange { color: #b8592d; background: #f8e5dc; }
.audit-preview article p { min-width: 0; margin: 0; display: flex; flex-direction: column; }
.audit-preview article strong,
.audit-preview article small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.audit-preview article strong { font-size: 8px; }
.audit-preview article small { color: #87908a; font-size: 7px; }
.audit-preview article time { color: #939b96; font-size: 7px; }

@keyframes product-window-in {
  from { opacity: 0; transform: translateY(32px) scale(0.975) rotateX(3deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotateX(1deg) rotateY(-0.5deg); }
}

@keyframes usage-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1120px) {
  .hero-shell { grid-template-columns: minmax(310px, 0.72fr) minmax(560px, 1.28fr); gap: 34px; }
  .workspace-preview { grid-template-columns: 46px 144px minmax(280px, 1fr); }
  .preview-context { display: none; }
  .tab-panel { grid-template-columns: minmax(260px, 0.65fr) minmax(520px, 1.35fr); gap: 42px; }
  .admin-grid { grid-template-columns: 1.35fr 0.8fr; }
}

@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 118px; }
  .hero-shell { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1 { max-width: 760px; font-size: 58px; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-assurance { justify-content: center; }
  .hero-product { width: 100%; max-width: 820px; margin: 0 auto; }
  .product-stage { height: 600px; }
  .workspace-preview { grid-template-columns: 50px 170px minmax(320px, 1fr) 170px; }
  .preview-context { display: block; }
  .tab-panel { min-height: 0; grid-template-columns: 1fr; gap: 44px; }
  .panel-copy { max-width: 660px; }
  .conversation-demo,
  .call-demo,
  .calendar-demo { width: min(100%, 720px); }
  .admin-preview { grid-template-columns: 190px minmax(0, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .audit-preview { display: none; }
}

@media (max-width: 820px) {
  .hero { height: auto; min-height: 0; }
  .hero-copy { padding-top: 0; }
  .product-stage { width: 100%; margin-top: 0; }
  .admin-nav { display: flex; }
  .admin-preview { grid-template-columns: 180px minmax(0, 1fr); }
}

@media (max-width: 700px) {
  .hero { padding: 104px 16px 58px; }
  .hero::after { inset-inline-start: 20%; width: 100%; }
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-assurance { gap: 8px 12px; }
  .product-stage { height: 490px; }
  .product-window { height: 414px; border-radius: 12px; }
  .window-bar { height: 42px; grid-template-columns: 46px auto 1fr 26px; padding-inline: 10px; }
  .window-search { max-width: 170px; }
  .workspace-preview { height: calc(100% - 42px); grid-template-columns: 42px 118px minmax(0, 1fr); }
  .preview-context { display: none; }
  .preview-rail { padding-inline: 5px; }
  .rail-workspace,
  .rail-avatar,
  .rail-icon { width: 28px; height: 28px; }
  .preview-sidebar { padding-inline: 6px; }
  .workspace-name > div,
  .workspace-name > b { display: none; }
  .preview-channel { padding-inline: 6px; font-size: 8px; }
  .message-list { padding-inline: 10px; }
  .call-summary { grid-template-columns: 25px minmax(0, 1fr); }
  .call-summary > span:last-child { display: none; }
  .stage-flow { right: 8px; left: 8px; padding-inline: 6px; grid-template-columns: 1fr 12px 1fr 12px 1fr; }
  .stage-flow button { gap: 5px; }
  .stage-flow button small { display: none; }
  .stage-flow button strong { font-size: 8px; }
  .tab-list button { padding-inline: 10px; gap: 6px; }
  .conversation-layout { grid-template-columns: 1fr; }
  .demo-conversations { display: none; }
  .call-layout { grid-template-columns: 1fr; }
  .meeting-chat { display: none; }
  .calendar-layout { grid-template-columns: 1fr; }
  .agenda-preview { display: none; }
  .admin-preview { grid-template-columns: 1fr; }
  .admin-nav { display: none; }
  .admin-content { padding-inline: 18px; }
  .admin-topbar { margin-inline: -18px; }
}

@media (max-width: 600px) {
  .hero { min-height: 0; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 42px; }
  .hero-assurance span:last-child { display: none; }
  .hero-product { margin-inline: -7px; width: calc(100% + 14px); }
  .product-stage { height: 432px; }
  .product-window { height: 360px; }
  .window-dots,
  .window-search { display: none; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-brand { display: flex; }
  .workspace-preview { grid-template-columns: 40px 88px minmax(0, 1fr); }
  .preview-sidebar { display: block; }
  .workspace-name { justify-content: center; margin-inline: 0; }
  .preview-sidebar > p { display: none; }
  .preview-channel { margin-bottom: 4px; justify-content: center; font-size: 0; }
  .preview-channel i { font-size: 9px; }
  .preview-channel b { display: none; }
  .chat-heading { height: 48px; padding-inline: 9px; }
  .chat-tools span:not(:first-child) { display: none; }
  .message-list { gap: 8px; }
  .message-row > div { font-size: 8px; }
  .message-row > div > span { display: block; max-width: 180px; }
  .file-row,
  .call-summary { margin-left: 30px; }
  .call-summary { padding-block: 6px; }
  .current-user { display: none; }
  .composer-preview { height: 32px; margin: 0 7px 7px; }
  .composer-preview > span,
  .composer-preview > i { display: none; }
  .stage-flow { bottom: 0; height: 58px; }
  .stage-flow button > span { width: 23px; height: 23px; }
  .tab-list { height: 66px; }
  .tab-list button { flex-direction: column; gap: 2px; font-size: 11px; }
  .tab-panel { padding-top: 44px; }
  .conversation-demo,
  .call-demo,
  .calendar-demo { min-height: 430px; }
  .conversation-layout { height: 382px; }
  .demo-thread-body { padding: 20px 14px; }
  .demo-file { width: calc(100% - 34px); margin-left: 34px; }
  .demo-thread-body .audio-demo { width: calc(100% - 34px); margin-left: 34px; }
  .call-layout { height: 376px; }
  .call-grid { grid-template-columns: 1fr 1fr; }
  .call-person { min-height: 130px; }
  .calendar-layout { height: 366px; }
  .calendar-toolbar { padding-inline: 10px; }
  .calendar-toolbar > div button,
  .calendar-toolbar > div span { display: none; }
  .calendar-toolbar strong { font-size: 9px; }
  .event-block { padding-inline: 3px; font-size: 6px; }
  .event-block em { display: none; }
  .admin-preview { min-height: 590px; margin-inline: 0; }
  .admin-content { padding: 0 12px 18px; }
  .admin-topbar { margin-inline: -12px; padding-inline: 12px; }
  .admin-title h3 { font-size: 22px; }
  .admin-title p { display: block; }
  .metric-row { gap: 6px; }
  .metric-row > div { min-height: 104px; padding: 12px 8px; }
  .metric-row strong { font-size: 18px; }
  .metric-row small { font-size: 7px; }
  .table-row { grid-template-columns: 30px 1fr auto; padding-inline: 8px; }
  .table-row > span:not(.avatar) { display: none; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 38px; }
  .hero-assurance { justify-content: flex-start; }
  .product-stage { height: 404px; }
  .product-window { height: 338px; }
  .workspace-preview { grid-template-columns: 38px 72px minmax(0, 1fr); }
  .preview-sidebar { padding-inline: 3px; }
  .message-row > div > span { max-width: 150px; }
  .stage-flow button { justify-content: center; }
  .stage-flow button div { display: none; }
  .stage-flow > i { transform: scaleX(0.85); }
  .metric-row span { font-size: 7px; }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .metric-row i::after,
  .product-window {
    animation: none !important;
  }
}
.preview-icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

svg.preview-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.preview-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.window-search > .preview-icon,
.workspace-name > .preview-icon,
.admin-org > .preview-icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}

.chat-tools > span,
.call-controls > span,
.admin-nav button > span,
.context-head > span,
.composer-preview > span,
.composer-preview > i,
.composer-preview > button,
.meeting-chat > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
