@font-face {
  font-family: Funnel;
  src: url("/assets/funnel-sans.ttf") format("truetype");
  font-weight: 300 800;
  font-display: swap;
}
:root {
  --ink: #191a17;
  --muted: #70716a;
  --lime: #ddff5b;
  --paper: #fafbf8;
  --line: #e1e3da;
  --dark: #090909;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  font-family: Funnel, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  border: 0;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #71942c;
  outline-offset: 5px;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
}
button svg {
  pointer-events: none;
}
[hidden] {
  display: none !important;
}
.wrap {
  max-width: 1280px;
  width: calc(100% - 112px);
  margin-inline: auto;
}
.section-pad {
  padding-block: 112px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 500;
  margin-bottom: 24px;
  color: #8b8d80;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ui-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: var(--lime);
  z-index: 2;
}
.skip:focus {
  top: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--lime);
  color: #16190c;
  border: 1px solid transparent;
  border-radius: 7px;
  min-height: 54px;
  padding: 14px 23px;
  font-size: 14px;
  font-weight: 550;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #edffac;
  transform: translateY(-2px);
}
.button.small {
  min-height: 38px;
  font-size: 12px;
  padding: 9px 17px;
  gap: 22px;
}
.button .ui-icon {
  width: 21px;
  height: 21px;
}
.text-link {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #c6c8be;
}
.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  border-bottom: 1px solid #b4b7a7;
  padding-bottom: 5px;
}
.underlined-link:hover {
  color: #697c28;
}
h2 {
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.site-header {
  background: var(--dark);
  color: #e9eae6;
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand > span {
  font-size: 32px;
  letter-spacing: -0.05em;
  font-weight: 500;
  line-height: 1;
}
.brand-by {
  font-size: 10px;
  color: #67695e;
  margin-left: 5px;
}
.division-link {
  display: inline-flex;
  align-items: center;
  padding-block: 12px;
}
.division-link img {
  height: auto;
  object-fit: contain;
  width: 94px;
}
.division-link:hover {
  opacity: 0.7;
}
.main-nav {
  margin-left: auto;
  display: flex;
  gap: 27px;
  font-size: 12px;
  color: #a4a59a;
}
.main-nav a:hover {
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.language-switch a {
  color: #8c8e80;
  padding-block: 8px;
}
.language-switch a[aria-current] {
  color: var(--lime);
}
.language-switch > span {
  color: #4a4b43;
}
.hero {
  background: var(--dark);
  color: #fafcf3;
  overflow: hidden;
}
.hero-inner {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  align-items: center;
  gap: 24px;
  padding-block: 78px 102px;
}
.hero h1 {
  font-size: clamp(48px, 5.25vw, 76px);
  font-weight: 470;
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero h1 > span {
  display: block;
  font-size: 0.61em;
  color: #cacdbd;
  letter-spacing: -0.045em;
  margin-top: 18px;
  line-height: 1.15;
}
.hero-description {
  max-width: 470px;
  font-size: 17px;
  line-height: 1.7;
  color: #969b89;
}
.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 34px;
}
.download-note {
  font-size: 10px;
  color: #848877;
  margin-top: 21px;
}
.download-note > span {
  display: block;
  color: #606554;
  margin-top: 3px;
}
.status-dot,
.availability i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px #dfff5310;
}
.hero-art {
  position: relative;
  align-self: center;
  min-width: 0;
}
@property --beam-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.conversation-art {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 560;
  isolation: isolate;
}
.conversation-art canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.orb-status {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #c5df8e1a;
  border-radius: 24px;
  background: #151710cc;
  color: #bec6ac;
  font-size: clamp(9px, 0.85vw, 12px);
  white-space: nowrap;
}
.orb-status .status-dot {
  width: 4px;
  height: 4px;
}
.status-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 15px;
  margin-left: 5px;
}
.status-wave i {
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: #bfdc83;
  animation: voice-bar 1.1s ease-in-out infinite alternate;
}
.status-wave i:nth-child(3n) {
  animation-delay: -0.7s;
  height: 13px;
}
.status-wave i:nth-child(3n + 1) {
  animation-delay: -0.3s;
  height: 9px;
}
.hero-art[data-scene="2"] .status-wave {
  opacity: 0.4;
}
.orb-brand {
  position: absolute;
  top: 36.6%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px;
  border: 1px solid #e0edc125;
  border-radius: 22px;
  background: #10130bcc;
  box-shadow:
    0 0 38px #d2fa7212,
    inset 0 0 18px #dfff5810;
}
.orb-brand img {
  width: clamp(28px, 3.5vw, 46px);
  height: auto;
}
.orb-caption {
  position: absolute;
  top: 62%;
  width: 100%;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.07em;
  color: #818b71;
}
.conversation-card {
  position: absolute;
  top: 70%;
  left: 8%;
  width: 84%;
  min-height: 124px;
  display: grid;
  border: 1px solid transparent;
  border-radius: 15px;
  background:
    linear-gradient(140deg, #181d12, #10120d) padding-box,
    conic-gradient(
        from var(--beam-angle),
        #303925,
        #303925 65%,
        #92aa59 82%,
        #ddff5b 85%,
        #303925 92%
      )
      border-box;
  animation: card-beam 7s linear infinite;
  box-shadow: 0 20px 50px #0005;
  overflow: hidden;
}
.hero-transcript,
.hero-summary {
  grid-area: 1 / 1;
  padding: 17px 19px;
  transition:
    opacity 0.65s,
    transform 0.65s;
  min-width: 0;
}
.hero-summary {
  opacity: 0;
  transform: translateY(12px);
}
.hero-art[data-scene="2"] .hero-summary {
  opacity: 1;
  transform: translateY(0);
}
.hero-art[data-scene="2"] .hero-transcript {
  opacity: 0;
  transform: translateY(-12px);
}
.conversation-card-heading {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #c0cdac;
  font-size: 10px;
}
.conversation-card-heading .ui-icon {
  width: 13px;
  height: 13px;
  color: #d4ed9e;
}
.sample-label {
  margin-left: auto;
  color: #7d896c;
  font-size: 7px;
  letter-spacing: 0.1em;
}
.spoken-line {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  align-items: center;
}
.spoken-avatar {
  display: grid;
  place-items: center;
  height: 27px;
  width: 27px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #af9ab821;
  border: 1px solid #c6acd432;
  color: #d8c7e1;
  font-size: 10px;
}
.spoken-person {
  font-size: 9px;
  color: #a2ad94;
}
.spoken-person time {
  margin-left: 8px;
  font-size: 8px;
  color: #626d55;
}
.spoken-line p {
  margin-top: 4px;
  color: #e0e8d5;
  font-size: clamp(11px, 1.05vw, 14px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.spoken-line p span {
  opacity: 0.22;
  transition: opacity 0.35s;
}
.spoken-line p span.revealed {
  opacity: 1;
}
.summary-ready {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #afcc7d;
  font-size: 8px;
}
.summary-ready .ui-icon {
  width: 10px;
  height: 10px;
}
.hero-summary > p {
  font-size: clamp(12px, 1.1vw, 15px);
  color: #e0e8d5;
  margin-top: 14px;
}
.hero-action-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #9eae87;
  margin-top: 13px;
  padding-top: 10px;
  border-top: 1px solid #303a23;
}
.hero-action-item .ui-icon {
  width: 12px;
  height: 12px;
  color: #ceeb9c;
}
.hero-action-item > span:last-child {
  margin-left: auto;
  font-size: 8px;
  color: #cee89f;
}
.hero-animation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
.hero-stages {
  display: flex;
  gap: 12px;
}
.hero-stages button {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  color: #879572;
  font-size: 10px;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.hero-stages i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.hero-stages button[aria-pressed="true"] {
  color: #d7eea7;
}
.motion-control {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  color: #939d82;
  font-size: 9px;
  padding: 8px 0;
  white-space: nowrap;
}
.motion-control:hover {
  color: #e0e8d5;
}
.motion-paused .conversation-art *,
.motion-idle .conversation-art * {
  animation-play-state: paused !important;
}
@keyframes card-beam {
  to {
    --beam-angle: 360deg;
  }
}
@keyframes voice-bar {
  to {
    transform: scaleY(0.3);
    opacity: 0.45;
  }
}
.manifesto {
  background: #121410;
  color: #9b9f8e;
  text-align: center;
  padding: 64px 0;
}
.manifesto p {
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.6;
}
.manifesto span {
  color: #e5e8dc;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 52px;
}
.section-heading > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 392px;
}
.product-section {
  background: #fafbf8;
}
.product-demo {
  border: 1px solid #d9ddd2;
  border-radius: 15px;
  background: #f3f4ee;
  box-shadow: 0 28px 85px #2a331413;
  overflow: hidden;
}
.app-shell {
  height: 584px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  font-size: 12px;
  overflow: hidden;
  background: #f3f4ef;
}
.app-sidebar {
  width: 232px;
  flex-shrink: 0;
  position: relative;
  padding: 0 10px;
  color: #414638;
}
.app-window-header {
  height: 35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px 4px;
}
.window-title {
  font-size: 10px;
  color: #8d9583;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.app-workspace {
  display: flex;
  position: relative;
  flex: 1;
  min-height: 0;
}
.traffic-lights {
  display: flex;
  gap: 7px;
}
.traffic-lights i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6057;
}
.traffic-lights i:nth-child(2) {
  background: #ffbc2e;
}
.traffic-lights i:nth-child(3) {
  background: #28c840;
}
.sidebar-toggle {
  display: flex;
  align-items: center;
  color: #94998c;
}
.app-sidebar-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px 0 17px;
}
.app-sidebar-toolbar button,
.sidebar-dock button {
  width: 29px;
  height: 29px;
  background: transparent;
  display: grid;
  place-items: center;
  color: #7d8574;
}
.app-sidebar-toolbar .ui-icon {
  width: 16px;
  height: 16px;
}
.app-sidebar-toolbar > .notes-filter {
  font-size: 11px;
  margin-left: auto;
  padding-right: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.app-shell .ui-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.app-sidebar-toolbar > .notes-filter .ui-icon {
  width: 12px;
  height: 12px;
}
.app-sidebar-toolbar button,
.sidebar-dock button {
  flex-shrink: 0;
  border-radius: 5px;
}
.app-sidebar-toolbar button:hover,
.sidebar-dock button:hover {
  background: #e5e9df;
}
.app-tools {
  flex-shrink: 0;
}
.search-input button,
.chat-header button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 0;
}
.search-results button > span {
  min-width: 0;
}
.search-results button > .ui-icon:last-child {
  width: 13px;
}
.setting-row > div > span {
  min-width: 0;
}
.setting-row > div > .ui-icon {
  width: 12px;
  height: 12px;
}
.timeline-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
  font-size: 10px;
  color: #94998c;
}
.timeline-date > span {
  font-size: 9px;
}
.timeline-date.past {
  margin-top: 22px;
}
.meeting-item {
  display: flex;
  gap: 9px;
  align-items: start;
  text-align: left;
  padding: 11px 6px;
  border-radius: 7px;
  width: 100%;
  background: transparent;
  margin-bottom: 4px;
}
.meeting-item.selected {
  background: #e5e9df;
}
.meeting-item:hover {
  background: #e1e6d8;
}
.timeline-time {
  font-size: 9px;
  min-width: 31px;
  color: #989e90;
  padding-top: 2px;
}
.meeting-item b {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #4b5340;
  letter-spacing: -0.02em;
}
.meeting-item small {
  display: block;
  color: #939a89;
  font-size: 9px;
  margin-top: 4px;
}
.sidebar-dock {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}
.sidebar-dock button {
  margin-left: auto;
}
.app-main {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #e2e5dc;
  border-radius: 10px;
  overflow: hidden;
}
.app-toolbar {
  height: 47px;
  padding: 7px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f2f3ef;
}
.app-tabs {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f1f2ed;
  padding: 3px;
  border-radius: 20px;
}
.app-tabs button {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 5px 10px;
  background: transparent;
  color: #939987;
  border-radius: 18px;
  font-size: 10px;
  min-height: 28px;
}
.app-tabs button[aria-selected="true"] {
  background: #fff;
  color: #303b22;
  box-shadow: 0 1px 3px #32361c16;
}
.app-tabs .ui-icon {
  width: 14px;
  height: 14px;
}
.app-tools {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #999e91;
}
.app-tools .ui-icon {
  width: 15px;
  height: 15px;
}
.meeting-document {
  padding: 30px 46px 90px;
  max-width: 810px;
  margin: auto;
  height: calc(100% - 47px);
  overflow: auto;
  scrollbar-width: thin;
}
.meeting-metadata {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 9px;
  color: #8b9380;
  margin-bottom: 10px;
}
.meeting-metadata .ui-icon {
  width: 12px;
  height: 12px;
}
.meeting-metadata > span {
  margin-left: auto;
}
.meeting-document h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: #292f24;
  line-height: 1.25;
}
.participants {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 14px;
  font-size: 9px;
  color: #9b9e91;
}
.avatar {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 500;
  border: 2px solid white;
  margin-left: -3px;
}
.avatar-0 {
  background: #f1e5ec;
  color: #916b83;
}
.avatar-1 {
  background: #eceafa;
  color: #8174aa;
}
.avatar-2 {
  background: #e8edda;
  color: #7f8d52;
}
.participants > span:last-child {
  margin-left: 9px;
}
.app-view {
  padding-top: 20px;
  font-size: 12px;
  color: #5e6556;
  line-height: 1.75;
  animation: panel-enter 0.32s ease-out;
}
.app-view h4 {
  font-size: 13px;
  color: #353e2c;
  font-weight: 600;
  margin: 17px 0 8px;
}
.app-view h4:first-child {
  margin-top: 0;
}
.app-view ul {
  margin: 0;
  padding-left: 20px;
}
.app-view li {
  padding-left: 2px;
  margin: 3px 0;
}
.todo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin: 10px 0;
}
.todo .ui-icon,
.empty-check {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #77874e;
}
.empty-check {
  border: 1px solid #c6cdbb;
  border-radius: 3px;
}
.todo small {
  margin-left: auto;
  white-space: nowrap;
  color: #9caa84;
  font-size: 9px;
}
.transcript-line {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.transcript-line:first-child {
  margin-top: 0;
}
.transcript-line .avatar {
  width: 26px;
  height: 26px;
}
.speaker-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  color: #6f725f;
}
.speaker-name time {
  font-size: 9px;
  font-weight: 400;
  color: #a9ae9f;
}
.transcript-line p {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 3px;
}
.note-prompt {
  color: #a4aa99;
  font-size: 10px;
}
.editor-caret {
  height: 17px;
  border-left: 1px solid #485631;
  margin-top: 18px;
  animation: caret 1s infinite;
}
.audio-player {
  position: absolute;
  bottom: 16px;
  left: 30px;
  right: 164px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid #e8ebe1;
  background: #fffffff5;
  border-radius: 24px;
  color: #98a087;
  font-size: 9px;
}
.audio-player > span:first-child {
  color: #485938;
  font-size: 11px;
}
.audio-wave {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 18px;
  flex: 1;
  overflow: hidden;
}
.audio-wave i {
  display: block;
  min-width: 2px;
  height: 7px;
  background: #dae1cf;
  border-radius: 2px;
}
.audio-wave i:nth-child(-n + 8) {
  background: #96a877;
}
.audio-wave .wave-1 {
  height: 15px;
}
.audio-wave .wave-2 {
  height: 10px;
}
.audio-wave .wave-3 {
  height: 18px;
}
.audio-wave .wave-4 {
  height: 5px;
}
.audio-wave .wave-5 {
  height: 12px;
}
.chat-fab {
  position: absolute;
  bottom: 17px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border-radius: 24px;
  background: #f1f5e9;
  color: #586849;
  font-size: 10px;
  border: 1px solid #d9e1cd;
}
.chat-fab .ui-icon {
  width: 16px;
  height: 16px;
}
.demo-chat {
  width: 290px;
  flex-shrink: 0;
  border: 1px solid #e2e5da;
  border-radius: 10px;
  margin-left: 5px;
  background: #fff;
  position: relative;
  padding: 0 17px;
  animation: panel-enter 0.35s ease;
}
.chat-header {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #666f5c;
  font-size: 11px;
  border-bottom: 1px solid #eff1e9;
}
.chat-header .ui-icon {
  width: 15px;
  height: 15px;
}
.chat-header button {
  margin-left: auto;
  background: none;
  font-size: 19px;
  color: #929b85;
}
.chat-context {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 9px;
  color: #83906f;
  background: #f6f8f2;
  padding: 8px;
  border-radius: 5px;
  margin-top: 18px;
}
.chat-context .ui-icon {
  width: 13px;
  height: 13px;
}
.chat-question {
  font-size: 11px;
  background: #f1f3ed;
  border-radius: 13px 13px 3px 13px;
  padding: 11px 13px;
  margin: 23px 0 25px 26px;
  color: #57644b;
}
.chat-answer p {
  font-size: 11px;
  color: #737c65;
  line-height: 1.8;
  margin: 13px 0;
}
.chat-answer > button {
  background: #f5f7ef;
  border: 1px solid #e1e7d6;
  font-size: 9px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  padding: 7px;
  color: #8c9877;
}
.chat-answer > button > span {
  color: #647b45;
}
.chat-input {
  position: absolute;
  bottom: 19px;
  left: 15px;
  right: 15px;
  border: 1px solid #dde2d4;
  border-radius: 12px;
  padding: 13px 11px;
  font-size: 9px;
  color: #a0a991;
  display: flex;
  justify-content: space-between;
}
.chat-input > span {
  background: #dce6cc;
  color: #83956a;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
}
.product-demo[data-step="chat"] .meeting-document {
  padding-inline: 25px;
}
.product-demo[data-step="chat"] .app-main .audio-player {
  right: 24px;
}
.product-demo[data-step="chat"] .chat-fab {
  display: none;
}
.demo-settings {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e6d8;
  border-radius: 10px;
  display: flex;
  animation: panel-enter 0.3s ease-out;
}
.settings-menu {
  background: #f5f6f0;
  width: 232px;
  flex-shrink: 0;
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #9ba28e;
  font-size: 11px;
}
.settings-menu > b {
  color: #4f5a43;
  font-size: 14px;
  margin-bottom: 10px;
}
.settings-menu > span {
  padding: 8px 10px;
}
.settings-menu > .selected {
  background: #e7eddf;
  border-radius: 6px;
  color: #5a6d46;
}
.settings-menu button {
  background: transparent;
  color: #929e81;
  font-size: 10px;
  margin-top: auto;
  text-align: left;
}
.settings-content {
  padding: 28px 42px;
  max-width: 680px;
  width: 100%;
  min-width: 0;
  overflow-y: auto;
}
.settings-breadcrumb {
  font-size: 9px;
  color: #a2aa96;
  margin-bottom: 18px;
}
.settings-content h3 {
  font-size: 24px;
  letter-spacing: -0.045em;
  color: #323f26;
}
.settings-content > p:not(.settings-breadcrumb) {
  font-size: 11px;
  color: #939e86;
  margin-top: 8px;
}
.setting-row {
  margin-top: 22px;
}
.setting-row label {
  display: block;
  font-size: 11px;
  color: #62704f;
  margin-bottom: 7px;
}
.setting-row > div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid #e0e6d7;
  border-radius: 7px;
  max-width: 440px;
}
.setting-row b {
  font-size: 11px;
  font-weight: 500;
  color: #536443;
}
.setting-row small {
  display: block;
  font-size: 9px;
  color: #9ba88b;
  margin-top: 2px;
}
.setting-row > div > .ui-icon {
  margin-left: auto;
  color: #a4ae96;
}
.setting-row .provider-logo {
  width: 27px;
  height: 27px;
}
.settings-content .settings-note {
  font-size: 9px !important;
  margin-top: 22px !important;
}
.demo-search {
  position: absolute;
  inset: 0;
  background: #28311b28;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 92px 25px;
}
.search-dialog {
  width: 510px;
  max-width: 100%;
  background: white;
  border-radius: 13px;
  box-shadow: 0 20px 65px #23321230;
  border: 1px solid #d4dcc8;
  overflow: hidden;
}
.search-input {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e8ede1;
  color: #5d6d48;
  font-size: 14px;
}
.search-input button {
  margin-left: auto;
  background: transparent;
  color: #a5ae95;
  font-size: 22px;
}
.search-results {
  padding: 18px 12px;
}
.search-results > small {
  font-size: 8px;
  letter-spacing: 0.06em;
  color: #a5ae99;
  margin: 0 12px 10px;
  display: block;
}
.search-results button {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  background: transparent;
  border-radius: 8px;
  padding: 12px;
  color: #9da88c;
}
.search-results button:first-of-type {
  background: #f0f4e9;
}
.search-results b {
  font-size: 11px;
  color: #65744f;
  font-weight: 500;
  display: block;
}
.search-results small {
  font-size: 9px;
  color: #a3ad93;
}
.search-results button > .ui-icon:last-child {
  margin-left: auto;
}
.tour-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 23px;
}
.tour-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.tour-tabs button {
  border-radius: 25px;
  border: 1px solid transparent;
  background: transparent;
  color: #8b907f;
  font-size: 12px;
  padding: 9px 15px;
  white-space: nowrap;
}
.tour-tabs button[aria-selected="true"] {
  border-color: #cbd5b6;
  background: #eff4e4;
  color: #647a3b;
}
.tour-play {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #828e70;
  white-space: nowrap;
  font-size: 10px;
}
.tour-caption {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 20px;
  font-size: 12px;
  color: #848d76;
  min-height: 40px;
}
.tour-caption > span {
  font-size: 9px;
  color: #aab19f;
  white-space: nowrap;
  padding-top: 3px;
}
.privacy-section {
  background: #f0f2eb;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
}
.section-description {
  font-size: 16px;
  color: #737d66;
  line-height: 1.8;
  margin: 27px 0 23px;
  max-width: 450px;
}
.privacy-small {
  font-size: 11px;
  color: #9ba38e;
  max-width: 390px;
  line-height: 1.8;
  margin-top: 26px;
}
.architecture {
  background: #fafbf7;
  border: 1px solid #d9dfce;
  border-radius: 13px;
  padding: 22px 25px;
  box-shadow: 0 16px 40px #56633707;
}
.architecture-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e1e7d7;
  padding-bottom: 19px;
}
.architecture-top > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #9da68d;
}
.architecture-top .ui-icon {
  width: 13px;
  height: 13px;
}
.mode-switch {
  background: #e9eddf;
  display: flex;
  padding: 3px;
  border-radius: 20px;
  gap: 2px;
}
.mode-switch button {
  font-size: 10px;
  padding: 7px 13px;
  color: #8e9a7b;
  border-radius: 17px;
  background: transparent;
}
.mode-switch button[aria-pressed="true"] {
  background: #fff;
  color: #566c38;
  box-shadow: 0 1px 4px #53663112;
}
.architecture-mode {
  animation: panel-enter 0.4s ease-out;
}
.architecture-origin {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 26px 0 20px;
}
.katip-chip {
  padding: 9px;
  background: #edf1e3;
  border: 1px solid #d6dfc6;
  border-radius: 13px;
}
.katip-chip img {
  width: 33px;
  height: 33px;
}
.architecture-origin b {
  font-size: 13px;
  color: #57683f;
  font-weight: 500;
}
.architecture-origin > div > span {
  display: block;
  font-size: 9px;
  color: #a1ad8e;
  margin-top: 4px;
}
.on-mac {
  margin-left: auto;
  font-size: 9px;
  color: #819568;
  display: flex;
  gap: 5px;
  align-items: center;
  white-space: nowrap;
}
.on-mac .ui-icon {
  width: 12px;
  height: 12px;
}
.architecture-routes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 28px;
}
.route-line {
  position: absolute;
  left: 23px;
  top: -20px;
  bottom: 39px;
  border-left: 1px solid #d0dcb9;
}
.architecture-route {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 22px;
  position: relative;
}
.architecture-route:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 22px;
  border-top: 1px solid #d0dcb9;
}
.route-label {
  font-size: 10px;
  color: #82936a;
  width: 128px;
  line-height: 1.5;
}
.route-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dce3d0;
  background: #fff;
  padding: 11px 13px;
  border-radius: 8px;
  flex: 1;
  min-width: 0;
}
.provider-logo {
  object-fit: contain;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.route-provider b {
  font-size: 12px;
  font-weight: 500;
  color: #55693b;
}
.route-provider small {
  display: block;
  font-size: 9px;
  color: #a4b18e;
  margin-top: 1px;
}
.route-provider > span {
  color: #93a971;
  margin-left: auto;
  font-size: 16px;
}
.route-provider .ui-icon {
  width: 13px;
  height: 13px;
}
.architecture-result {
  display: flex;
  gap: 10px;
  align-items: start;
  border: 1px solid #dbe6c7;
  background: #eff5e5;
  border-radius: 8px;
  padding: 13px;
  margin-top: 23px;
  font-size: 11px;
  color: #7d905f;
  line-height: 1.7;
}
.architecture-result .ui-icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}
.architecture-note {
  font-size: 9px;
  color: #abb49b;
  margin-top: 15px;
  line-height: 1.7;
}
.models-section {
  background: #fff;
}
.catalog-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.catalog-tabs button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  color: #969e88;
  border-bottom: 2px solid transparent;
  background: none;
  font-size: 14px;
  margin-bottom: -1px;
}
.catalog-tabs button[aria-selected="true"] {
  color: #4f652e;
  border-bottom-color: #6d863f;
}
.catalog-tabs .ui-icon {
  width: 18px;
  height: 18px;
}
.provider-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: #939d83;
  margin-bottom: 22px;
}
.provider-panel-heading > span {
  font-size: 10px;
  white-space: nowrap;
  color: #a8b099;
}
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.provider-card {
  border: 1px solid #e2e7d8;
  border-radius: 9px;
  background: #fcfdf9;
  overflow: hidden;
}
.provider-card[open] {
  background: #f3f7eb;
  border-color: #c9d8b3;
}
.provider-card summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 18px;
  list-style: none;
  min-height: 81px;
}
.provider-card summary::-webkit-details-marker {
  display: none;
}
.provider-card summary > span:nth-child(2) {
  min-width: 0;
}
.provider-card b {
  font-size: 13px;
  font-weight: 500;
  color: #53663d;
  display: block;
  line-height: 1.3;
}
.provider-card small {
  display: block;
  font-size: 9px;
  color: #9eaa8a;
  margin-top: 5px;
}
.provider-plus {
  margin-left: auto;
  color: #a1b087;
  font-size: 19px;
  flex-shrink: 0;
}
.provider-card[open] .provider-plus {
  transform: rotate(45deg);
}
.provider-detail {
  font-size: 11px;
  color: #819569;
  line-height: 1.8;
  padding: 0 18px 19px;
  overflow-wrap: anywhere;
}
.provider-detail p {
  margin-top: 6px;
}
.provider-detail ul {
  margin: 7px 0 0;
  padding-left: 17px;
  font-size: 10px;
}
.provider-detail li {
  margin: 4px 0;
}
.provider-detail .model-list-title {
  color: #637b45;
  font-size: 10px;
  margin-top: 16px;
}
.provider-footnote {
  font-size: 10px;
  color: #98a685;
}
.catalog-note {
  font-size: 10px;
  line-height: 1.8;
  color: #a3ad94;
  max-width: 850px;
  margin-top: 26px;
}
.download-section {
  background: #10120d;
  color: #e9ecdf;
}
.download-section .section-heading > p {
  color: #858e72;
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.mac-download {
  border: 1px solid #333c25;
  background: linear-gradient(140deg, #1b2113, #13180e);
  border-radius: 13px;
  padding: 35px;
}
.download-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.download-card-top img {
  border-radius: 15px;
}
.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #a7b68b;
}
.mac-download h3 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.mac-download h3 > span {
  font-size: 22px;
  color: #77865f;
  font-weight: 400;
  margin-left: 8px;
}
.mac-download > p {
  font-size: 12px;
  color: #8b9b71;
  margin-top: 8px;
}
.download-button {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
.mac-details {
  font-size: 9px;
  color: #7e9061;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 15px;
}
.coming-platforms > article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid #303923;
}
.platform-icon {
  color: #9cab82;
  font-size: 39px;
  line-height: 1;
  min-width: 28px;
  text-align: center;
}
.windows-icon {
  font-size: 32px;
}
.coming-platforms h3 {
  font-size: 23px;
  font-weight: 450;
  letter-spacing: -0.025em;
}
.coming-platforms article p {
  font-size: 12px;
  color: #7d8c65;
  margin-top: 5px;
}
.soon {
  margin-left: auto;
  white-space: nowrap;
  font-size: 8px;
  color: #8e9f70;
  padding: 5px 10px;
  border: 1px solid #3c482c;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.license-notice {
  display: flex;
  gap: 15px;
  margin-top: 29px;
  color: #78895a;
}
.license-notice > .ui-icon {
  width: 22px;
  height: 22px;
}
.license-notice b {
  font-size: 13px;
  color: #b0bf93;
  font-weight: 450;
}
.license-notice p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 8px;
}
.license-notice a {
  display: inline-block;
  border-bottom: 1px solid #4a5b34;
  padding-bottom: 4px;
  margin-top: 13px;
  font-size: 11px;
  color: #b2c18f;
}
.faq-section {
  background: #fafbf7;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 100px;
}
.faq-grid > div > p:last-child {
  font-size: 13px;
  color: #8e9a7b;
  margin-top: 30px;
  line-height: 2;
}
.faq-list details {
  border-bottom: 1px solid #dce3d1;
}
.faq-list details:first-child {
  border-top: 1px solid #dce3d1;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  color: #566447;
  padding: 23px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  color: #95a77b;
  font-size: 24px;
  font-weight: 300;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 13px;
  color: #83956b;
  line-height: 1.85;
  padding: 0 24px 25px 0;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  background: #090b07;
  color: #788c5b;
  padding: 48px 0 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-top .brand {
  color: #eff4e5;
}
.footer-top > p {
  font-size: 14px;
  color: #6a7a53;
}
.footer-division {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
.footer-division > span {
  font-size: 10px;
  color: #71815a;
}
.footer-division .division-link img {
  width: 111px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #222a1a;
  padding-top: 23px;
  font-size: 10px;
  color: #64754d;
}
.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 27px;
}
.legal {
  padding-block: 80px 110px;
  background: #f8faf4;
  min-height: 70vh;
}
.legal .wrap {
  max-width: 780px;
}
.legal h1 {
  font-size: 53px;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 500;
}
.legal h2 {
  font-size: 25px;
  letter-spacing: -0.025em;
  margin: 35px 0 12px;
}
.legal p {
  font-size: 15px;
  color: #7d8a6b;
  line-height: 1.9;
}
.legal p + p {
  margin-top: 13px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.not-found {
  text-align: center;
}
.not-found .button {
  margin: 30px 7px;
}
@keyframes panel-enter {
  from {
    opacity: 0.25;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes caret {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 730px;
  }
  .hero h1 {
    font-size: 78px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .brand-group {
    gap: 10px;
  }
  .division-link img {
    width: 78px;
  }
  .main-nav {
    gap: 20px;
  }
  .header-actions {
    gap: 20px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .privacy-grid {
    gap: 50px;
  }
  .app-sidebar {
    width: 208px;
  }
  .meeting-document {
    padding-inline: 34px;
  }
  .demo-chat {
    width: 245px;
  }
  .provider-card summary {
    gap: 10px;
    padding: 15px;
  }
  .provider-card b {
    font-size: 12px;
  }
  .tour-tabs button {
    padding-inline: 12px;
  }
  .download-grid {
    gap: 50px;
  }
  .architecture {
    padding-inline: 20px;
  }
  .route-label {
    width: 98px;
    font-size: 9px;
  }
  .architecture-routes {
    padding-left: 17px;
  }
  .route-line {
    left: 12px;
  }
  .on-mac {
    font-size: 8px;
  }
}
@media (max-width: 950px) {
  .brand-by,
  .brand-group > .division-link {
    display: none;
  }
  .hero-inner {
    gap: 5px;
    grid-template-columns: 1.05fr 1fr;
    padding-block: 72px 90px;
    min-height: 570px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 18px;
  }
  .section-heading > p {
    max-width: 330px;
    font-size: 14px;
  }
  .app-sidebar {
    width: 185px;
  }
  .meeting-document {
    padding-inline: 28px;
  }
  .meeting-document h3 {
    font-size: 25px;
  }
  .app-shell {
    height: 560px;
  }
  .app-tabs button {
    padding-inline: 8px;
  }
  .app-tools {
    gap: 7px;
  }
  .demo-chat {
    width: 220px;
    padding-inline: 12px;
  }
  .product-demo[data-step="chat"] .app-sidebar {
    width: 160px;
  }
  .product-demo[data-step="chat"] .timeline-time {
    display: none;
  }
  .product-demo[data-step="chat"] .meeting-document h3 {
    font-size: 20px;
  }
  .product-demo[data-step="chat"] .app-tabs button span {
    display: none;
  }
  .product-demo[data-step="chat"] .app-view {
    font-size: 11px;
  }
  .tour-controls {
    align-items: start;
  }
  .tour-tabs {
    gap: 3px;
  }
  .tour-tabs button {
    font-size: 11px;
    padding: 8px 10px;
  }
  .tour-caption {
    font-size: 11px;
  }
  .tour-caption > span {
    font-size: 8px;
  }
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .privacy-grid > div:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 45px;
  }
  .privacy-grid .eyebrow {
    grid-column: 1/-1;
  }
  .privacy-grid .section-description {
    margin: 0;
    grid-row: 2 / 4;
    grid-column: 2;
    font-size: 15px;
  }
  .privacy-grid .underlined-link {
    width: max-content;
    margin-top: 24px;
  }
  .privacy-small {
    grid-column: 2;
    margin-top: 22px;
    font-size: 10px;
  }
  .architecture {
    width: 100%;
    max-width: 650px;
    margin: auto;
    padding: 25px 30px;
  }
  .route-label {
    width: 165px;
    font-size: 11px;
  }
  .route-provider {
    padding: 13px 18px;
  }
  .catalog-tabs button {
    padding: 15px;
    font-size: 12px;
    gap: 8px;
  }
  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-grid {
    gap: 30px;
  }
  .mac-download {
    padding: 27px;
  }
  .availability {
    font-size: 8px;
  }
  .coming-platforms > article {
    gap: 14px;
  }
  .coming-platforms article p {
    font-size: 11px;
  }
  .faq-grid {
    gap: 55px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-division {
    gap: 13px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section-pad {
    padding-block: 70px;
  }
  .header-inner {
    height: 72px;
    gap: 15px;
  }
  .main-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    gap: 19px;
  }
  .brand > span {
    font-size: 28px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .header-actions .button {
    font-size: 11px;
    min-height: 35px;
    gap: 12px;
    padding: 7px 12px;
  }
  .language-switch {
    font-size: 10px;
    gap: 7px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    padding-block: 49px 30px;
  }
  .hero h1 {
    font-size: 57px;
    line-height: 1.03;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
  }
  .hero h1 > span {
    font-size: 0.59em;
    margin-top: 15px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 430px;
  }
  .hero-actions {
    margin-top: 27px;
    gap: 22px;
    flex-wrap: nowrap;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 13px 15px;
    min-height: 50px;
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .download-note {
    font-size: 9px;
    margin-top: 16px;
  }
  .hero-art {
    align-self: center;
    width: 100%;
    max-width: 440px;
  }
  .motion-control {
    margin-top: 8px;
    font-size: 8px;
    color: #8a9575;
  }
  .manifesto {
    padding: 43px 0;
  }
  .manifesto p {
    font-size: 19px;
    line-height: 1.65;
  }
  .manifesto br {
    display: none;
  }
  .manifesto span {
    display: block;
    margin-top: 8px;
  }
  h2 {
    font-size: 40px;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    margin-top: 23px;
    max-width: 100%;
    font-size: 14px;
  }
  .app-shell {
    height: 520px;
    padding: 4px;
    font-size: 10px;
  }
  .product-demo {
    border-radius: 11px;
    margin-inline: -5px;
  }
  .app-sidebar {
    width: 119px;
    padding: 0 5px;
  }
  .app-window-header {
    height: 31px;
    padding-inline: 7px;
    gap: 10px;
  }
  .window-title {
    font-size: 8px;
  }
  .traffic-lights {
    gap: 4px;
  }
  .traffic-lights i {
    height: 7px;
    width: 7px;
  }
  .sidebar-toggle {
    font-size: 13px;
  }
  .app-sidebar-toolbar {
    gap: 0;
    padding-bottom: 10px;
  }
  .app-sidebar-toolbar > .notes-filter {
    font-size: 8px;
    padding: 0;
  }
  .app-sidebar-toolbar button {
    width: 23px;
    height: 24px;
  }
  .app-sidebar-toolbar .ui-icon {
    width: 13px;
    height: 13px;
  }
  .timeline-date {
    font-size: 8px;
    padding-inline: 3px;
  }
  .timeline-date > span {
    font-size: 7px;
  }
  .meeting-item {
    gap: 0;
    padding: 9px 5px;
  }
  .timeline-time {
    display: none;
  }
  .meeting-item b {
    font-size: 9px;
    line-height: 1.5;
  }
  .meeting-item small {
    font-size: 7px;
    line-height: 1.5;
  }
  .sidebar-dock {
    left: 10px;
    right: 8px;
    bottom: 12px;
    gap: 5px;
    font-size: 9px;
  }
  .sidebar-dock img {
    width: 19px;
    height: 19px;
  }
  .sidebar-dock button {
    width: 23px;
  }
  .sidebar-dock .ui-icon {
    width: 16px;
    height: 16px;
  }
  .app-toolbar {
    height: 39px;
    padding: 5px 6px;
    gap: 5px;
  }
  .app-tabs {
    padding: 2px;
    gap: 0;
  }
  .app-tabs button {
    font-size: 8px;
    padding: 4px 6px;
    min-height: 24px;
    gap: 4px;
  }
  .app-tabs .ui-icon {
    width: 12px;
    height: 12px;
  }
  .app-tabs button:not([aria-selected="true"]) span {
    display: none;
  }
  .app-tools {
    gap: 5px;
  }
  .app-tools .ui-icon {
    width: 12px;
    height: 12px;
  }
  .app-tools .ui-icon:first-child {
    display: none;
  }
  .meeting-document {
    height: calc(100% - 39px);
    padding: 20px 15px 77px;
  }
  .meeting-metadata {
    font-size: 7px;
    gap: 4px;
  }
  .meeting-metadata > span {
    display: none;
  }
  .meeting-document h3 {
    font-size: 22px;
    letter-spacing: -0.04em;
  }
  .participants {
    font-size: 8px;
    margin-top: 10px;
  }
  .avatar {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }
  .participants > span:last-child {
    margin-left: 5px;
    font-size: 7px;
  }
  .app-view {
    font-size: 10px;
    padding-top: 19px;
    line-height: 1.8;
  }
  .app-view h4 {
    font-size: 11px;
    margin: 14px 0 6px;
  }
  .app-view ul {
    padding-left: 15px;
  }
  .todo {
    font-size: 9px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .todo > small {
    font-size: 8px;
    margin-left: 18px;
  }
  .todo > .ui-icon,
  .empty-check {
    width: 11px;
    height: 11px;
  }
  .audio-player {
    left: 10px;
    right: 10px;
    bottom: 12px;
    padding: 8px 9px;
    gap: 7px;
    font-size: 7px;
  }
  .audio-wave {
    height: 14px;
    gap: 1px;
  }
  .audio-wave i {
    min-width: 1px;
  }
  .chat-fab {
    bottom: 56px;
    right: 10px;
    font-size: 8px;
    padding: 7px 9px;
    gap: 5px;
  }
  .chat-fab .ui-icon {
    width: 13px;
    height: 13px;
  }
  .transcript-line {
    gap: 6px;
    margin: 13px 0;
  }
  .transcript-line .avatar {
    width: 21px;
    height: 21px;
  }
  .speaker-name {
    font-size: 9px;
    gap: 7px;
  }
  .speaker-name time {
    font-size: 8px;
  }
  .transcript-line p {
    font-size: 10px;
    line-height: 1.8;
  }
  .product-demo[data-step="chat"] .app-sidebar {
    width: 105px;
  }
  .product-demo[data-step="chat"] .app-main {
    display: none;
  }
  .demo-chat {
    flex: 1;
    width: auto;
    margin-left: 0;
    padding-inline: 15px;
  }
  .demo-chat .chat-header {
    height: 40px;
    font-size: 11px;
  }
  .chat-context {
    font-size: 9px;
  }
  .chat-question,
  .chat-answer p {
    font-size: 11px;
  }
  .settings-menu {
    width: 109px;
    padding: 19px 9px;
    gap: 11px;
    font-size: 9px;
  }
  .settings-menu > b {
    font-size: 12px;
  }
  .settings-menu > span {
    padding: 7px 6px;
  }
  .settings-menu button {
    font-size: 9px;
  }
  .settings-content {
    padding: 20px 16px;
  }
  .settings-content h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .settings-breadcrumb {
    font-size: 7px;
    margin-bottom: 12px;
  }
  .settings-content > p:not(.settings-breadcrumb) {
    font-size: 9px;
    line-height: 1.7;
  }
  .setting-row {
    margin-top: 20px;
  }
  .setting-row label {
    font-size: 9px;
  }
  .setting-row > div {
    padding: 8px;
    gap: 7px;
  }
  .setting-row .provider-logo {
    width: 23px;
    height: 23px;
  }
  .setting-row b {
    font-size: 9px;
  }
  .setting-row small {
    font-size: 8px;
  }
  .settings-content .settings-note {
    font-size: 8px !important;
    line-height: 1.8;
  }
  .demo-search {
    padding: 90px 16px;
  }
  .search-input {
    font-size: 12px;
    padding: 14px;
  }
  .search-results {
    padding: 15px 8px;
  }
  .search-results button {
    padding: 11px 8px;
    gap: 11px;
  }
  .search-results b {
    font-size: 10px;
  }
  .search-results small {
    font-size: 8px;
  }
  .tour-controls {
    margin-top: 19px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .tour-tabs {
    flex: 1;
    min-width: 280px;
    gap: 4px;
  }
  .tour-tabs button {
    font-size: 10px;
    padding: 8px 11px;
  }
  .tour-play {
    font-size: 9px;
    padding: 5px 0;
    margin-left: 10px;
  }
  .tour-caption {
    display: block;
    font-size: 11px;
    margin-top: 14px;
    min-height: 68px;
  }
  .tour-caption > span {
    display: block;
    font-size: 8px;
    margin-top: 12px;
  }
  .privacy-grid {
    gap: 35px;
  }
  .privacy-grid > div:first-child {
    display: block;
  }
  .privacy-grid .section-description {
    font-size: 14px;
    margin-top: 25px;
  }
  .privacy-grid .underlined-link {
    margin-top: 20px;
  }
  .privacy-small {
    font-size: 10px;
    max-width: 100%;
    margin-top: 23px;
  }
  .architecture {
    padding: 18px 16px;
  }
  .architecture-top {
    gap: 10px;
    padding-bottom: 15px;
  }
  .architecture-top > span {
    font-size: 9px;
    gap: 5px;
  }
  .mode-switch button {
    font-size: 9px;
    padding: 6px 10px;
  }
  .architecture-origin {
    gap: 9px;
    padding-block: 22px;
  }
  .katip-chip {
    padding: 7px;
    border-radius: 11px;
  }
  .katip-chip img {
    width: 27px;
    height: 27px;
  }
  .architecture-origin b {
    font-size: 11px;
  }
  .architecture-origin > div > span {
    font-size: 8px;
  }
  .on-mac {
    font-size: 8px;
    gap: 3px;
  }
  .on-mac .ui-icon {
    width: 10px;
  }
  .architecture-routes {
    padding-left: 12px;
    gap: 12px;
  }
  .route-line {
    left: 8px;
  }
  .architecture-route {
    padding-left: 13px;
    gap: 8px;
  }
  .architecture-route:before {
    width: 13px;
    left: -3px;
  }
  .route-label {
    font-size: 9px;
    width: 87px;
  }
  .route-provider {
    padding: 10px;
    gap: 8px;
  }
  .provider-logo {
    width: 26px;
    height: 26px;
  }
  .route-provider b {
    font-size: 11px;
  }
  .route-provider small {
    font-size: 8px;
  }
  .route-provider > span {
    font-size: 13px;
  }
  .architecture-result {
    font-size: 10px;
    margin-top: 20px;
    padding: 12px;
    gap: 8px;
  }
  .architecture-note {
    font-size: 8px;
  }
  .catalog-tabs {
    gap: 0;
    margin-bottom: 22px;
    justify-content: space-between;
  }
  .catalog-tabs button {
    padding: 13px 7px;
    font-size: 10px;
    gap: 6px;
    align-items: start;
    flex: 1;
  }
  .catalog-tabs .ui-icon {
    width: 15px;
    height: 15px;
    margin-top: 2px;
  }
  .catalog-tabs span {
    text-align: left;
    max-width: 90px;
  }
  .provider-panel-heading {
    font-size: 11px;
    gap: 14px;
  }
  .provider-panel-heading > span {
    font-size: 9px;
  }
  .provider-grid {
    gap: 9px;
  }
  .provider-card summary {
    padding: 13px 10px;
    gap: 8px;
    min-height: 78px;
  }
  .provider-card b {
    font-size: 10px;
  }
  .provider-card small {
    font-size: 8px;
    line-height: 1.5;
  }
  .provider-card .provider-logo {
    width: 23px;
    height: 23px;
  }
  .provider-plus {
    font-size: 16px;
  }
  .provider-card summary > span:nth-child(2) {
    overflow-wrap: anywhere;
  }
  .provider-detail {
    font-size: 10px;
    line-height: 1.7;
    padding-inline: 12px;
    padding-bottom: 15px;
  }
  .provider-detail ul {
    font-size: 9px;
    padding-left: 13px;
  }
  .catalog-note {
    font-size: 9px;
    margin-top: 21px;
  }
  .download-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .mac-download {
    padding: 27px;
  }
  .download-card-top img {
    width: 65px;
    height: 65px;
  }
  .availability {
    font-size: 8px;
  }
  .mac-download h3 {
    font-size: 29px;
  }
  .mac-download h3 > span {
    font-size: 20px;
  }
  .mac-details {
    font-size: 9px;
  }
  .coming-platforms > article {
    padding-block: 23px;
    gap: 16px;
  }
  .coming-platforms h3 {
    font-size: 22px;
  }
  .coming-platforms article p {
    font-size: 11px;
  }
  .soon {
    font-size: 8px;
    padding: 5px 9px;
  }
  .license-notice {
    margin-top: 27px;
  }
  .license-notice p {
    font-size: 12px;
  }
  .faq-grid {
    display: block;
  }
  .faq-grid > div > p:last-child {
    font-size: 12px;
    margin-top: 24px;
  }
  .faq-list {
    margin-top: 34px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 22px 0;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 5px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 30px;
  }
  .footer-top > p {
    display: none;
  }
  .footer-division {
    gap: 13px;
  }
  .footer-division > span {
    font-size: 8px;
  }
  .footer-division .division-link img {
    width: 82px;
  }
  .footer-bottom {
    align-items: start;
    font-size: 8px;
    gap: 15px;
  }
  .footer-bottom > div {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .footer-bottom .language-switch {
    font-size: 8px;
  }
  .footer-bottom .language-switch a {
    padding: 0;
  }
  .site-footer {
    padding-top: 32px;
  }
  .legal {
    padding-block: 57px;
  }
  .legal h1 {
    font-size: 42px;
  }
  .legal h2 {
    font-size: 24px;
  }
  .legal p {
    font-size: 14px;
  }
}
@media (max-width: 680px) {
  .hero-art {
    max-width: 460px;
  }
  .conversation-art {
    aspect-ratio: auto;
    padding-top: 67%;
  }
  .conversation-card {
    position: relative;
    top: auto;
    left: 1%;
    width: 98%;
  }
  .orb-status {
    font-size: 9px;
  }
  .orb-brand {
    top: 0;
    margin-top: 34.1667%;
    padding: 10px;
    border-radius: 18px;
  }
  .orb-brand img {
    width: 32px;
  }
  .orb-caption {
    top: 0;
    margin-top: 58%;
    font-size: 9px;
  }
  .hero-transcript,
  .hero-summary {
    padding: 14px 15px;
  }
  .spoken-line p {
    font-size: 12px;
  }
  .hero-summary > p {
    font-size: 13px;
  }
  .hero-action-item {
    font-size: 8px;
  }
  .hero-animation-controls {
    margin-top: 18px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero-stages {
    gap: 12px;
  }
  .motion-control {
    margin-top: 0;
  }
  .app-sidebar-toolbar > .notes-filter {
    gap: 2px;
  }
  .app-sidebar-toolbar > .notes-filter .ui-icon {
    width: 9px;
    height: 9px;
  }
  .settings-menu {
    width: 109px;
  }
  .settings-content {
    padding: 19px 13px;
  }
  .settings-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 12px;
    gap: 7px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .header-actions {
    gap: 13px;
  }
  .app-sidebar {
    width: 103px;
  }
  .meeting-document {
    padding-inline: 12px;
  }
  .meeting-document h3 {
    font-size: 20px;
  }
  .provider-grid {
    grid-template-columns: 1fr;
  }
  .provider-card summary {
    min-height: 67px;
  }
  .provider-card b {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Keep small explanatory text readable on the pale product surfaces. */
.provider-detail,
.provider-detail ul,
.provider-footnote,
.provider-panel-heading,
.provider-panel-heading > span,
.catalog-note,
.provider-card small,
.architecture-top > span,
.architecture-note,
.route-label,
.route-provider small,
.architecture-origin > div > span,
.on-mac,
.privacy-small,
.tour-caption,
.tour-caption > span,
.tour-play,
.faq-list details > p,
.legal p {
  color: #69735d;
}
.architecture-result {
  color: #586b40;
}
.mode-switch button {
  color: #647251;
}
.download-note {
  color: #939a84;
}
.download-note > span {
  color: #8a937b;
}
.motion-control {
  color: #939d82;
}
.footer-bottom,
.footer-bottom a,
.footer-division > span {
  color: #94a47c;
}
