:root {
  color-scheme: dark;
  --page: #0f1115;
  --page-deep: #0a0c0f;
  --surface: #171a1f;
  --surface-raised: #20242a;
  --surface-subtle: #252a31;
  --surface-hover: #2b3038;
  --surface-selected: #202e42;
  --surface-strong: #101216;
  --text: #f4f4f2;
  --text-secondary: #c5c8ce;
  --text-muted: #9197a1;
  --border: #343a43;
  --border-soft: rgba(255, 255, 255, 0.09);
  --border-strong: #4d5561;
  --brand: #7770ff;
  --brand-strong: #4f46ff;
  --brand-soft: rgba(79, 70, 255, 0.16);
  --blue: #70a7df;
  --blue-soft: rgba(112, 167, 223, 0.15);
  --success: #58c994;
  --success-soft: rgba(88, 201, 148, 0.14);
  --warning: #efb657;
  --error: #ff8585;
  --focus: #9bd2ff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.46);
  --radius-sm: 7px;
  --radius: 11px;
  --radius-lg: 17px;
  --radius-xl: 24px;
  --shell: min(1180px, calc(100% - 48px));
  --narrow: min(840px, calc(100% - 48px));
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(79, 70, 255, 0.08), transparent 36rem),
    var(--page);
  color: var(--text);
  font: 400 16px/1.65 var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--font);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 650;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 620;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

::selection {
  background: rgba(119, 112, 255, 0.35);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #111;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

.section-shell,
.header-shell,
.footer-shell,
.footer-bottom {
  width: var(--shell);
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(15, 17, 21, 0.86);
  backdrop-filter: blur(18px) saturate(130%);
}

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

.site-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 650;
  letter-spacing: 0;
}

.header-navigation {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link,
.resources-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.resources-toggle:hover,
.nav-link[aria-current="page"],
.resources-nav.current > .resources-toggle {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.chevron {
  display: inline-block;
  font-size: 1rem;
  transition: transform 160ms ease;
}

.resources-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.resources-nav {
  position: relative;
}

.resources-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  width: 210px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.js .resources-menu {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.js .resources-nav.open .resources-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.resources-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.resources-menu a:hover,
.resources-menu a[aria-current="page"] {
  background: var(--surface-hover);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.language-switcher a {
  display: grid;
  min-width: 28px;
  min-height: 36px;
  place-items: center;
  border-radius: 6px;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(119, 112, 255, 0.55);
  border-radius: 999px;
  background: var(--brand-soft);
  color: #eeedff;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  border-color: var(--brand);
  background: rgba(79, 70, 255, 0.24);
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 4px 0;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #aaa6ff;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 144px) 0 0;
  isolation: isolate;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
}

.home-hero .hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.hero-copy {
  padding-bottom: 42px;
}

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

.hero-lede {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #0c0d13;
  box-shadow: 0 10px 28px rgba(79, 70, 255, 0.24);
}

.button.primary:hover {
  background: #8b86ff;
}

.button.secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button.secondary:hover {
  border-color: #747d8b;
  background: rgba(255, 255, 255, 0.06);
}

.button.disabled {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: not-allowed;
}

.button.large {
  min-height: 54px;
  padding-inline: 28px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-note span {
  color: var(--success);
  font-size: 0.55rem;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}

.ambient-one {
  top: 70px;
  left: -220px;
  width: 470px;
  height: 470px;
  background: rgba(79, 70, 255, 0.2);
}

.ambient-two {
  top: 180px;
  right: -240px;
  width: 500px;
  height: 500px;
  background: rgba(112, 167, 223, 0.13);
}

.hero-visual-wrap {
  position: relative;
  min-width: 0;
  perspective: 1600px;
}

.visual-glow {
  position: absolute;
  inset: 8% -4% -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 255, 0.17), transparent 65%);
  filter: blur(24px);
}

.product-visual {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #393f48;
  border-radius: var(--radius-lg);
  background: #151719;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.product-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.visual-window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #343a40;
  background: #1c1f22;
}

.visual-brand .brand-mark {
  width: 23px;
  height: 23px;
}

.visual-brand .brand-name {
  font-size: 0.82rem;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #525962;
}

.visual-app {
  display: grid;
  grid-template-columns: 170px minmax(340px, 1fr) 220px;
  min-height: 440px;
  color: #f2f3f4;
  font: 500 10px/1.35 var(--font);
}

.visual-sidebar,
.visual-stage,
.visual-chat {
  min-width: 0;
}

.visual-sidebar {
  display: flex;
  flex-direction: column;
  padding: 14px 10px 0;
  border-right: 1px solid #373c41;
  background: #1c1f22;
}

.visual-kicker,
.visual-section-title {
  color: #92989e;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 2px 15px;
}

.community-row div,
.visual-account div {
  display: grid;
  min-width: 0;
}

.community-row strong,
.visual-account strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-row span,
.visual-account div span {
  color: #92989e;
  font-size: 8px;
}

.community-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #4d5560;
  border-radius: 7px;
  background: #292d31;
  color: #8bb8e5;
  font-weight: 800;
}

.visual-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
  padding: 0 5px;
}

.visual-room {
  position: relative;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 4px 5px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #c1c5c9;
}

.visual-room > div {
  display: grid;
  min-width: 0;
}

.visual-room strong,
.visual-room > div span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-room > div span {
  color: #92989e;
  font-size: 8px;
}

.visual-room.current {
  border-color: rgba(112, 167, 223, 0.4);
  background: #20364d;
  color: #fff;
}

.visual-room.selected {
  border-color: #4a5057;
  background: #292d31;
}

.room-hash {
  color: #92989e;
  font-size: 14px;
}

.room-state {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 6px;
  font-weight: 750;
}

.room-state.joined {
  background: rgba(88, 201, 148, 0.17);
  color: #72d7aa;
}

.room-state.preview {
  background: rgba(146, 152, 158, 0.14);
  color: #b8bdc2;
}

.visual-account {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 51px;
  margin: auto -10px 0;
  padding: 7px 10px;
  border-top: 1px solid #373c41;
  background: #292d31;
}

.visual-account i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--success);
}

.visual-stage {
  display: grid;
  grid-template-rows: 53px minmax(0, 1fr) 48px;
  background: #1c1f22;
}

.visual-room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  border-bottom: 1px solid #373c41;
}

.visual-room-header > div:first-child {
  display: grid;
}

.visual-room-header > div:first-child span {
  color: #92989e;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.visual-room-header > div:first-child strong {
  font-size: 13px;
}

.visual-room-header > div:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-badge,
.visual-join {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #50575e;
  border-radius: 6px;
  color: #c1c5c9;
  font-size: 7px;
  font-weight: 700;
}

.visual-join {
  border-color: rgba(112, 167, 223, 0.7);
  background: #70a7df;
  color: #101820;
}

.visual-stage-body {
  min-height: 0;
  padding: 12px;
}

.visual-participant-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.visual-participant-heading span {
  color: #92989e;
  font-size: 8px;
}

.visual-participants {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.visual-person {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 48px;
  padding: 6px;
  border: 1px solid #373c41;
  border-radius: 8px;
  background: #24272b;
}

.visual-person.speaking {
  border-color: #58c994;
  box-shadow: 0 0 0 2px rgba(88, 201, 148, 0.13);
}

.visual-person > div {
  display: grid;
  min-width: 0;
}

.visual-person strong,
.visual-person div span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-person div span {
  color: #92989e;
  font-size: 7px;
}

.participant-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #203a55;
  color: #8bb8e5;
  font-size: 8px;
  font-weight: 800;
}

.participant-avatar.small {
  width: 28px;
  height: 28px;
}

.participant-avatar.blue {
  background: rgba(79, 70, 255, 0.2);
  color: #aaa6ff;
}

.participant-avatar.amber {
  background: rgba(239, 182, 87, 0.15);
  color: var(--warning);
}

.voice-bars {
  display: flex;
  height: 14px;
  align-items: flex-end;
  gap: 2px;
}

.voice-bars i {
  width: 2px;
  border-radius: 3px;
  background: var(--success);
  animation: voice-pulse 1100ms ease-in-out infinite alternate;
}

.voice-bars i:nth-child(1) {
  height: 5px;
}

.voice-bars i:nth-child(2) {
  height: 11px;
  animation-delay: -450ms;
}

.voice-bars i:nth-child(3) {
  height: 8px;
  animation-delay: -700ms;
}

.state-icon {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 5px;
  background: rgba(255, 133, 133, 0.14);
  color: var(--error);
}

.voice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(88, 201, 148, 0.1);
}

.visual-screen {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #30353a;
  border-radius: 9px;
  background: #101214;
}

.screen-topline {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border-bottom: 1px solid #30353a;
  color: #c1c5c9;
  font-size: 8px;
}

.screen-topline i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.screen-canvas {
  position: relative;
  min-height: 155px;
  padding: 24px 24px 18px;
  background:
    linear-gradient(135deg, rgba(79, 70, 255, 0.12), transparent 45%),
    #11141a;
}

.screen-label {
  width: 58%;
  height: 15px;
  overflow: hidden;
  color: #ececf4;
  font-size: 10px;
  font-weight: 700;
}

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

.screen-columns span {
  min-height: 54px;
  border: 1px solid #353b46;
  border-radius: 5px;
  background: linear-gradient(180deg, #232834, #191d24);
}

.screen-columns span:nth-child(2) {
  border-color: rgba(119, 112, 255, 0.55);
  background: linear-gradient(180deg, rgba(79, 70, 255, 0.22), #191d24);
}

.screen-progress {
  width: 68%;
  height: 4px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 9px;
  background: #2a2f38;
}

.screen-progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--blue));
}

.visual-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-top: 1px solid #373c41;
  background: #292d31;
}

.visual-controls > span:last-child {
  margin-left: 5px;
  color: #92989e;
  font-size: 8px;
}

.control {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #50575e;
  border-radius: 7px;
  color: #c1c5c9;
}

.control.active {
  border-color: rgba(88, 201, 148, 0.5);
  background: rgba(88, 201, 148, 0.14);
  color: var(--success);
}

.visual-chat {
  display: grid;
  grid-template-rows: 38px auto auto 1fr 48px;
  border-left: 1px solid #373c41;
  background: #1c1f22;
}

.chat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4px;
  border-bottom: 1px solid #373c41;
  background: #292d31;
  text-align: center;
}

.chat-tabs strong {
  display: grid;
  height: 26px;
  place-items: center;
  border-radius: 5px;
  background: #24272b;
  color: #8bb8e5;
}

.chat-tabs span {
  color: #92989e;
}

.chat-message {
  padding: 10px 11px;
  border-bottom: 1px solid #373c41;
}

.chat-message > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.chat-message time {
  color: #777e86;
  font-size: 7px;
}

.chat-message p {
  margin: 4px 0 0;
  color: #c1c5c9;
  font-size: 9px;
}

.chat-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px;
  padding: 0 8px;
  border: 1px solid #373c41;
  border-radius: 7px;
  background: #292d31;
  color: #92989e;
  font-size: 8px;
}

.chat-composer b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: #70a7df;
  color: #101820;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: var(--shell);
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(68px, 9vw, 126px) auto 0;
  padding: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  list-style: none;
}

.proof-strip li {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 650;
  text-align: center;
}

.proof-strip li + li::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background: var(--border-soft);
  content: "";
}

.story-section,
.feature-section,
.deployment-section,
.trust-section,
.faq-section,
.roles-section,
.moderation-section,
.audio-section,
.client-status-section,
.audience-section,
.fit-section,
.pricing-cards-section,
.pricing-factors,
.security-status,
.security-detail,
.reporting-section,
.download-status,
.requirements-section,
.release-safety,
.contact-notice,
.contact-topics,
.privacy-note-section,
.empty-content,
.planned-topics,
.future-notes {
  padding: clamp(88px, 11vw, 152px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-lede {
  max-width: 680px;
  margin: 0;
  font-size: 1.08rem;
}

.story-section {
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012));
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.story-step {
  position: relative;
  min-height: 38vh;
  padding: 30px 0 36px 48px;
  border-left: 1px solid var(--border);
  opacity: 0.52;
  transition: opacity 220ms ease, border-color 220ms ease;
}

.story-step::before {
  position: absolute;
  top: 38px;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--page);
  content: "";
  transition: background 220ms ease, box-shadow 220ms ease;
}

.story-step.active {
  border-color: rgba(119, 112, 255, 0.5);
  opacity: 1;
}

.story-step.active::before {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 0 0 7px var(--brand-soft);
}

.story-step > span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.story-step h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.story-step p {
  max-width: 440px;
  margin: 0;
}

.story-sticky {
  position: sticky;
  top: 106px;
}

.story-visual {
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 70, 255, 0.15), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow-lg);
}

.story-visual-header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
}

.story-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.story-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px var(--success-soft);
}

.story-panels {
  position: relative;
  min-height: 470px;
}

.story-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  opacity: 0;
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
}

.story-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-panel-number {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.story-panel > strong {
  margin-top: 26px;
  font-size: 1.35rem;
}

.story-panel > p {
  margin: 5px 0 0;
  color: var(--text-muted);
}

.story-panel-art {
  position: relative;
  width: min(340px, 75%);
  height: 240px;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-md);
}

.story-panel-art span {
  position: absolute;
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-subtle);
}

.story-panel-art span:nth-child(1) {
  inset: 18px auto 18px 18px;
  width: 28%;
}

.story-panel-art span:nth-child(2) {
  top: 18px;
  right: 18px;
  width: 60%;
  height: 46px;
}

.story-panel-art span:nth-child(3) {
  top: 77px;
  right: 18px;
  width: 60%;
  height: 76px;
}

.story-panel-art span:nth-child(4) {
  right: 18px;
  bottom: 18px;
  width: 60%;
  height: 50px;
}

.story-panel[data-kind="preview"] .story-panel-art span:nth-child(3) {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.story-panel[data-kind="voice"] .story-panel-art span:nth-child(2),
.story-panel[data-kind="voice"] .story-panel-art span:nth-child(4) {
  border-color: var(--success);
  box-shadow: 0 0 0 4px var(--success-soft);
}

.story-panel[data-kind="screen"] .story-panel-art span:nth-child(3) {
  height: 128px;
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand-soft), var(--surface-subtle));
}

.story-panel[data-kind="chat"] .story-panel-art span:nth-child(1) {
  left: auto;
  right: 18px;
  width: 34%;
}

.story-panel[data-kind="control"] .story-panel-art span {
  border-color: rgba(119, 112, 255, 0.55);
}

.story-progress {
  height: 3px;
  margin: 0 24px 24px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--surface-subtle);
}

.story-progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--blue));
  transition: width 240ms ease;
}

.feature-section {
  background: var(--page-deep);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%), var(--surface);
}

.feature-card.large {
  grid-column: span 2;
  min-height: 370px;
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin-top: 52px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.feature-card p {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin-bottom: 0;
}

.feature-symbol {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid rgba(119, 112, 255, 0.4);
  border-radius: 9px;
  background: var(--brand-soft);
  color: #b5b1ff;
  font: 750 0.78rem/1 var(--font);
}

.feature-card[data-feature="voice"] .feature-symbol {
  border-color: rgba(88, 201, 148, 0.42);
  background: var(--success-soft);
  color: var(--success);
}

.feature-card[data-feature="screen"] .feature-symbol {
  border-color: rgba(112, 167, 223, 0.45);
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-decoration {
  position: absolute;
  right: -34px;
  bottom: -30px;
  width: 190px;
  height: 150px;
  opacity: 0.45;
}

.feature-decoration span {
  position: absolute;
  inset: auto;
  display: block;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
}

.feature-decoration span:nth-child(1) {
  right: 0;
  bottom: 0;
  width: 150px;
  height: 112px;
}

.feature-decoration span:nth-child(2) {
  right: 26px;
  bottom: 28px;
  width: 130px;
  height: 95px;
}

.feature-decoration span:nth-child(3) {
  right: 52px;
  bottom: 55px;
  width: 110px;
  height: 78px;
  border-color: var(--brand);
}

.deployment-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(79, 70, 255, 0.08), transparent 40rem),
    var(--page);
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.deployment-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.deployment-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(79, 70, 255, 0.11), transparent 50%);
  content: "";
  pointer-events: none;
}

.deployment-card.private::before {
  background: radial-gradient(circle at 80% 0%, rgba(112, 167, 223, 0.1), transparent 50%);
}

.deployment-card-top {
  position: relative;
  display: flex;
  min-height: 180px;
  align-items: flex-start;
  justify-content: space-between;
}

.deployment-card h3 {
  position: relative;
  font-size: 2rem;
}

.deployment-card p,
.deployment-card strong {
  position: relative;
  display: block;
  max-width: 490px;
}

.deployment-card strong {
  margin-top: 28px;
  color: #aaa6ff;
  font-size: 0.8rem;
}

.stage-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.stage-chip > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
}

.deployment-orbit {
  position: relative;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(119, 112, 255, 0.35);
  border-radius: 50%;
}

.deployment-orbit::before,
.deployment-orbit::after {
  position: absolute;
  border: 1px solid rgba(119, 112, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.deployment-orbit::before {
  inset: 20px;
}

.deployment-orbit::after {
  inset: 42px;
  background: var(--brand-soft);
}

.deployment-orbit i {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.deployment-orbit i:nth-child(1) {
  top: 8px;
  left: 61px;
}

.deployment-orbit i:nth-child(2) {
  right: 10px;
  bottom: 28px;
  background: var(--blue);
}

.deployment-orbit i:nth-child(3) {
  bottom: 18px;
  left: 18px;
  background: var(--success);
}

.private-stack {
  position: relative;
  display: grid;
  width: 140px;
  gap: 9px;
}

.private-stack i {
  display: block;
  height: 35px;
  border: 1px solid #46505d;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(112, 167, 223, 0.12), var(--surface-raised));
}

.private-stack i::before {
  display: block;
  width: 7px;
  height: 7px;
  margin: 13px 0 0 14px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.trust-section {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 8vw, 112px);
}

.trust-layout .section-heading {
  margin-bottom: 30px;
}

.honesty-note,
.small-note {
  max-width: 670px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.honesty-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.honesty-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-secondary);
  font-weight: 800;
}

.trust-list,
.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.trust-list li,
.check-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.trust-list span,
.check-list span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-preview {
  padding: 28px 0;
}

.pricing-preview-card {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 70, 255, 0.14), transparent 24rem),
    var(--surface);
}

.pricing-preview-card > div {
  max-width: 720px;
}

.pricing-preview-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(44px, 8vw, 110px);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: transform 160ms ease;
}

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

.faq-list details > div {
  max-width: 690px;
  padding: 0 50px 25px 0;
}

.faq-list details p {
  margin: 0;
}

.final-cta {
  padding: 24px 0 clamp(90px, 12vw, 170px);
}

.final-cta-card {
  position: relative;
  display: grid;
  min-height: 460px;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 60px 24px;
  border: 1px solid rgba(119, 112, 255, 0.35);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 105%, rgba(79, 70, 255, 0.28), transparent 43%),
    var(--surface);
  text-align: center;
}

.final-cta-card .eyebrow {
  justify-content: center;
}

.final-cta-card h2 {
  max-width: 820px;
}

.final-cta-card > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
}

.cta-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-rings span {
  position: absolute;
  bottom: -280px;
  left: 50%;
  border: 1px solid rgba(119, 112, 255, 0.14);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cta-rings span:nth-child(1) {
  width: 540px;
  height: 540px;
}

.cta-rings span:nth-child(2) {
  width: 720px;
  height: 720px;
}

.cta-rings span:nth-child(3) {
  width: 930px;
  height: 930px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--page-deep);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(480px, 1.2fr);
  gap: 80px;
  padding: 76px 0 68px;
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-brand > p {
  max-width: 360px;
  margin: 20px 0;
  color: var(--text-muted);
}

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

.footer-columns > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns h2 {
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-columns a {
  min-height: 32px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-columns a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border-soft);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
}

/* Interior page foundations */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 13vw, 180px) 0 clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--border-soft);
  isolation: isolate;
}

.page-hero .narrow-shell {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero .hero-lede {
  margin-bottom: 0;
}

.page-ambient {
  top: -280px;
  right: -160px;
  width: 700px;
  height: 700px;
  background: rgba(79, 70, 255, 0.2);
}

.product-overview {
  padding: 55px 0 clamp(90px, 11vw, 150px);
  background: var(--page-deep);
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.product-pills li {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.product-overview .product-visual {
  width: 100%;
  transform: none;
}

.product-detail {
  padding: clamp(94px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--border-soft);
}

.product-detail:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.012);
}

.detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.detail-heading .eyebrow {
  grid-column: 1;
  margin-bottom: -42px;
  align-self: start;
}

.detail-heading h2 {
  grid-column: 1;
  margin: 0;
}

.detail-heading > p:last-child {
  grid-column: 2;
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.detail-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.detail-card h3 {
  margin-top: 50px;
}

.detail-card p {
  margin-bottom: 0;
}

.detail-index {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.concept-visual {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 70, 255, 0.08), transparent 55%),
    var(--surface);
}

.concept-visual span {
  position: absolute;
  display: block;
  border: 1px solid var(--border-strong);
  background: var(--surface-raised);
}

.concept-visual.communities span {
  top: 50%;
  width: 116px;
  height: 116px;
  border-radius: 22px;
  transform: translateY(-50%) rotate(6deg);
}

.concept-visual.communities span:nth-child(1) {
  left: 11%;
}

.concept-visual.communities span:nth-child(2) {
  left: 37%;
  border-color: var(--brand);
  background: var(--brand-soft);
}

.concept-visual.communities span:nth-child(3) {
  right: 18%;
}

.concept-visual.communities span:nth-child(4) {
  top: 46%;
  left: 20%;
  width: 60%;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--brand), var(--blue), transparent);
  transform: none;
}

.concept-visual.collaboration span:nth-child(1) {
  top: 35px;
  left: 35px;
  width: 26%;
  height: 260px;
  border-radius: 14px;
}

.concept-visual.collaboration span:nth-child(2) {
  top: 35px;
  left: 31%;
  width: 43%;
  height: 260px;
  border-color: var(--brand);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-soft), var(--surface-raised));
}

.concept-visual.collaboration span:nth-child(3) {
  top: 35px;
  right: 35px;
  width: 20%;
  height: 260px;
  border-radius: 14px;
}

.concept-visual.collaboration span:nth-child(4) {
  top: 70px;
  left: 38%;
  width: 28%;
  height: 120px;
  border-color: var(--blue);
  border-radius: 9px;
  background: var(--blue-soft);
}

.product-detail .product-visual.compact {
  width: 100%;
  max-height: 570px;
  transform: none;
}

.roles-section {
  background: var(--page-deep);
}

.roles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(50px, 9vw, 120px);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.role-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.role-card .role-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(119, 112, 255, 0.4);
  border-radius: 50%;
  background: var(--brand-soft);
  color: #aaa6ff;
  font-weight: 800;
}

.role-card p {
  margin: 0;
  font-size: 0.9rem;
}

.moderation-card,
.client-status-card,
.safety-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 60px;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.moderation-card > div:first-child {
  max-width: 660px;
}

.moderation-demo {
  display: grid;
  grid-template-columns: 1fr repeat(3, 42px);
  align-items: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.moderation-demo > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.moderation-demo > div i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--success);
}

.moderation-demo > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-muted);
}

.audio-section {
  background: rgba(255, 255, 255, 0.012);
}

.audio-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
}

.audio-panel {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.audio-panel-head {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 10px;
  border-bottom: 1px solid var(--border);
}

.audio-panel label {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.audio-panel label span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-subtle);
  color: var(--text-secondary);
}

.level-row {
  display: grid;
  height: 38px;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 5px;
  margin-bottom: 22px;
}

.level-row span {
  border-radius: 4px 4px 2px 2px;
  background: var(--success);
}

.level-row span:nth-child(1),
.level-row span:nth-child(8) {
  height: 28%;
}

.level-row span:nth-child(2),
.level-row span:nth-child(7) {
  height: 48%;
}

.level-row span:nth-child(3),
.level-row span:nth-child(6) {
  height: 72%;
}

.level-row span:nth-child(4),
.level-row span:nth-child(5) {
  height: 96%;
}

.audio-toggle {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.audio-toggle i {
  position: relative;
  width: 34px;
  height: 19px;
  border-radius: 999px;
  background: var(--brand);
}

.audio-toggle i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.client-status-card {
  grid-template-columns: 110px minmax(0, 1fr) auto;
}

.windows-mark {
  display: grid;
  width: 80px;
  height: 80px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  transform: perspective(300px) rotateY(-8deg);
}

.windows-mark span {
  background: linear-gradient(145deg, var(--blue), #3977bb);
}

.language-badge {
  display: grid;
  min-width: 86px;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 800;
}

.compact-cta {
  padding: 24px 0 clamp(96px, 11vw, 150px);
}

.compact-cta-card {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(119, 112, 255, 0.3);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--surface), rgba(79, 70, 255, 0.08));
}

.compact-cta-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.compact-cta-card p {
  max-width: 650px;
  margin: 0;
}

/* Solutions */
.audience-section {
  background: var(--page-deep);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-card,
.security-card,
.contact-topic {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.audience-number,
.contact-topic > span,
.security-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.audience-card h2,
.security-card h2,
.contact-topic h2 {
  font-size: 1.45rem;
}

.audience-card p,
.security-card p,
.contact-topic p {
  margin-bottom: 0;
}

.fit-section {
  border-bottom: 1px solid var(--border-soft);
}

.fit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 70px;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.fit-card .section-heading {
  margin: 0;
}

.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-raised);
  color: var(--text-secondary);
}

.fit-card li span {
  color: var(--success);
}

/* Pricing */
.pricing-page-hero,
.security-page-hero,
.download-page-hero,
.contact-page-hero,
.resource-page-hero {
  text-align: center;
}

.pricing-page-hero .hero-lede,
.security-page-hero .hero-lede,
.download-page-hero .hero-lede,
.contact-page-hero .hero-lede,
.resource-page-hero .hero-lede {
  margin-inline: auto;
}

.pricing-page-hero .eyebrow,
.security-page-hero .eyebrow,
.download-page-hero .eyebrow,
.contact-page-hero .eyebrow,
.resource-page-hero .eyebrow {
  justify-content: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 70, 255, 0.11), transparent 22rem),
    var(--surface);
}

.pricing-card:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(112, 167, 223, 0.1), transparent 22rem),
    var(--surface);
}

.pricing-card-head {
  min-height: 190px;
}

.pricing-card h2 {
  margin: 26px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pricing-card-head > p {
  color: var(--text-muted);
}

.pricing-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 32px;
}

.pricing-card dl > div {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.pricing-card dt {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-card dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  display: flex;
  width: var(--shell);
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
}

.pricing-note span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-weight: 800;
}

.pricing-factors {
  background: var(--page-deep);
}

.factors-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.factors-layout .section-heading {
  margin: 0;
}

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

.factors-layout li {
  display: grid;
  min-height: 70px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.factors-layout li span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
}

/* Security */
.security-status-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(88, 201, 148, 0.25);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.shield-visual {
  position: relative;
  width: 150px;
  height: 170px;
  margin: auto;
  border: 2px solid var(--success);
  border-radius: 70px 70px 90px 90px;
  opacity: 0.78;
}

.shield-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(88, 201, 148, 0.4);
  border-radius: 52px 52px 70px 70px;
  content: "";
}

.shield-visual span {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 40px;
  height: 22px;
  border-bottom: 3px solid var(--success);
  border-left: 3px solid var(--success);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.security-status-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.security-status-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.security-status-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-secondary);
}

.security-status-card li span {
  color: var(--success);
  font-weight: 800;
}

.security-detail {
  padding-top: 0;
  background: var(--page-deep);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reporting-section {
  padding-top: 0;
}

.reporting-card,
.contact-notice-card {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.reporting-card > div,
.contact-notice-card > div {
  max-width: 760px;
}

/* Download */
.download-status {
  background: var(--page-deep);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 18px;
}

.download-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  min-height: 360px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 0%, rgba(79, 70, 255, 0.15), transparent 24rem),
    var(--surface);
}

.download-app-icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(119, 112, 255, 0.4);
  border-radius: 24px;
  background: var(--brand-soft);
  box-shadow: var(--shadow-md);
}

.download-app-icon img {
  width: 68px;
  height: 68px;
}

.download-card h2 {
  margin: 20px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.download-card .button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 38px;
}

.status-table {
  display: grid;
  align-content: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.status-table > div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 90px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.status-table > div:last-child {
  border-bottom: 0;
}

.status-table dt {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-table dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(50px, 8vw, 110px);
}

.split-layout .section-heading {
  margin-bottom: 24px;
}

.safety-card {
  grid-template-columns: 120px minmax(0, 1fr);
}

.safety-lock {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(88, 201, 148, 0.35);
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-size: 2.4rem;
}

/* Contact */
.contact-notice {
  background: var(--page-deep);
}

.contact-notice-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
}

.notice-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-topic {
  min-height: 270px;
}

.privacy-note-section {
  padding-top: 0;
}

.privacy-note-card {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.privacy-note-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.privacy-note-card span {
  color: var(--success);
}

/* Blog and changelog */
.empty-content {
  background: var(--page-deep);
}

.empty-card {
  display: grid;
  min-height: 430px;
  align-content: center;
  justify-items: center;
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  text-align: center;
}

.empty-card > strong {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.empty-card > p {
  max-width: 630px;
  margin: 12px 0 0;
}

.empty-orbit {
  position: relative;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(119, 112, 255, 0.35);
  border-radius: 50%;
}

.empty-orbit::before,
.empty-orbit::after {
  position: absolute;
  border: 1px solid rgba(119, 112, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.empty-orbit::before {
  inset: 21px;
}

.empty-orbit::after {
  inset: 44px;
  background: var(--brand-soft);
}

.empty-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.empty-orbit i:nth-child(1) {
  top: 3px;
  left: 58px;
}

.empty-orbit i:nth-child(2) {
  right: 10px;
  bottom: 25px;
  background: var(--blue);
}

.empty-orbit i:nth-child(3) {
  bottom: 13px;
  left: 23px;
  background: var(--success);
}

.planned-topics,
.future-notes {
  padding-top: 0;
}

.planned-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  gap: 70px;
}

.planned-layout h2,
.future-notes h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.planned-layout li {
  display: grid;
  min-height: 65px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.planned-layout li span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
}

.timeline-visual {
  position: relative;
  display: flex;
  width: 260px;
  align-items: center;
  justify-content: space-between;
}

.timeline-visual::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--blue), var(--success));
  content: "";
}

.timeline-visual i {
  position: relative;
  width: 22px;
  height: 22px;
  border: 5px solid var(--surface);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--border);
}

.timeline-visual i:nth-child(2) {
  background: var(--blue);
}

.timeline-visual i:nth-child(3) {
  background: var(--success);
}

/* Legal and 404 */
.legal-hero {
  padding: clamp(100px, 13vw, 170px) 0 62px;
  border-bottom: 1px solid var(--border-soft);
}

.legal-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.legal-intro {
  max-width: 760px;
  margin: 0;
  font-size: 1.12rem;
}

.legal-content {
  max-width: 780px;
  padding: 66px 0 130px;
}

.legal-content section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content p {
  max-width: 72ch;
}

.not-found {
  display: grid;
  width: var(--narrow);
  min-height: 72vh;
  align-content: center;
  justify-items: center;
  margin: 0 auto;
  padding: 90px 0 120px;
  text-align: center;
}

.not-found h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

.not-found > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 30px;
}

.not-found-orbit {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 38px;
  border: 1px solid rgba(119, 112, 255, 0.28);
  border-radius: 50%;
}

.not-found-orbit span {
  position: absolute;
  border: 1px solid rgba(119, 112, 255, 0.18);
  border-radius: 50%;
}

.not-found-orbit span:nth-child(1) {
  inset: 20px;
}

.not-found-orbit span:nth-child(2) {
  inset: 44px;
}

.not-found-orbit span:nth-child(3) {
  inset: 64px;
  background: var(--brand-soft);
}

.not-found-orbit i {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  color: #aaa6ff;
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
}

.account-page {
  min-height: calc(100vh - 78px);
  padding: 84px 0 110px;
  border-bottom: 1px solid var(--border-soft);
}

.account-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.account-intro {
  position: sticky;
  top: 120px;
  padding-top: 26px;
}

.account-intro h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.account-intro > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.05rem;
}

.account-privacy {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 2px solid var(--blue);
  color: var(--text-muted);
  font-size: 0.88rem !important;
}

.account-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.account-panel > h2 {
  margin-bottom: 28px;
  font-size: 1.7rem;
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-form.compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.account-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 650;
}

.account-field input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 0.95rem;
}

.account-field input::placeholder {
  color: var(--text-muted);
}

.account-field input:disabled {
  opacity: 0.65;
}

.account-submit {
  width: 100%;
  margin-top: 4px;
}

.field-note,
.account-followup,
.account-secondary-action > p,
.invite-preview > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.account-followup {
  margin-top: 22px;
}

.account-status {
  margin: 0 0 22px;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface-raised);
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
}

.account-status::before {
  content: "i";
  position: absolute;
  left: 14px;
  top: 11px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.account-status[data-kind="success"] {
  border-color: rgba(88, 201, 148, 0.45);
  background: var(--success-soft);
  color: var(--success);
}

.account-status[data-kind="warning"] {
  border-color: rgba(239, 182, 87, 0.5);
  background: rgba(239, 182, 87, 0.1);
  color: var(--warning);
}

.account-status[data-kind="error"] {
  border-color: rgba(255, 133, 133, 0.5);
  background: rgba(255, 133, 133, 0.1);
  color: var(--error);
}

.account-secondary-action,
.invite-preview,
.invite-intent {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.invite-intent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid rgba(112, 167, 223, 0.4);
  border-radius: 7px;
  background: var(--blue-soft);
}

.invite-intent[hidden],
.invite-preview[hidden] {
  display: none;
}

.invite-intent span {
  grid-column: 1;
  color: var(--text-secondary);
}

.text-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.invite-preview h2 {
  margin-bottom: 22px;
  font-size: 1.65rem;
}

.invite-preview dl {
  display: grid;
  gap: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.invite-preview dl > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  padding: 12px 14px;
  background: var(--surface-raised);
}

.invite-preview dt {
  color: var(--text-muted);
}

.invite-preview dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.invite-actions,
.account-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.invite-actions {
  margin-bottom: 18px;
}

.account-links {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.account-links a {
  color: var(--blue);
  font-size: 0.86rem;
}

@keyframes voice-pulse {
  from {
    transform: scaleY(0.55);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1120px) {
  .header-navigation {
    gap: 8px;
  }

  .primary-nav {
    gap: 0;
  }

  .nav-link,
  .resources-toggle {
    padding-inline: 8px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .home-hero .hero-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 38px;
  }

  .product-visual {
    width: 100%;
  }

  .visual-app {
    grid-template-columns: 155px minmax(320px, 1fr) 195px;
  }

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

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

@media (max-width: 960px) {
  .account-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .account-intro {
    position: static;
    padding-top: 0;
  }

  :root {
    --shell: min(100% - 36px, 780px);
    --narrow: min(100% - 36px, 720px);
  }

  .js .mobile-nav-toggle {
    display: block;
  }

  .header-navigation {
    display: flex;
  }

  .js .header-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    max-height: calc(100vh - 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    overflow: auto;
    border-bottom: 1px solid var(--border);
    background: rgba(15, 17, 21, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .js .header-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .no-js .header-shell {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .no-js .header-navigation {
    width: 100%;
    flex-wrap: wrap;
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .resources-toggle {
    width: 100%;
    justify-content: space-between;
    padding-inline: 14px;
    font-size: 0.95rem;
  }

  .resources-menu {
    position: static;
    width: auto;
    margin: 2px 0 8px 14px;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js .resources-menu {
    display: none;
  }

  .js .resources-nav.open .resources-menu {
    display: grid;
  }

  .header-actions {
    justify-content: space-between;
    padding: 0 5px;
  }

  .header-cta {
    min-height: 46px;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .home-hero .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-visual-wrap {
    width: 100%;
  }

  .product-visual {
    width: 100%;
    transform: none;
  }

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

  .proof-strip li:nth-child(3)::before {
    display: none;
  }

  .proof-strip li:nth-child(n + 3) {
    border-top: 1px solid var(--border-soft);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-step {
    min-height: 0;
    padding: 26px 0 36px 36px;
  }

  .story-sticky {
    display: none;
  }

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

  .trust-layout,
  .faq-layout,
  .roles-layout,
  .audio-layout,
  .fit-card,
  .factors-layout,
  .download-layout,
  .split-layout,
  .planned-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .detail-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-heading .eyebrow,
  .detail-heading h2,
  .detail-heading > p:last-child {
    grid-column: 1;
    margin: 0;
  }

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

  .moderation-card,
  .client-status-card,
  .safety-card {
    grid-template-columns: 1fr;
  }

  .client-status-card {
    justify-items: start;
  }

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

  .security-status-card {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 34px;
  }

  .contact-notice-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .contact-notice-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .account-page {
    padding: 54px 0 80px;
  }

  .account-panel {
    padding: 24px;
  }

  .account-form.compact {
    grid-template-columns: 1fr;
  }

  .invite-intent {
    grid-template-columns: 1fr;
  }

  .text-action {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    padding: 8px 0 0;
  }

  .invite-preview dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  :root {
    --shell: calc(100% - 28px);
    --narrow: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .header-shell {
    min-height: 64px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .visual-app {
    grid-template-columns: minmax(0, 1fr);
    min-height: 430px;
  }

  .visual-sidebar,
  .visual-chat {
    display: none;
  }

  .visual-stage {
    min-height: 430px;
  }

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

  .visual-person:nth-child(3) {
    display: none;
  }

  .screen-canvas {
    min-height: 150px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip li + li::before {
    display: none;
  }

  .proof-strip li:nth-child(n + 2) {
    border-top: 1px solid var(--border-soft);
  }

  .feature-grid,
  .audience-grid,
  .security-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.large,
  .feature-card.wide {
    grid-column: auto;
  }

  .feature-card,
  .feature-card.large {
    min-height: 280px;
  }

  .deployment-card {
    min-height: 380px;
    padding: 26px;
  }

  .deployment-card-top {
    min-height: 160px;
  }

  .pricing-preview-card,
  .compact-cta-card,
  .reporting-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-layout .section-heading {
    margin-bottom: 0;
  }

  .final-cta-card {
    min-height: 420px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .product-pills {
    flex-wrap: nowrap;
    padding-bottom: 6px;
    overflow-x: auto;
  }

  .detail-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .concept-visual {
    height: 260px;
  }

  .concept-visual.communities span {
    width: 80px;
    height: 80px;
  }

  .moderation-demo {
    grid-template-columns: 1fr repeat(3, 36px);
  }

  .moderation-demo > span {
    width: 36px;
    height: 36px;
  }

  .audio-layout {
    gap: 54px;
  }

  .client-status-card {
    grid-template-columns: 80px 1fr;
  }

  .language-badge {
    grid-column: 1 / -1;
  }

  .windows-mark {
    width: 64px;
    height: 64px;
  }

  .pricing-card {
    min-height: 610px;
  }

  .security-status-card {
    grid-template-columns: 1fr;
  }

  .shield-visual {
    width: 120px;
    height: 138px;
  }

  .download-card {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .download-app-icon {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .download-app-icon img {
    width: 52px;
    height: 52px;
  }

  .contact-notice-card {
    grid-template-columns: 1fr;
  }

  .contact-notice-card .button {
    grid-column: 1;
  }

  .notice-symbol {
    width: 44px;
    height: 44px;
  }

  .empty-card {
    min-height: 380px;
    padding: 34px 24px;
  }

  .legal-content {
    padding-bottom: 90px;
  }
}

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

  .site-brand .brand-name {
    font-size: 1rem;
  }

  .product-visual {
    border-radius: 12px;
  }

  .visual-window-bar {
    height: 38px;
  }

  .visual-stage {
    grid-template-rows: 58px minmax(0, 1fr) 48px;
  }

  .visual-room-header {
    padding-inline: 9px;
  }

  .visual-join {
    display: none;
  }

  .visual-stage-body {
    padding: 9px;
  }

  .visual-person {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .visual-person > :last-child {
    display: none;
  }

  .screen-columns {
    gap: 4px;
  }

  .feature-card,
  .detail-card,
  .role-card,
  .audience-card,
  .security-card,
  .contact-topic {
    padding: 22px;
  }

  .deployment-card-top {
    display: grid;
    gap: 18px;
  }

  .deployment-orbit {
    width: 105px;
    height: 105px;
  }

  .deployment-orbit i:nth-child(1) {
    left: 49px;
  }

  .private-stack {
    width: 115px;
  }

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

  .moderation-demo {
    grid-template-columns: 1fr repeat(2, 36px);
  }

  .moderation-demo > span:last-child {
    display: none;
  }

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

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

  .timeline-visual {
    width: 210px;
  }
}

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

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

  .story-sticky {
    display: none;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-step {
    min-height: auto;
    opacity: 1;
  }
}

@media (forced-colors: active) {
  .button,
  .stage-chip,
  .feature-card,
  .deployment-card,
  .product-visual {
    border: 1px solid CanvasText;
  }
}
