@font-face {
  font-family: Manrope;
  src: url("assets/fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("assets/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600 700;
  font-display: swap;
}
:root {
  --ink: #1f2933;
  --text: #49535c;
  --paper: #f7f6f3;
  --white: #fff;
  --line: #dedfda;
  --sage: #3e665b;
  --sage-light: #eaf1eb;
  --terra: #a54d2f;
  --terra-light: #f6e9e1;
  --slate-light: #e8eef3;
  --radius: 24px;
  --shadow: 0 20px 60px #1f293312;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 125px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, Arial, sans-serif;
}
h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.12;
}
h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
}
h3 {
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #357797;
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
button,
a {
  touch-action: manipulation;
}
button svg,
a svg {
  pointer-events: none;
}
::selection {
  background: #c8d9ce;
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.container {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16em;
  margin-bottom: 23px;
  color: var(--sage);
}
.eyebrow.light {
  color: #c5d7c9;
}
.muted-heading {
  color: #728176;
}
.section-heading {
  margin-bottom: 50px;
}
.section-heading > p:last-child:not(.eyebrow) {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: 23px;
}
.section-heading.centered {
  text-align: center;
}
.button {
  border: 1px solid transparent;
  border-radius: 100px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px #00000012;
}
.button-dark {
  color: #fff;
  background: var(--ink);
}
.button-dark:hover {
  background: #354551;
}
.button-white {
  color: var(--ink);
  background: #fff;
}
.button-white:hover {
  background: #edf2ec;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  min-height: 44px;
  border: 0;
  background: none;
  padding: 0;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link .icon {
  width: 19px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 12px 18px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 10px;
}
/* Navigation and opening */
.site-header {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 112px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 12px 16px 12px 25px;
  background: #fffffff2;
  backdrop-filter: blur(16px);
  border: 1px solid #ffffff80;
  border-radius: 60px;
  z-index: 10;
  box-shadow: 0 8px 25px #00000007;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand img {
  width: 71px;
  height: auto;
}
.brand > span {
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  padding: 5px 0 5px 13px;
  border-left: 1px solid #d5d7d3;
  font-weight: 500;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 500;
}
.desktop-nav a {
  padding-block: 9px;
}
.desktop-nav a:hover {
  color: var(--sage);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-demo {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 0.82rem;
  gap: 22px;
}
.nav-demo .icon {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
}
.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 20px;
}
.mobile-menu > a {
  padding: 12px 4px;
}
.hero {
  position: relative;
  margin: 16px;
  min-height: 775px;
  border-radius: 28px;
  isolation: isolate;
  background: #28322d;
  overflow: hidden;
  color: white;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-photo {
  object-position: center 42%;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, #111c1be0 0%, #152220b5 38%, #15222018 73%),
    linear-gradient(0deg, #13201deb 0%, transparent 45%);
}
.hero-content {
  width: min(1160px, calc(100% - 80px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 184px 0 87px;
}
.hero-copy {
  align-self: center;
  padding-bottom: 30px;
}
.hero-copy .eyebrow {
  color: #c9d9ce;
  font-size: 0.72rem;
}
.hero h1 {
  font-size: clamp(3rem, 5.1vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin: 0 0 28px;
}
.hero h1 span {
  color: #d2e0c9;
}
.hero-description {
  max-width: 470px;
  font-size: 1.05rem;
  color: #edeeea;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.light-link {
  color: white;
  font-size: 0.85rem;
}
.play-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff6b;
  border-radius: 50%;
  font-size: 16px;
}
.hero-caption {
  font-size: 0.78rem;
  color: #c7cfca;
  margin-top: 36px;
}
.hero-product {
  justify-self: end;
  position: relative;
  align-self: end;
  padding-top: 25px;
}
.phone {
  width: 306px;
  border: 6px solid #28302e;
  border-radius: 40px;
  background: #f7f6f3;
  color: var(--ink);
  overflow: hidden;
  box-shadow:
    0 24px 55px #0005,
    0 0 0 1px #ffffff4d;
  transform: rotate(3deg);
}
.phone-status {
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px;
  font-size: 0.7rem;
  font-weight: 600;
  position: relative;
}
.phone-island {
  width: 78px;
  height: 21px;
  background: #222927;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  border-radius: 30px;
}
.phone-content {
  padding: 12px 17px 20px;
}
.phone-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.phone-brand img {
  width: 55px;
  height: auto;
}
.app-overline {
  font-size: 0.61rem;
  letter-spacing: 0.075em;
  color: #637168;
  font-weight: 600;
  margin-bottom: 6px;
}
.phone h2 {
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.045em;
}
.app-muted {
  color: #6a736e;
  font-size: 0.78rem;
  line-height: 1.5;
}
.phone .app-muted {
  font-size: 0.7rem;
  margin-top: 4px;
}
.phone-channel {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 25px 0 12px;
}
.phone-channel strong,
.phone-task strong {
  font-size: 0.75rem;
  display: block;
}
.phone-channel span:not(.icon-tile),
.phone-task div > span {
  display: block;
  font-size: 0.65rem;
  color: #6a736e;
}
.icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--slate-light);
  color: #40566a;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.icon-tile .icon {
  width: 21px;
  height: 21px;
}
.sage {
  background: var(--sage-light);
  color: var(--sage);
}
.terra {
  background: var(--terra-light);
  color: var(--terra);
}
.phone-message {
  background: white;
  border: 1px solid #e4e6e1;
  border-radius: 12px;
  padding: 13px;
}
.person {
  display: flex;
  align-items: center;
  gap: 8px;
}
.person strong {
  display: block;
  font-size: 0.7rem;
}
.person div > span {
  display: block;
  font-size: 0.62rem;
  color: #6a736e;
}
.avatar {
  background: #e6ebe4;
  color: #435a4c;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
}
.avatar-small {
  width: 27px;
  height: 27px;
  font-size: 0.66rem;
}
.phone-message > p {
  font-size: 0.78rem;
  line-height: 1.65;
  margin: 12px 0;
}
.message-reaction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e3e6e1;
  background: #f6f8f3;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 0.7rem;
}
.phone-task {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
}
.phone-task .icon-tile {
  width: 33px;
  height: 33px;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 10px 17px;
  background: white;
  border-top: 1px solid #e1e4de;
  font-size: 0.6rem;
  color: #606c63;
}
.phone-nav > span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.phone-nav .icon {
  width: 19px;
  height: 19px;
}
.phone-nav .active {
  color: #31473d;
}
.floating-note {
  position: absolute;
  left: -83px;
  bottom: 31px;
  background: white;
  border: 1px solid #e5e7e0;
  color: var(--ink);
  box-shadow: 0 8px 30px #0002;
  border-radius: 13px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 15px 20px;
  font-size: 0.75rem;
  line-height: 1.55;
  transform: rotate(-3deg);
}
.check-disc {
  background: var(--sage-light);
  color: var(--sage);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.check-disc .icon {
  width: 19px;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: #c9d3ca;
}
.hero-bottom > a {
  border: 1px solid #ffffff40;
  border-radius: 50%;
  font-size: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
}
.department-strip {
  padding: 40px 0 45px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.department-strip > span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6c756f;
  white-space: nowrap;
}
.department-strip > div {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
}
/* Control-form examples: the report and its evidence stay beside the explanation. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.controls-section {
  background: #eeeae3;
}
.controls-intro {
  max-width: 760px;
  margin-bottom: 44px;
}
.controls-intro .section-description {
  margin-top: 24px;
  max-width: 680px;
}
.controls-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 40px;
}
.controls-tabs button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid #c9cbc5;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  font-weight: 600;
  line-height: 1.4;
  min-width: 0;
}
.controls-tabs button span {
  color: #57665e;
  font-size: 0.72rem;
}
.controls-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.controls-tabs button[aria-selected="true"] span {
  color: #c1d4c5;
}
.controls-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 64px;
}
.controls-story {
  padding-block: 18px;
}
.controls-story h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 22px;
}
.controls-story > p:not(.eyebrow) {
  color: var(--text);
  line-height: 1.85;
}
.controls-setup {
  margin-top: 30px;
  border-left: 2px solid #6e8979;
  padding-left: 20px;
}
.controls-setup strong {
  font-size: 0.9rem;
}
.controls-setup p {
  margin-top: 8px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.8;
}
.controls-requirement {
  margin-top: 24px;
  font-size: 0.82rem;
}
.controls-requirement summary,
.controls-boundary summary {
  cursor: pointer;
  padding-block: 10px;
  font-weight: 600;
}
.controls-requirement p {
  margin: 10px 0;
  line-height: 1.8;
}
.controls-requirement a,
.controls-boundary a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.control-sheet {
  background: #fff;
  border: 1px solid #d5d9d2;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  min-width: 0;
}
.control-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  color: #526056;
}
.control-sheet h4 {
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.control-context {
  font-size: 0.73rem;
  color: var(--text);
  margin-top: 8px;
}
.control-checks {
  list-style: none;
  margin: 22px 0;
  padding: 0;
}
.control-checks li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #e8eae5;
  font-size: 0.88rem;
}
.control-checks li > span {
  min-width: 0;
}
.control-result {
  flex-shrink: 0;
  border-radius: 7px;
  padding: 4px 9px;
  color: #315d43;
  background: #edf4ed;
  font-size: 0.71rem;
  white-space: nowrap;
}
.control-result.is-issue {
  color: #873819;
  background: #faece3;
}
.control-measurement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #f5f6f3;
  padding: 16px;
  margin-top: 22px;
  border-radius: 10px;
}
.control-measurement span {
  font-size: 0.82rem;
  max-width: 16em;
}
.control-measurement strong {
  font-family: Manrope, sans-serif;
  font-size: 1.7rem;
  white-space: nowrap;
}
.control-try {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 17px;
  border: 1px solid #718176;
  border-radius: 9px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.control-try:hover {
  background: #edf2eb;
}
.control-comment {
  margin-top: 20px;
  border-radius: 10px;
  padding: 16px;
  background: #f9eee7;
  font-size: 0.82rem;
}
.control-comment p {
  margin-top: 7px;
  line-height: 1.75;
}
.control-risk {
  font-size: 0.78rem;
  padding: 0;
  margin: 18px 0;
}
.control-risk > div {
  padding: 10px 0;
}
.control-risk dt {
  font-weight: 600;
}
.control-risk dd {
  margin: 4px 0 0;
  color: var(--text);
}
.control-action {
  border: 1px solid #ccd9cb;
  background: #f2f7ef;
  border-radius: 10px;
  padding: 17px;
  margin-top: 16px;
}
.control-action > span {
  display: block;
  color: #496050;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.control-action strong {
  display: block;
  font-size: 0.91rem;
  line-height: 1.5;
}
.control-action p {
  font-size: 0.78rem;
  line-height: 1.8;
  margin-top: 8px;
}
.control-simulation,
.control-note {
  font-size: 0.7rem;
  color: #5a635c;
  line-height: 1.7;
  margin-top: 16px;
}
.controls-flow {
  list-style: none;
  padding: 32px 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid #c9cec5;
  border-bottom: 1px solid #c9cec5;
}
.controls-flow > li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.controls-flow > li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #8b998f;
  font-size: 0.8rem;
}
.controls-flow h3 {
  font-size: 1rem;
  line-height: 1.5;
}
.controls-flow p {
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text);
}
.controls-boundary {
  max-width: 940px;
  font-size: 0.78rem;
  line-height: 1.8;
  color: #4f5a52;
  padding-top: 26px;
}
.controls-boundary strong {
  color: var(--ink);
}
.controls-boundary details {
  margin-top: 12px;
}
.controls-boundary details p {
  margin: 12px 0;
}
.controls-boundary li {
  padding-block: 4px;
}
@media (max-width: 1000px) {
  .controls-panel {
    gap: 30px;
  }
  .controls-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .controls-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 760px) {
  .controls-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .controls-story {
    padding: 0;
  }
  .controls-tabs {
    margin-bottom: 30px;
  }
  .controls-tabs button {
    font-size: 0.82rem;
    padding: 14px 12px;
    gap: 9px;
  }
  .control-sheet {
    padding: 22px;
  }
}
@media (max-width: 400px) {
  .control-sheet {
    padding: 16px;
  }
  .control-sheet-top {
    flex-wrap: wrap;
  }
  .control-measurement {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .controls-tabs button {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
/* Start with hotel situations; product demonstrations provide the evidence below. */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 22px;
}
.solution-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #dde1d9;
  border-radius: 20px;
  background: white;
  padding: 30px;
  scroll-margin-top: 120px;
}
.solution-card:nth-child(2),
.solution-card:nth-child(6) {
  background: #eff3ed;
}
.solution-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
  color: #536858;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.solution-label .icon {
  width: 25px;
  height: 25px;
}
.solution-card h3 {
  font-size: 1.55rem;
  line-height: 1.3;
  letter-spacing: -0.045em;
  margin-bottom: 17px;
}
.solution-problem {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.8;
}
.solution-answer {
  margin: 23px 0 24px;
  padding-top: 18px;
  border-top: 1px solid #dce2d7;
}
.solution-answer > span {
  display: block;
  color: #536858;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.solution-answer p {
  font-size: 0.87rem;
  line-height: 1.8;
}
.solution-card .text-link {
  margin-top: auto;
  font-size: 0.79rem;
  line-height: 1.5;
  min-height: 44px;
  justify-content: space-between;
  gap: 10px;
}
.day-steps .step-time {
  font-size: 0.68rem;
  width: 80px;
  flex-basis: 80px;
}
.case-result {
  margin-top: 20px;
  padding: 15px 18px;
  background: #eef3eb;
  color: #405b49;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.75;
}
.handover-list {
  margin: 22px 0 0;
}
.handover-list > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.handover-list dt {
  color: #4f6858;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.handover-list dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}
.maintenance-followup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  background: #ecf1e9;
  border: 1px solid #dce3d6;
  padding: 34px;
  border-radius: 20px;
  margin-top: 42px;
}
.maintenance-followup h3 {
  font-size: 1.55rem;
  line-height: 1.4;
}
.maintenance-followup p:not(.eyebrow) {
  color: var(--text);
  font-size: 0.87rem;
  line-height: 1.85;
}
.maintenance-followup ol {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 0.81rem;
}
.maintenance-followup li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.maintenance-followup li span {
  display: grid;
  place-items: center;
  border: 1px solid #a9b8aa;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.7rem;
}
@media (max-width: 1000px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  }
  .solution-card {
    padding: 25px;
  }
  .maintenance-followup {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .solution-card {
    padding: 26px;
  }
  .solution-label {
    margin-bottom: 22px;
  }
  .solution-card h3 br {
    display: none;
  }
  .day-steps .step-time {
    width: auto;
    flex-basis: auto;
    font-size: 0.65rem;
  }
  .maintenance-followup {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 20px;
  }
  .maintenance-followup h3 br {
    display: none;
  }
}
/* Product cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 18px;
}
.feature-card {
  background: white;
  border: 1px solid #dfe2dc;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 30px;
}
.feature-demo {
  min-height: 220px;
  flex-shrink: 0;
  padding: 22px 18px;
  background: #eaf0e9;
  border-bottom: 1px solid #e0e3dc;
}
.task-demo {
  background: #eeeae4;
}
.knowledge-demo {
  background: #e8eef1;
}
.report-demo {
  background: #eeeae5;
}
.mini-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.64rem;
  font-weight: 500;
  color: #4e5b54;
  margin-bottom: 18px;
  white-space: nowrap;
}
.mini-label > .icon {
  width: 15px;
  height: 15px;
}
.mini-label > span:last-child {
  margin-left: auto;
  font-size: 0.54rem;
  letter-spacing: 0.06em;
}
.mini-message {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: white;
  padding: 13px 11px;
  border-radius: 10px;
  box-shadow: 0 3px 10px #27382c08;
}
.mini-message .avatar {
  width: 25px;
  height: 25px;
  font-size: 0.52rem;
}
.mini-message strong {
  font-size: 0.64rem;
}
.mini-message p {
  font-size: 0.69rem;
  line-height: 1.6;
  margin: 5px 0 9px;
}
.translated-label {
  font-size: 0.55rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 4px;
}
.translated-label .icon {
  width: 12px;
  height: 12px;
}
.mini-task {
  background: white;
  border-radius: 10px;
  padding: 14px 12px;
  box-shadow: 0 3px 10px #27382c08;
}
.task-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  background: #edf0ec;
  color: #45544b;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.69rem;
  line-height: 1.5;
  font-weight: 500;
}
.status {
  display: inline-block;
  white-space: nowrap;
  border-radius: 30px;
  font-size: 0.65rem;
  padding: 3px 9px;
  line-height: 1.5;
}
.status-open {
  background: #f8e9dd;
  color: #874622;
}
.status-started {
  background: #e8edf3;
  color: #3b5b76;
}
.status-closed {
  background: #e7f0e7;
  color: #3e6445;
}
.mini-task > strong {
  font-size: 0.8rem;
  line-height: 1.45;
  display: block;
  margin: 11px 0;
}
.mini-task-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
}
.mini-task-footer > span:last-child {
  margin-left: auto;
  font-size: 0.6rem;
  color: #697269;
}
.mini-course {
  display: flex;
  gap: 11px;
  align-items: center;
  background: white;
  padding: 16px 11px;
  border-radius: 10px;
}
.course-symbol {
  width: 34px;
  height: 43px;
  background: #e7edf3;
  color: #546775;
  display: grid;
  place-items: center;
  border-radius: 5px;
  flex-shrink: 0;
}
.mini-course strong {
  font-size: 0.71rem;
  line-height: 1.4;
  display: block;
}
.mini-course div > span {
  font-size: 0.6rem;
  line-height: 1.5;
  display: block;
  margin-top: 5px;
  color: #637076;
}
.course-progress {
  display: flex;
  justify-content: space-between;
  font-size: 0.59rem;
  margin: 15px 0 6px;
  color: #4d616c;
}
.progress-track {
  height: 5px;
  background: #d4dee3;
  border-radius: 9px;
  overflow: hidden;
}
.progress-track > span {
  display: block;
  background: #5e7c8d;
  width: 50%;
  height: 100%;
}
.report-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  padding: 14px;
  border-radius: 10px;
}
.report-metrics > div + div {
  border-left: 1px solid #e8e8e2;
  padding-left: 14px;
}
.report-metrics span {
  display: block;
  font-size: 0.61rem;
  color: #67716a;
}
.report-metrics strong {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
}
.report-metrics small {
  font:
    400 0.67rem Inter,
    sans-serif;
  color: #748074;
}
.report-published {
  font-size: 0.62rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #48614a;
  margin-top: 12px;
}
.report-published .icon {
  width: 14px;
  height: 14px;
}
.feature-copy {
  padding: 26px 23px 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feature-index {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #637167;
  line-height: 1.5;
  min-height: 27px;
}
.feature-copy h3 {
  font-size: 1.35rem;
  margin: 6px 0 14px;
  min-height: 3.5rem;
}
.feature-copy > p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
}
.feature-copy .text-link {
  margin-top: auto;
  font-size: 0.75rem;
  gap: 6px;
  justify-content: space-between;
}
/* Working day */
.day-section {
  background: #edf0e9;
  border-block: 1px solid #e1e5dc;
}
.day-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.day-steps {
  display: flex;
  flex-direction: column;
}
.day-step {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid #d8ded3;
  background: none;
  padding: 28px 6px;
  position: relative;
  line-height: 1.5;
}
.day-step:first-child {
  border-top: 1px solid #d8ded3;
}
.day-step.active {
  background: #ffffff9c;
  border-radius: 12px;
  padding-inline: 18px;
  border-color: transparent;
  box-shadow: 0 4px 20px #22332b05;
}
.step-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6f7b70;
  align-self: flex-start;
  padding-top: 4px;
}
.day-step.active .step-time {
  color: var(--sage);
}
.day-step > span:nth-child(2) {
  flex: 1;
}
.day-step strong {
  font-size: 1rem;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  display: block;
}
.day-step > span > span {
  display: block;
  color: #657066;
  font-size: 0.8rem;
  margin-top: 6px;
}
.step-arrow {
  font-size: 1.3rem;
  color: #778675;
  opacity: 0;
}
.day-step.active .step-arrow,
.day-step:hover .step-arrow {
  opacity: 1;
}
.day-stage {
  padding: 28px;
  position: relative;
  background: #dfe7dc;
  border-radius: 28px;
}
.product-window {
  border: 1px solid #dfe3db;
  border-radius: 15px;
  background: #fbfcf9;
  box-shadow: var(--shadow);
  min-height: 380px;
  overflow: hidden;
}
.window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #e3e6de;
  background: white;
}
.window-header strong {
  font-size: 0.95rem;
}
.window-header div > span {
  font-size: 0.73rem;
  color: #6c756d;
  display: block;
}
.window-content {
  padding: 22px;
}
.window-content > .person {
  margin-bottom: 18px;
}
.window-content .person strong {
  font-size: 0.84rem;
}
.window-content .person div > span {
  font-size: 0.7rem;
}
.window-message {
  background: white;
  border: 1px solid #e4e7df;
  border-radius: 12px;
  padding: 17px;
  font-size: 0.91rem;
  line-height: 1.8;
}
.window-message > .message-reaction {
  margin-top: 15px;
}
.window-footnote {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #667666;
  font-size: 0.76rem;
}
.window-footnote .icon {
  width: 17px;
  height: 17px;
}
.window-content h3 {
  margin: 14px 0;
  font-size: 1.3rem;
  line-height: 1.45;
}
.window-content > p {
  font-size: 0.9rem;
  line-height: 1.75;
}
.detail-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.assignment-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e5e8e0;
}
.assignment-line > span:last-child {
  color: #6d756e;
  margin-left: auto;
  font-size: 0.72rem;
}
.course-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.course-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: white;
  border: 1px solid #e1e6dd;
  border-radius: 7px;
  font-size: 0.8rem;
}
.course-list .done {
  color: #426748;
}
.course-list .icon {
  width: 16px;
  height: 16px;
}
.course-list .step-counter {
  width: 16px;
  font-size: 0.75rem;
  text-align: center;
  color: #7d857d;
}
.daily-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.daily-metrics > div {
  background: white;
  border: 1px solid #e0e4dc;
  padding: 14px;
  border-radius: 9px;
}
.daily-metrics span {
  font-size: 0.75rem;
  color: #6d756c;
  display: block;
}
.daily-metrics strong {
  font-size: 2rem;
  font-family: Manrope, sans-serif;
  line-height: 1.6;
}
.demo-caption {
  display: block;
  color: #657264;
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 17px;
}
/* Task analysis */
.analysis-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 65px;
  align-items: end;
  margin-bottom: 60px;
}
.analysis-intro > p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 5px;
}
.analysis-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.analysis-questions {
  display: flex;
  flex-direction: column;
}
.analysis-question {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 0;
  background: none;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  text-align: left;
  font-family: Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}
.question-number {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #708076;
}
.analysis-question > .icon {
  margin-left: auto;
  width: 19px;
  opacity: 0.35;
}
.analysis-question.active {
  color: var(--sage);
}
.analysis-question.active > .icon {
  opacity: 1;
}
.analysis-question.active .question-number {
  background: var(--sage);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  margin-right: -5px;
}
.analysis-note {
  font-size: 0.77rem;
  line-height: 1.8;
  color: #707970;
  margin-top: 26px;
  max-width: 340px;
}
.analysis-dashboard {
  border: 1px solid #d8ded4;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 40px #22332b07;
}
.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #e5e8e1;
  font-size: 0.82rem;
  font-weight: 600;
}
.dashboard-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-top .pill {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  background: #f0f2ed;
}
.dashboard-top .icon {
  width: 18px;
  color: var(--sage);
}
#analysis-panel {
  padding: 25px;
  min-height: 355px;
}
.dashboard-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}
.dashboard-title h3 {
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
}
.dashboard-title p {
  font-size: 0.73rem;
  color: #6c796e;
  margin-top: 6px;
}
.total-count {
  text-align: right;
  white-space: nowrap;
  font-family: Manrope, sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 800;
}
.total-count small {
  display: block;
  font-size: 0.62rem;
  line-height: 1.5;
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: #6a766d;
  margin-top: 6px;
}
.bar-chart {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.bar-row {
  display: grid;
  grid-template-columns: 95px 1fr 23px;
  gap: 14px;
  align-items: center;
  font-size: 0.82rem;
}
.bar-track {
  height: 25px;
  background: #f0f3ed;
  border-radius: 5px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #799180;
  border-radius: 5px;
  animation: bar-in 0.35s ease-out;
  transform-origin: left;
}
.bar-row:first-child .bar-fill {
  background: #355c4d;
}
.bar-row > strong {
  text-align: right;
  font-size: 0.84rem;
  font-weight: 600;
}
.bar-chart.actions .bar-row {
  grid-template-columns: 125px 1fr 23px;
}
.chart-caption {
  font-size: 0.7rem;
  color: #6d786f;
  margin-top: 24px;
  line-height: 1.7;
}
.dashboard-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 0.62rem;
  color: #68756b;
  padding: 14px 22px;
  background: #f7f8f5;
  border-top: 1px solid #e5e8e1;
}
.related-source {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 12px;
}
.related-source > strong {
  font-size: 0.8rem;
}
.related-list {
  display: grid;
  gap: 8px;
}
.related-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: #f7f8f4;
  border: 1px solid #e5e9df;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
}
.related-row:hover {
  background: #edf1e8;
}
.related-row > span:first-child {
  flex: 1;
}
.related-row strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 500;
}
.related-row small {
  font-size: 0.64rem;
  color: #637267;
}
.related-note {
  font-size: 0.69rem;
  color: #667467;
  margin-top: 13px;
  line-height: 1.7;
}
/* Claude */
.claude-section {
  background: #202e2a;
  color: white;
  margin: 0 16px;
  border-radius: 28px;
  padding: 90px 0;
}
.claude-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.claude-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}
.claude-copy > p:not(.eyebrow):not(.claude-disclaimer) {
  color: #c9d3cc;
  line-height: 1.85;
  margin-top: 24px;
  font-size: 0.96rem;
}
.claude-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-size: 0.79rem;
  color: #e1e8de;
}
.claude-benefits > span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.claude-benefits .icon {
  width: 16px;
  height: 16px;
  color: #b4c7af;
}
.claude-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 33px;
}
.claude-switch button {
  padding: 10px 15px;
  border: 1px solid #526458;
  background: transparent;
  color: #e0e7dc;
  border-radius: 30px;
  font-size: 0.72rem;
  line-height: 1.6;
  min-height: 44px;
}
.claude-switch button[aria-selected="true"] {
  background: #e7efdf;
  color: #263b2e;
  border-color: #e7efdf;
}
.claude-disclaimer {
  color: #bcc9bf;
  font-size: 0.68rem;
  line-height: 1.6;
  margin-top: 20px;
}
.claude-window {
  color: var(--ink);
  background: #f7f6f2;
  border: 1px solid #ffffff50;
  border-radius: 18px;
  box-shadow: 0 20px 40px #07130e40;
  overflow: hidden;
}
.claude-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 24px;
  border-bottom: 1px solid #e1e1d9;
  font-size: 0.77rem;
}
.claude-top > span:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
}
.claude-top .icon {
  color: #a66548;
  width: 24px;
  height: 24px;
}
.connector-line {
  color: #9a9e93;
  padding: 0 2px;
}
.demo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #697565;
}
#claude-panel {
  padding: 26px;
  min-height: 448px;
}
.user-question {
  background: #e7ebe3;
  padding: 13px 17px;
  border-radius: 14px 14px 3px 14px;
  margin-left: 38px;
  font-size: 0.85rem;
  line-height: 1.65;
}
.assistant-answer {
  margin: 24px 0 0;
  font-size: 0.86rem;
  line-height: 1.8;
}
.assistant-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.assistant-label .icon {
  width: 18px;
  height: 18px;
  color: #a66548;
}
.claude-task-list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
  display: grid;
  gap: 5px;
}
.claude-task-list button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid #e0e4da;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  line-height: 1.5;
}
.claude-task-list button:hover {
  color: var(--sage);
}
.claude-task-list .room-number {
  font-family: Manrope, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  min-width: 28px;
}
.claude-task-list .task-title {
  flex: 1;
  font-size: 0.76rem;
}
.source-id {
  font-size: 0.6rem;
  white-space: nowrap;
  border: 1px solid #d5ddce;
  border-radius: 4px;
  padding: 2px 5px;
  background: #f1f3ec;
}
.claude-summary-note {
  font-size: 0.74rem;
  line-height: 1.7;
  color: #5b695d;
}
.claude-footer {
  padding: 14px 24px;
  border-top: 1px solid #e1e1d9;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: #697464;
}
.claude-footer .icon {
  width: 14px;
  height: 14px;
}
.message-draft {
  background: white;
  border: 1px solid #dfe3d8;
  border-radius: 10px;
  padding: 16px;
  margin: 14px 0;
}
.message-draft .draft-label {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: #6e7b66;
  display: block;
  margin-bottom: 8px;
}
.message-draft p {
  font-size: 0.83rem;
  line-height: 1.8;
}
.draft-action {
  margin-top: 6px;
  font-size: 0.75rem;
  min-height: 44px;
  padding: 10px 16px;
  gap: 10px;
}
.review-notice {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #50634f;
  padding: 12px 14px;
  border: 1px solid #cfdcca;
  background: #edf4e6;
  border-radius: 9px;
  margin-top: 12px;
}
.review-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.review-controls .text-link {
  font-size: 0.75rem;
}
.demo-success {
  font-size: 0.76rem;
  line-height: 1.7;
  background: #e8efe2;
  padding: 14px;
  border-radius: 9px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.demo-success .icon {
  color: #496643;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}
/* Languages, closing, footer */
.language-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 110px;
  padding-block: 120px;
}
.language-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
}
.language-copy > .small-note {
  font-size: 0.8rem !important;
  color: #6d786e !important;
}
.language-visual {
  position: relative;
  padding: 15px 0 0;
}
.language-card {
  background: white;
  border: 1px solid #dce2d6;
  border-radius: 15px;
  padding: 23px 25px;
  box-shadow: 0 12px 30px #23332106;
  max-width: 390px;
}
.source-card {
  transform: rotate(-3deg);
}
.language-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: #5c6d59;
  margin-bottom: 14px;
}
.language-label > span {
  display: grid;
  place-items: center;
  background: #edf1e8;
  width: 32px;
  height: 26px;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 5px;
}
.language-card > p {
  font-size: 0.95rem;
  line-height: 1.75;
}
.language-card > .app-muted {
  display: block;
  margin-top: 14px;
  font-size: 0.68rem;
}
.translated-card {
  margin: 19px 0 0 57px;
  transform: rotate(2deg);
  position: relative;
  background: #edf2e9;
}
.translated-card .language-label > span {
  background: #dce6d5;
}
.translated-card .text-link {
  font-size: 0.74rem;
  margin-top: 10px;
  color: #43653f;
}
.translation-connector {
  position: absolute;
  right: 10px;
  top: 160px;
  z-index: 1;
  background: #fff;
  border: 1px solid #dce3d4;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #5a7650;
}
.language-visual > .demo-caption {
  margin-top: 28px;
}
.about-section {
  padding: 68px 0 100px;
  border-top: 1px solid var(--line);
}
.about-section > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-section h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}
.about-section div > p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
}
.closing-section {
  margin: 0 16px;
  background: #1f2933;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  padding: 82px 0 0;
}
.closing-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}
.closing-section p:not(.eyebrow) {
  font-size: 1rem;
  color: #c8d1d5;
  margin-top: 23px;
  line-height: 1.8;
}
.closing-section .button {
  margin-top: 30px;
}
.closing-wordmark {
  font-family: Manrope, sans-serif;
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 800;
  color: #ffffff0c;
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 40px 0 -10px;
  user-select: none;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 40px 0;
}
.site-footer p {
  font-size: 0.72rem;
  color: #70776f;
}
.site-footer .text-link {
  font-size: 0.75rem;
}
.site-footer .brand img {
  width: 61px;
}
.site-footer .brand > span {
  font-size: 0.7rem;
}
.noscript-note {
  padding: 20px;
  background: #faebc9;
  color: #473611;
  text-align: center;
}
/* Accessible native dialogs */
dialog {
  border: 1px solid #d5ddce;
  background: var(--paper);
  color: var(--ink);
  border-radius: 24px;
  padding: 42px;
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  overflow: auto;
  box-shadow: 0 24px 100px #0005;
}
dialog::backdrop {
  background: #13221bb3;
  backdrop-filter: blur(6px);
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 50%;
}
.dialog-close:hover {
  background: #e7ebe2;
}
.dialog-icon {
  display: grid;
  place-items: center;
  background: #e5eee0;
  color: #4b6843;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 24px;
}
dialog h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
dialog > p:not(.eyebrow) {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
}
.prototype-notice {
  padding: 16px;
  background: #ecefe7;
  color: #596b53;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 24px 0;
}
dialog .button {
  margin-top: 10px;
}
.task-dialog-description {
  font-size: 0.9rem;
  color: #596756;
  margin: 18px 0;
}
.task-dialog-metadata {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.task-dialog-metadata div {
  background: white;
  border: 1px solid #e0e5da;
  padding: 12px;
  border-radius: 8px;
}
.task-dialog-metadata dt {
  font-size: 0.7rem;
  color: #687963;
}
.task-dialog-metadata dd {
  font-size: 0.9rem;
  margin: 5px 0 0;
  font-weight: 600;
}
/* Separate review sitemap */
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.map-intro {
  padding: 75px 0 45px;
}
.map-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.map-intro > p:last-child {
  margin-top: 25px;
  color: var(--text);
  max-width: 650px;
}
.map-home {
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-radius: 17px;
  gap: 20px;
}
.map-home h2 {
  font-size: 1.7rem;
  margin: 5px 0 9px;
}
.map-home p {
  font-size: 0.85rem;
  color: #c7d3d6;
}
.map-status {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: #b4ccb5;
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.map-card {
  background: white;
  border: 1px solid #dce1d6;
  border-radius: 15px;
  padding: 24px;
  align-self: start;
}
.map-card .map-status {
  color: #5e7457;
}
.map-card h2 {
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin: 14px 0;
}
.map-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text);
}
.map-card summary {
  font-size: 0.78rem;
  cursor: pointer;
  padding: 15px 0 0;
  font-weight: 600;
}
.map-card ul {
  padding-left: 20px;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0;
}
.map-card .text-link {
  font-size: 0.75rem;
  margin-top: 15px;
}
.map-notes {
  margin: 40px 0 65px;
  background: #eaf0e5;
  padding: 28px 32px;
  border-radius: 16px;
}
.map-notes h2 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.map-notes ul {
  padding-left: 20px;
  font-size: 0.86rem;
  color: #4e6247;
  line-height: 1.9;
}
.map-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 25px 0;
  font-size: 0.73rem;
  color: #697762;
}
.map-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@keyframes bar-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 200px;
    padding-bottom: 95px;
  }
  .hero h1 {
    font-size: 5.1rem;
  }
  .hero {
    min-height: 810px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero-content {
    gap: 35px;
    width: calc(100% - 100px);
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 380px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-product {
    padding-top: 10px;
  }
  .phone {
    width: 285px;
  }
  .floating-note {
    left: -45px;
    font-size: 0.7rem;
    padding: 12px 15px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .feature-demo {
    padding: 24px 34px;
    min-height: 230px;
  }
  .feature-copy {
    padding: 28px 30px;
  }
  .feature-copy h3 {
    font-size: 1.55rem;
    min-height: 0;
  }
  .feature-copy h3 br {
    display: none;
  }
  .feature-index {
    font-size: 0.65rem;
  }
  .feature-copy .text-link {
    font-size: 0.85rem;
    justify-content: flex-start;
    gap: 12px;
  }
  .feature-copy > p {
    font-size: 0.95rem;
  }
  .mini-label {
    font-size: 0.75rem;
  }
  .mini-label > span:last-child {
    font-size: 0.61rem;
  }
  .mini-message p {
    font-size: 0.85rem;
  }
  .mini-message strong {
    font-size: 0.76rem;
  }
  .translated-label {
    font-size: 0.66rem;
  }
  .mini-task > strong {
    font-size: 0.95rem;
  }
  .mini-course strong {
    font-size: 0.85rem;
  }
  .mini-course div > span {
    font-size: 0.72rem;
  }
  .mini-task-footer {
    font-size: 0.75rem;
  }
  .mini-task-footer > span:last-child {
    font-size: 0.7rem;
  }
  .course-progress {
    font-size: 0.68rem;
  }
  .report-metrics span {
    font-size: 0.74rem;
  }
  .report-published {
    font-size: 0.74rem;
  }
  .department-strip {
    gap: 20px;
  }
  .department-strip > div {
    gap: 17px;
    font-size: 0.83rem;
  }
  .department-strip > span {
    font-size: 0.6rem;
  }
  .day-layout,
  .analysis-layout,
  .claude-layout {
    gap: 35px;
  }
  .day-stage {
    padding: 20px;
  }
  .analysis-intro {
    gap: 40px;
  }
  .language-section {
    gap: 60px;
  }
  .day-step {
    gap: 16px;
  }
  .day-step strong {
    font-size: 0.92rem;
  }
  .day-step > span > span {
    font-size: 0.75rem;
  }
  .claude-top {
    padding: 17px;
  }
  .claude-top > span:first-child {
    gap: 7px;
  }
  #claude-panel {
    padding: 20px;
  }
  .claude-switch {
    gap: 8px;
  }
  .claude-switch button {
    font-size: 0.7rem;
    padding-inline: 13px;
  }
  .about-section > div {
    gap: 50px;
  }
}
@media (max-width: 850px) {
  .site-header {
    width: calc(100% - 72px);
    gap: 20px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 0.8rem;
  }
  .brand {
    gap: 9px;
  }
  .brand > span {
    font-size: 0.72rem;
    padding-left: 9px;
  }
  .brand img {
    width: 63px;
  }
  .nav-demo {
    padding: 11px 17px;
    gap: 12px;
  }
  .hero-content {
    grid-template-columns: 1fr 0.65fr;
    width: calc(100% - 80px);
    gap: 25px;
    padding-top: 190px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero .eyebrow {
    font-size: 0.62rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-actions {
    display: grid;
    justify-content: start;
    gap: 12px;
    margin-top: 27px;
  }
  .hero-caption {
    font-size: 0.7rem;
    margin-top: 24px;
  }
  .phone {
    width: 258px;
  }
  .phone-content {
    padding-inline: 13px;
  }
  .phone-message > p {
    font-size: 0.73rem;
  }
  .phone h2 {
    font-size: 1.2rem;
  }
  .phone .app-overline {
    font-size: 0.53rem;
  }
  .floating-note {
    left: -27px;
    bottom: 22px;
    font-size: 0.65rem;
  }
  .hero {
    min-height: 740px;
  }
  .hero-bottom {
    left: 30px;
    right: 30px;
  }
  .department-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 28px 0;
  }
  .department-strip > div {
    width: 100%;
    justify-content: space-between;
    font-size: 0.85rem;
  }
  .section {
    padding-block: 85px;
  }
  .day-layout,
  .analysis-layout,
  .claude-layout,
  .language-section {
    grid-template-columns: 1fr;
  }
  .day-layout {
    gap: 30px;
  }
  .day-stage {
    max-width: 530px;
    width: 100%;
    justify-self: center;
  }
  .day-step {
    padding-block: 22px;
  }
  .day-step strong {
    font-size: 1rem;
  }
  .day-step > span > span {
    font-size: 0.82rem;
  }
  .analysis-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  .analysis-intro > p {
    max-width: 620px;
  }
  .analysis-layout {
    gap: 35px;
  }
  .analysis-question {
    font-size: 1.02rem;
  }
  .analysis-question br {
    display: none;
  }
  .analysis-note {
    max-width: none;
    margin-top: 18px;
  }
  .analysis-dashboard {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .claude-section {
    padding: 70px 0;
  }
  .claude-layout {
    gap: 40px;
  }
  .claude-copy {
    max-width: 650px;
  }
  .claude-window {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .claude-switch button {
    font-size: 0.8rem;
  }
  .claude-benefits {
    font-size: 0.86rem;
  }
  .claude-disclaimer {
    font-size: 0.75rem;
  }
  .language-section {
    gap: 45px;
  }
  .language-copy {
    grid-row: 1;
  }
  .language-visual {
    width: 100%;
    max-width: 520px;
    margin: auto;
  }
  .about-section > div {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-section div > p {
    max-width: 650px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer p {
    order: 3;
    width: 100%;
    margin-top: -10px;
  }
  .map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 25px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading.centered {
    text-align: left;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 1rem;
  }
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 2.15rem;
    line-height: 1.18;
  }
  h2 br {
    display: none;
  }
  .hero {
    margin: 10px;
    border-radius: 20px;
    min-height: 0;
  }
  .site-header {
    top: 26px;
    width: calc(100% - 48px);
    min-height: 62px;
    padding: 8px 12px 8px 20px;
    gap: 15px;
  }
  .brand img {
    width: 63px;
  }
  .brand > span {
    font-size: 0.7rem;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-demo {
    font-size: 0.74rem;
    padding: 9px 16px;
    min-height: 42px;
  }
  .nav-demo .icon {
    display: none;
  }
  .hero-photo {
    object-position: 66% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #15221ade 0%,
      #18271aa8 38%,
      #18271a35 60%,
      #18271ace 100%
    );
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 44px);
    padding: 139px 0 82px;
    align-items: flex-start;
  }
  .hero-copy {
    padding: 0;
    align-self: stretch;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 9.7vw, 3.65rem);
    letter-spacing: -0.055em;
    margin-bottom: 22px;
  }
  .hero .eyebrow {
    font-size: 0.62rem;
  }
  .hero-description {
    font-size: 0.97rem;
    max-width: 440px;
    line-height: 1.75;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 13px 22px;
    margin-top: 25px;
  }
  .hero-actions > .button {
    min-height: 49px;
    padding: 12px 20px;
    font-size: 0.85rem;
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 0.78rem;
    gap: 8px;
  }
  .play-icon {
    width: 25px;
    height: 25px;
  }
  .hero-caption {
    margin-top: 20px;
    font-size: 0.68rem;
  }
  .hero-product {
    align-self: center;
    margin: 14px 0 10px;
    padding: 0;
  }
  .phone {
    width: 278px;
    transform: rotate(2deg);
  }
  .phone h2 {
    font-size: 1.25rem;
  }
  .phone-content {
    padding: 10px 16px 16px;
  }
  .phone .app-overline {
    font-size: 0.56rem;
  }
  .phone-message > p {
    font-size: 0.77rem;
  }
  .floating-note {
    left: -24px;
    bottom: 22px;
    padding: 12px 15px;
    transform: rotate(-3deg);
  }
  .hero-bottom {
    left: 22px;
    right: 22px;
    bottom: 20px;
    font-size: 0.53rem;
    letter-spacing: 0.1em;
  }
  .department-strip {
    padding: 28px 0;
  }
  .department-strip > div {
    justify-content: flex-start;
    gap: 11px 20px;
    font-size: 0.81rem;
  }
  .department-strip > span {
    font-size: 0.6rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-card {
    border-radius: 17px;
  }
  .feature-demo {
    padding: 23px 26px;
    min-height: 225px;
  }
  .feature-copy {
    padding: 26px;
  }
  .feature-copy h3 {
    font-size: 1.6rem;
    margin: 3px 0 15px;
  }
  .feature-copy > p {
    font-size: 0.95rem;
    margin-bottom: 17px;
  }
  .feature-index {
    font-size: 0.62rem;
  }
  .mini-label {
    font-size: 0.73rem;
  }
  .mini-task {
    padding: 15px;
  }
  .mini-task > strong {
    font-size: 1rem;
  }
  .mini-message {
    padding: 14px;
  }
  .mini-message p {
    font-size: 0.83rem;
  }
  .mini-course strong {
    font-size: 0.84rem;
  }
  .report-metrics strong {
    font-size: 2.1rem;
  }
  .day-step {
    gap: 15px;
    padding: 23px 4px;
  }
  .day-step.active {
    padding-inline: 12px;
  }
  .step-time {
    font-size: 0.77rem;
  }
  .day-step strong {
    font-size: 0.93rem;
  }
  .day-step > span > span {
    font-size: 0.78rem;
  }
  .day-step .step-arrow {
    font-size: 1.15rem;
  }
  .day-stage {
    padding: 16px;
    border-radius: 18px;
  }
  .window-header {
    padding: 16px;
  }
  .window-content {
    padding: 18px;
  }
  .window-message {
    font-size: 0.86rem;
    padding: 14px;
  }
  .window-header strong {
    font-size: 0.85rem;
  }
  .window-header div > span {
    font-size: 0.68rem;
  }
  .window-content h3 {
    font-size: 1.18rem;
  }
  .window-content > p {
    font-size: 0.85rem;
  }
  .assignment-line {
    gap: 7px;
    font-size: 0.7rem;
  }
  .assignment-line > span:last-child {
    font-size: 0.66rem;
  }
  .product-window {
    min-height: 370px;
  }
  .analysis-intro {
    margin-bottom: 10px;
    gap: 22px;
  }
  .analysis-intro > p {
    font-size: 0.96rem;
  }
  .analysis-question {
    font-size: 1rem;
    gap: 14px;
  }
  .question-number {
    font-size: 0.65rem;
  }
  .analysis-question > .icon {
    width: 17px;
  }
  .analysis-note {
    font-size: 0.73rem;
  }
  .analysis-dashboard {
    border-radius: 14px;
  }
  .dashboard-top {
    padding: 17px;
    font-size: 0.76rem;
  }
  #analysis-panel {
    padding: 20px 17px;
    min-height: 340px;
  }
  .dashboard-title h3 {
    font-size: 1.05rem;
  }
  .dashboard-title p {
    font-size: 0.68rem;
  }
  .total-count {
    font-size: 1.6rem;
  }
  .bar-row {
    grid-template-columns: 68px 1fr 20px;
    gap: 9px;
    font-size: 0.76rem;
  }
  .bar-chart.actions .bar-row {
    grid-template-columns: 108px 1fr 20px;
    font-size: 0.73rem;
  }
  .bar-track {
    height: 24px;
  }
  .chart-caption {
    font-size: 0.66rem;
  }
  .dashboard-bottom {
    font-size: 0.59rem;
    padding: 12px 17px;
  }
  .related-row {
    padding: 9px;
  }
  .related-row strong {
    font-size: 0.74rem;
  }
  .related-row .status {
    font-size: 0.57rem;
    padding: 3px 6px;
  }
  .claude-section {
    margin: 0 10px;
    border-radius: 20px;
    padding: 60px 0;
  }
  .claude-section .container {
    width: calc(100% - 40px);
  }
  .claude-copy h2 {
    font-size: 2.2rem;
  }
  .claude-copy > p:not(.eyebrow):not(.claude-disclaimer) {
    font-size: 0.95rem;
    margin-top: 20px;
  }
  .claude-benefits {
    font-size: 0.77rem;
    gap: 15px;
  }
  .claude-switch {
    margin-top: 26px;
    gap: 8px;
  }
  .claude-switch button {
    font-size: 0.72rem;
    padding: 10px 13px;
  }
  .claude-disclaimer {
    font-size: 0.7rem;
  }
  .claude-top {
    font-size: 0.68rem;
    gap: 8px;
    padding: 16px;
  }
  .claude-top > span:first-child {
    gap: 7px;
  }
  .claude-top .icon {
    width: 19px;
  }
  .demo-tag {
    font-size: 0.55rem;
  }
  #claude-panel {
    padding: 20px 16px;
    min-height: 448px;
  }
  .user-question {
    font-size: 0.8rem;
    padding: 12px 14px;
    margin-left: 20px;
  }
  .assistant-answer {
    font-size: 0.83rem;
  }
  .claude-task-list .task-title {
    font-size: 0.74rem;
  }
  .claude-task-list button {
    gap: 9px;
    padding: 10px 0;
  }
  .source-id {
    font-size: 0.54rem;
  }
  .claude-footer {
    padding: 14px 16px;
    font-size: 0.6rem;
  }
  .language-section {
    gap: 37px;
  }
  .language-card {
    padding: 19px 20px;
    max-width: 95%;
  }
  .source-card {
    transform: rotate(-2deg);
  }
  .translated-card {
    margin-left: 25px;
    transform: rotate(2deg);
  }
  .language-card > p {
    font-size: 0.87rem;
  }
  .language-label {
    font-size: 0.68rem;
  }
  .translation-connector {
    right: 0;
    top: 157px;
    width: 37px;
    height: 37px;
  }
  .language-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    margin-top: 20px;
  }
  .about-section {
    padding: 45px 0 65px;
  }
  .about-section h2 {
    font-size: 1.85rem;
  }
  .about-section div > p {
    font-size: 0.93rem;
  }
  .closing-section {
    margin: 0 10px;
    border-radius: 20px;
    padding: 58px 0 0;
  }
  .closing-section h2 {
    font-size: 2.2rem;
  }
  .closing-section p:not(.eyebrow) {
    font-size: 0.94rem;
  }
  .closing-section p br {
    display: none;
  }
  .closing-wordmark {
    margin-top: 42px;
    font-size: 3.6rem;
  }
  .site-footer {
    padding: 30px 0;
    gap: 20px;
  }
  .site-footer .brand img {
    width: 55px;
  }
  .site-footer .brand > span {
    font-size: 0.65rem;
  }
  .site-footer .text-link {
    font-size: 0.68rem;
    gap: 7px;
  }
  .site-footer p {
    font-size: 0.65rem;
    margin-top: 0;
  }
  .desktop-break {
    display: none;
  }
  dialog {
    padding: 32px 25px;
  }
  dialog h2 {
    font-size: 2rem;
  }
  .task-dialog-metadata {
    gap: 10px;
  }
  .map-header {
    padding: 24px 0;
  }
  .map-header .text-link {
    font-size: 0.75rem;
  }
  .map-intro {
    padding: 50px 0 30px;
  }
  .map-home {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .map-notes {
    padding: 24px;
  }
  .map-footer {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 400px) {
  .nav-demo {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-content {
    width: calc(100% - 40px);
  }
  .phone {
    width: 255px;
  }
  .floating-note {
    left: -12px;
  }
  .phone-content {
    padding-inline: 12px;
  }
  .phone-message > p {
    font-size: 0.74rem;
  }
  .brand > span {
    font-size: 0.65rem;
  }
  .site-footer {
    align-items: flex-start;
  }
  .site-footer .text-link {
    font-size: 0.65rem;
  }
  .claude-switch {
    flex-direction: column;
    align-items: flex-start;
  }
  .claude-top > span:first-child {
    gap: 5px;
  }
  .claude-top {
    padding-inline: 12px;
    font-size: 0.63rem;
  }
  .source-id {
    display: none;
  }
  .bar-chart.actions .bar-row {
    grid-template-columns: 100px 1fr 19px;
  }
  .day-step {
    gap: 10px;
  }
  .day-step strong {
    font-size: 0.86rem;
  }
  .day-step > span > span {
    font-size: 0.74rem;
  }
  .related-row .status {
    white-space: normal;
  }
  .task-dialog-metadata {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
