@font-face {
  font-family: "Inter";
  src: url("/assets/inter-latin-variable-1f021a24.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --night: #111820;
  --night-soft: #1b2530;
  --cream: #fff6e8;
  --paper: #ffffff;
  --orange: #ff5b35;
  --blue: #5361f6;
  --blue-dark: #2d39cf;
  --lime: #d9f36a;
  --aqua: #4dd7c8;
  --ink: #111820;
  --muted: #5f6770;
  --line: rgba(17, 24, 32, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --container: 1380px;
  --gutter: clamp(24px, 4.6vw, 72px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

.landing {
  min-width: 320px;
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 7px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding-inline: 29px;
  font-size: 15px;
}

.button-orange {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.24);
}

.button-orange:hover {
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.24);
}

.button-cream {
  background: var(--cream);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 7px 0 rgba(17, 24, 32, 0.22);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker > span {
  display: block;
  width: 29px;
  height: 3px;
  background: var(--orange);
}

.kicker-on-dark,
.kicker-on-blue {
  color: rgba(255, 255, 255, 0.75);
}

.kicker-on-dark > span {
  background: var(--lime);
}

.kicker-on-blue > span {
  background: var(--ink);
}

.section-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.65fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
  margin-bottom: 72px;
}

.section-lead h2,
.features-heading h2,
.assistant-head h2,
.faq-heading h2,
.closing-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-lead > p,
.assistant-head > p,
.features-heading > p,
.faq-heading > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

/* Navigation */

.landing-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.landing-header.is-scrolled {
  position: fixed;
  background: rgba(17, 24, 32, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.is-scrolled .nav-shell {
  border-bottom-color: transparent;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 116px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 42px);
  margin-left: auto;
}

.desktop-nav a,
.nav-sign-in {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.nav-sign-in:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 900px;
  padding: 170px 0 115px;
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 37%;
  height: 12px;
  background: var(--orange);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit-one {
  top: -400px;
  left: -300px;
  width: 850px;
  height: 850px;
}

.hero-orbit-one::before {
  right: 113px;
  bottom: 82px;
  width: 18px;
  height: 18px;
  background: var(--lime);
}

.hero-orbit-two {
  right: -360px;
  bottom: -600px;
  width: 1050px;
  height: 1050px;
}

.hero-orbit-two::after {
  top: 95px;
  left: 177px;
  width: 24px;
  height: 24px;
  background: var(--orange);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(50px, 6vw, 110px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(72px, 7vw, 108px);
  font-weight: 790;
  letter-spacing: -0.078em;
  line-height: 0.87;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 630px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}

.hero-footnote {
  display: flex;
  max-width: 550px;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.5;
}

.hero-footnote-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--lime);
}

.hero-footnote-mark .icon {
  width: 17px;
  height: 17px;
}

.company-stack {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.stack-card {
  position: absolute;
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: flex-end;
  border: 2px solid var(--ink);
  border-radius: 11px;
  padding: 24px;
  color: var(--ink);
  box-shadow: 10px 11px 0 rgba(0, 0, 0, 0.26);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.stack-card:hover {
  z-index: 10;
  box-shadow: 14px 15px 0 rgba(0, 0, 0, 0.3);
}

.stack-card > span {
  position: absolute;
  top: 19px;
  left: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.stack-card > .icon {
  position: absolute;
  top: 17px;
  right: 19px;
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.stack-card strong {
  font-size: 39px;
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stack-card small {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 650;
}

.stack-talk {
  z-index: 3;
  top: 40px;
  left: 0;
  width: 265px;
  background: var(--cream);
  transform: rotate(-6deg);
}

.stack-talk:hover {
  transform: rotate(-2deg) translateY(-7px);
}

.stack-sell {
  z-index: 2;
  top: 0;
  right: 32px;
  width: 254px;
  background: var(--aqua);
  transform: rotate(5deg);
}

.stack-sell:hover {
  transform: rotate(1deg) translateY(-7px);
}

.stack-deliver {
  z-index: 5;
  top: 205px;
  right: -10px;
  width: 298px;
  background: var(--orange);
  transform: rotate(-3deg);
}

.stack-deliver:hover {
  transform: rotate(0deg) translateY(-7px);
}

.stack-run {
  z-index: 4;
  top: 232px;
  left: 38px;
  width: 280px;
  background: var(--blue);
  color: #fff;
  transform: rotate(4deg);
}

.stack-run:hover {
  transform: rotate(1deg) translateY(-7px);
}

.stack-money {
  z-index: 7;
  right: 58px;
  bottom: 35px;
  width: 280px;
  background: var(--lime);
  transform: rotate(5deg);
}

.stack-money:hover {
  transform: rotate(1deg) translateY(-7px);
}

.stack-grow {
  z-index: 6;
  bottom: 12px;
  left: -2px;
  width: 270px;
  background: #fff;
  transform: rotate(-4deg);
}

.stack-grow:hover {
  transform: rotate(-1deg) translateY(-7px);
}

.stack-stamp {
  position: absolute;
  z-index: 9;
  top: 181px;
  left: calc(50% - 72px);
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 0 8px rgba(17, 24, 32, 0.2);
  text-align: center;
  transform: rotate(8deg);
}

.stack-stamp img {
  width: 44px;
  filter: brightness(0) invert(1);
}

.stack-stamp span {
  margin-top: -19px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Module ribbon */

.module-ribbon {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--orange);
}

.module-ribbon-track {
  display: flex;
  width: max-content;
  height: 67px;
  align-items: center;
  animation: ribbon-scroll 28s linear infinite;
}

.module-ribbon-track span {
  padding-inline: 30px;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.module-ribbon-track i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes ribbon-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Operating model */

.operating-section {
  padding: 140px 0;
  background: var(--cream);
}

.operating-lead > p {
  color: #596069;
}

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

.operating-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 31px;
  box-shadow: 8px 9px 0 var(--ink);
}

.operating-card-orange {
  background: var(--orange);
}

.operating-card-blue {
  background: var(--blue);
  color: #fff;
}

.operating-card-lime {
  background: var(--lime);
}

.operating-index {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operating-icon {
  display: grid;
  width: 65px;
  height: 65px;
  margin: 63px 0 37px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.operating-icon .icon {
  width: 27px;
  height: 27px;
}

.operating-card h3 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.operating-card p {
  max-width: 380px;
  margin: 25px 0 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
}

.operating-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 45px;
}

.operating-apps span {
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 740;
}

/* Product tour */

.product-section {
  padding: 140px 0 128px;
  background: #fff;
}

.product-lead > p {
  color: var(--muted);
}

.product-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 56px;
  border-block: 1px solid var(--line);
}

.product-principles > span {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 20px 26px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.product-principles > span + span {
  border-left: 1px solid var(--line);
}

.product-principles .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.product-principles strong {
  color: var(--ink);
}

.product-story {
  border-radius: 9px;
  box-shadow: 12px 14px 0 rgba(17, 24, 32, 0.12);
}

.product-story-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 9px 9px 0 0;
  background: var(--night);
}

.product-story-tabs button {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 0;
  padding: 0 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 710;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.product-story-tabs button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.product-story-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: transparent;
  content: "";
}

.product-story-tabs button:hover {
  background: var(--night-soft);
  color: #fff;
}

.product-story-tabs button:focus-visible {
  z-index: 1;
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--lime);
}

.product-story-tabs button.is-active {
  background: #fff;
  color: var(--ink);
}

.product-story-tabs button.is-active::after {
  background: var(--orange);
}

.product-story-tabs button span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.product-story-panel {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(245px, 0.28fr) minmax(0, 1fr);
  border: 2px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: var(--cream);
}

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

.product-story-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 2px solid var(--ink);
  padding: 49px 38px 42px;
  background: var(--night);
  color: #fff;
}

.product-story-number {
  color: var(--lime);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-story-copy h3 {
  margin: 54px 0 0;
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-story-copy > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.65;
}

.product-story-copy ul {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 45px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.product-story-copy li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.product-story-copy li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.product-ui-frame {
  min-width: 0;
  align-self: stretch;
  margin: 20px;
  overflow: hidden;
  border: 1px solid #cfd3d7;
  border-radius: 9px;
  background: #f5f5f3;
  box-shadow: 0 18px 45px rgba(17, 24, 32, 0.12);
  color: var(--ink);
}

.product-ui-frame .icon {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

.product-ui-topbar {
  display: flex;
  height: 56px;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  border-bottom: 1px solid #dcdfdf;
  background: #fff;
}

.product-ui-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.product-ui-logo img {
  width: 24px;
  height: 24px;
}

.product-ui-search {
  display: flex;
  width: min(330px, 43%);
  min-height: 34px;
  align-items: center;
  gap: 8px;
  margin-inline: auto;
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 0 10px;
  color: #7a8188;
  font-size: 10px;
}

.product-ui-search kbd {
  margin-left: auto;
  border: 1px solid #d8dadd;
  border-radius: 4px;
  padding: 2px 5px;
  background: #f5f5f4;
  font-family: inherit;
  font-size: 9px;
}

.product-ui-breadcrumb {
  margin-right: auto;
  color: #656c73;
  font-size: 10px;
}

.product-ui-breadcrumb b {
  padding-inline: 7px;
  color: #b2b6ba;
}

.product-ui-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 9px;
  font-weight: 850;
}

.product-ui-shell {
  display: grid;
  min-height: 592px;
  grid-template-columns: 152px minmax(0, 1fr);
}

.product-ui-sidebar {
  padding: 20px 12px;
  border-right: 1px solid #dcdfdf;
  background: #fff;
}

.product-ui-sidebar > strong {
  display: block;
  margin: 0 9px 18px;
  font-size: 11px;
}

.product-ui-sidebar > small {
  display: block;
  margin: 25px 9px 8px;
  color: #9a9fa4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-ui-sidebar nav {
  display: grid;
  gap: 3px;
}

.product-ui-sidebar nav span {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  padding: 0 9px;
  color: #626a72;
  font-size: 9px;
  font-weight: 620;
}

.product-ui-sidebar nav span.is-current {
  background: #fff0e9;
  color: #b63d20;
  font-weight: 760;
}

.product-ui-main {
  min-width: 0;
  padding: 27px;
}

.product-ui-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 23px;
}

.product-ui-heading small {
  color: #9a9fa4;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.09em;
}

.product-ui-heading h4 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 740;
  letter-spacing: -0.045em;
}

.product-ui-heading button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  padding: 0 12px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 750;
}

.day-focus-grid,
.finance-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.day-focus-card,
.finance-summary > div {
  min-height: 104px;
  border: 1px solid rgba(17, 24, 32, 0.15);
  border-radius: 7px;
  padding: 15px;
  background: #fff;
}

.day-focus-card > span,
.finance-summary span {
  display: block;
  color: #5f6770;
  font-size: 8px;
  font-weight: 700;
}

.day-focus-card > strong,
.finance-summary strong {
  display: block;
  margin-top: 7px;
  font-size: 26px;
  font-weight: 770;
  letter-spacing: -0.05em;
  line-height: 1;
}

.day-focus-card > small,
.finance-summary small {
  display: block;
  margin-top: 9px;
  color: #757c83;
  font-size: 8px;
}

.focus-orange {
  border-top: 4px solid var(--orange);
}

.focus-blue {
  border-top: 4px solid var(--blue);
}

.focus-lime {
  border-top: 4px solid #adce2a;
}

.day-work-grid,
.finance-work-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  margin-top: 10px;
}

.ui-panel {
  overflow: hidden;
  border: 1px solid #dedfdf;
  border-radius: 7px;
  background: #fff;
}

.ui-panel-head {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid #eaebeb;
}

.ui-panel-head strong {
  font-size: 9px;
}

.ui-panel-head span {
  color: #6770dc;
  font-size: 8px;
  font-weight: 700;
}

.agenda-row,
.task-line {
  display: grid;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid #eef0f0;
}

.agenda-row {
  grid-template-columns: 42px 5px 1fr;
  gap: 9px;
  padding: 0 13px;
}

.agenda-row time {
  color: #767d84;
  font-size: 8px;
}

.agenda-row > i {
  width: 4px;
  height: 31px;
  border-radius: 4px;
}

.agenda-blue {
  background: var(--blue);
}

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

.agenda-lime {
  background: #a9ca21;
}

.agenda-row strong,
.task-line strong {
  display: block;
  font-size: 9px;
}

.agenda-row small,
.task-line small {
  display: block;
  margin-top: 4px;
  color: #8a9096;
  font-size: 8px;
}

.task-line {
  grid-template-columns: 12px 1fr auto;
  gap: 9px;
  padding: 0 13px;
}

.task-line > i {
  width: 11px;
  height: 11px;
  border: 1px solid #aeb3b7;
  border-radius: 50%;
}

.status-pill,
.finance-status {
  border-radius: 100px;
  padding: 4px 7px;
  background: #eff0f1;
  color: #626970;
  font-size: 7px;
  font-weight: 760;
}

.status-warn,
.status-review {
  background: #fff0e9;
  color: #b9472b;
}

.status-blue {
  background: #eef0ff;
  color: #4452cc;
}

.crm-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 13px;
}

.crm-toolbar span {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  border: 1px solid #d9dcde;
  border-radius: 5px;
  padding: 0 10px;
  background: #fff;
  color: #747b82;
  font-size: 8px;
}

.crm-toolbar span:first-child {
  flex: 1;
}

.crm-board,
.project-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.crm-column,
.project-column {
  min-width: 0;
  border-radius: 7px;
  background: #e9eae9;
  padding: 10px;
}

.crm-column-head,
.project-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 0 2px;
}

.crm-column-head strong,
.project-column-head strong {
  font-size: 9px;
}

.crm-column-head span,
.project-column-head span {
  color: #81878c;
  font-size: 7px;
}

.crm-column article,
.project-column article {
  margin-top: 8px;
  border: 1px solid #dadcdd;
  border-radius: 6px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(17, 24, 32, 0.04);
}

.crm-column article > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-column article strong,
.project-column article > strong {
  font-size: 9px;
}

.crm-column article > small,
.project-column article > small {
  display: block;
  margin-top: 9px;
  color: #858b90;
  font-size: 8px;
}

.crm-column article footer,
.project-column article footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: #747b81;
  font-size: 8px;
}

.crm-column article footer b {
  color: var(--ink);
}

.crm-column article footer span,
.project-column article footer i,
.project-meta i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: #fff;
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.company-dot,
.merchant-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 5px;
  color: var(--ink);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.dot-orange {
  background: #ffd6ca;
}

.dot-aqua {
  background: #c9f4ef;
}

.dot-blue {
  background: #d7daff;
}

.dot-lime {
  background: #ecf9b6;
}

.dot-night {
  background: var(--night);
  color: #fff;
}

.crm-card-highlight,
.project-card-active {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 2px rgba(83, 97, 246, 0.12) !important;
}

.project-meta {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 20px;
  margin-bottom: 13px;
  border-block: 1px solid #dedfdf;
  color: #81878d;
  font-size: 8px;
}

.project-meta b {
  color: var(--ink);
}

.project-meta > div {
  display: flex;
  margin-left: auto;
}

.project-meta i + i {
  margin-left: -5px;
  border: 2px solid #f5f5f3;
}

.task-tag {
  display: inline-flex;
  border-radius: 100px;
  padding: 4px 7px;
  font-size: 7px;
  font-weight: 750;
}

.tag-purple {
  background: #f0ebff;
  color: #704cb9;
}

.tag-orange {
  background: #fff0e9;
  color: #b9472b;
}

.tag-blue {
  background: #e9ecff;
  color: #4452cc;
}

.tag-lime {
  background: #eff8c9;
  color: #657918;
}

.project-column article > strong {
  display: block;
  margin-top: 10px;
  line-height: 1.4;
}

.project-column article footer span {
  color: #858b90;
}

.finance-summary > div {
  min-height: 96px;
}

.finance-summary strong {
  font-size: 21px;
}

.finance-work-grid {
  grid-template-columns: 1fr 190px;
}

.finance-row {
  display: grid;
  min-height: 56px;
  grid-template-columns: 1.5fr 0.8fr 0.7fr 0.6fr;
  gap: 8px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #eceeee;
  color: #71787e;
  font-size: 8px;
}

.finance-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 650;
}

.finance-row > strong {
  color: var(--ink);
  font-size: 8px;
  text-align: right;
}

.finance-header {
  min-height: 32px;
  background: #f8f8f7;
  color: #9a9fa4;
  font-size: 7px;
  font-weight: 760;
}

.finance-header > span:first-child {
  color: #9a9fa4;
}

.merchant-icon {
  width: 23px;
  height: 23px;
  background: #eef0f1;
}

.status-paid,
.status-received {
  background: #e8f7ec;
  color: #397546;
}

.company-side-cards {
  display: grid;
  gap: 10px;
}

.company-side-cards article {
  border: 1px solid #dedfdf;
  border-radius: 7px;
  padding: 16px;
  background: #fff;
}

.company-side-cards article > span {
  color: #7c8389;
  font-size: 8px;
}

.company-side-cards article > strong {
  display: block;
  margin-top: 12px;
  font-size: 17px;
}

.company-side-cards article > small {
  display: block;
  margin-top: 7px;
  color: #858b90;
  font-size: 8px;
  line-height: 1.45;
}

.progress-line {
  height: 5px;
  margin-top: 19px;
  overflow: hidden;
  border-radius: 5px;
  background: #eceeee;
}

.progress-line i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.progress-lime i {
  width: 74%;
  background: #a9ca21;
}

.product-story-panel .product-ui-frame {
  position: relative;
  min-height: 0;
  align-self: center;
  aspect-ratio: 16 / 9;
  background: #f5f5f3;
}

.product-ui-frame > :not(.real-product-image) {
  display: none;
}

.real-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.product-ui-frame::after,
.assistant-workspace::after {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(17, 24, 32, 0.18);
  border-radius: 100px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  content: "REAL CREEWS APP";
  font-size: 7px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

/* Assistant */

.assistant-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.assistant-section::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.assistant-symbol {
  position: absolute;
  top: 78px;
  right: -88px;
  display: grid;
  width: 295px;
  height: 295px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  opacity: 0.72;
}

.assistant-symbol img {
  width: 95px;
  filter: brightness(0) invert(1);
}

.assistant-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(55px, 10vw, 180px);
  align-items: end;
}

.assistant-head h2 {
  font-size: clamp(60px, 7.1vw, 104px);
}

.assistant-head > p {
  color: rgba(255, 255, 255, 0.74);
}

.assistant-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: 175px minmax(0, 1fr) 300px;
  margin-top: 83px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 12px 14px 0 rgba(17, 24, 32, 0.26);
  color: var(--ink);
}

.assistant-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid #dfe1e3;
  padding: 22px 13px;
  background: #f7f7f5;
}

.assistant-rail-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 8px 22px;
  font-size: 11px;
}

.assistant-rail-brand img {
  width: 25px;
  height: 25px;
}

.assistant-rail nav {
  display: grid;
  gap: 4px;
}

.assistant-rail nav span {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  border-radius: 5px;
  padding: 0 10px;
  color: #656c73;
  font-size: 9px;
  font-weight: 650;
}

.assistant-rail nav span.is-current {
  background: var(--night);
  color: #fff;
}

.assistant-rail nav b {
  margin-left: auto;
  border-radius: 100px;
  padding: 2px 6px;
  background: #e4e6e7;
  color: #5c646a;
  font-size: 7px;
}

.assistant-rail nav .approval-count {
  background: var(--orange);
  color: var(--ink);
}

.assistant-rail .icon {
  width: 14px;
  height: 14px;
}

.assistant-rail-foot {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 16px 10px 2px;
  border-top: 1px solid #dddfdf;
}

.assistant-rail-foot span,
.assistant-rail-foot small {
  color: #858b91;
  font-size: 7px;
}

.assistant-rail-foot strong {
  margin: 5px 0;
  font-size: 9px;
}

.assistant-conversation {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid #dfe1e3;
}

.assistant-conversation-head {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid #e1e3e4;
}

.assistant-conversation-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assistant-conversation-head strong {
  font-size: 10px;
}

.assistant-conversation-head > span {
  color: #6870dc;
  font-size: 8px;
  font-weight: 700;
}

.assistant-online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6aaa4d;
  box-shadow: 0 0 0 3px #e8f5e3;
}

.assistant-thread {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 30px 28px 20px;
  background: #fbfbfa;
}

.assistant-user-message,
.assistant-response {
  display: grid;
  gap: 13px;
}

.assistant-user-message {
  grid-template-columns: 28px 1fr;
  align-self: end;
  max-width: 86%;
}

.assistant-user-message > span,
.assistant-response-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 8px;
  font-weight: 800;
}

.assistant-user-message p {
  margin: 0;
  border-radius: 8px 8px 2px 8px;
  padding: 13px 15px;
  background: #eceef0;
  font-size: 10px;
  line-height: 1.6;
}

.assistant-response {
  grid-template-columns: 28px 1fr;
  margin-top: 28px;
}

.assistant-response-mark {
  background: var(--blue);
  color: #fff;
}

.assistant-response-mark .icon {
  width: 14px;
  height: 14px;
}

.assistant-response p {
  max-width: 510px;
  margin: 3px 0 0;
  color: #555e66;
  font-size: 10px;
  line-height: 1.65;
}

.assistant-response p strong {
  color: var(--ink);
}

.assistant-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 17px;
}

.assistant-result-grid article {
  border: 1px solid #dfe1e2;
  border-radius: 7px;
  padding: 13px;
  background: #fff;
}

.assistant-result-grid article > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6e757c;
  font-size: 7px;
  font-weight: 760;
  text-transform: uppercase;
}

.assistant-result-grid .icon {
  width: 12px;
  height: 12px;
  color: var(--blue);
}

.assistant-result-grid strong,
.assistant-result-grid small {
  display: block;
}

.assistant-result-grid strong {
  margin-top: 10px;
  font-size: 10px;
}

.assistant-result-grid small {
  margin-top: 5px;
  color: #858b90;
  font-size: 7px;
  line-height: 1.45;
}

.assistant-prepared {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
  border: 1px solid #dfe1e2;
  border-radius: 7px;
  padding: 11px;
  background: #fff;
}

.assistant-prepared > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: #eef0ff;
  color: var(--blue);
}

.assistant-prepared .icon {
  width: 14px;
  height: 14px;
}

.assistant-prepared strong,
.assistant-prepared small {
  display: block;
}

.assistant-prepared strong {
  font-size: 8px;
}

.assistant-prepared small {
  margin-top: 4px;
  color: #858b90;
  font-size: 7px;
}

.assistant-prepared > b {
  border-radius: 100px;
  padding: 4px 7px;
  background: #e9f6e4;
  color: #4f7c3d;
  font-size: 7px;
}

.assistant-composer {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border: 1px solid #cacdd0;
  border-radius: 8px;
  padding: 0 8px 0 14px;
  background: #fff;
  color: #8b9197;
  font-size: 9px;
  box-shadow: 0 5px 16px rgba(17, 24, 32, 0.08);
}

.assistant-composer > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assistant-composer .icon {
  width: 15px;
  height: 15px;
}

.assistant-composer b {
  border-radius: 5px;
  padding: 8px 11px;
  background: var(--night);
  color: #fff;
  font-size: 8px;
}

.approval-panel {
  padding: 25px 22px;
  background: var(--cream);
}

.approval-panel-head span,
.approval-panel-head strong {
  display: block;
}

.approval-panel-head span {
  color: #a34a31;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approval-panel-head strong {
  margin-top: 5px;
  font-size: 10px;
}

.approval-action-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-top: 45px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
}

.approval-action-icon .icon {
  width: 20px;
  height: 20px;
}

.approval-panel h3 {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.approval-panel > p {
  margin: 15px 0 0;
  color: #636a71;
  font-size: 9px;
  line-height: 1.6;
}

.approval-panel dl {
  margin: 31px 0 0;
  border-top: 1px solid rgba(17, 24, 32, 0.16);
}

.approval-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.16);
  font-size: 8px;
}

.approval-panel dt {
  color: #777e84;
}

.approval-panel dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.approval-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 31px;
  text-align: center;
}

.approval-buttons span,
.approval-buttons strong {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 8px;
}

.approval-buttons strong {
  background: var(--ink);
  color: #fff;
}

.assistant-workspace {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.assistant-workspace > :not(.assistant-real-image) {
  display: none;
}

.assistant-real-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.assistant-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.assistant-flow article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 31px 35px 0 0;
}

.assistant-flow article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  padding-left: 35px;
}

.assistant-flow article > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.assistant-flow h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.assistant-flow p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

/* Feature index */

.features-section {
  padding: 140px 0 150px;
  background: var(--night);
  color: #fff;
}

.features-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.45fr);
  gap: 40px 120px;
  align-items: end;
  margin-bottom: 84px;
}

.features-heading .kicker,
.features-heading h2 {
  grid-column: 1;
}

.features-heading .kicker {
  margin-bottom: -11px;
}

.features-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: rgba(255, 255, 255, 0.58);
}

.feature-index {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-row {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.feature-row summary {
  display: grid;
  min-height: 104px;
  grid-template-columns: 62px minmax(240px, 0.8fr) minmax(300px, 1fr) 32px;
  gap: 20px;
  align-items: center;
  transition: color 160ms ease;
}

.feature-row summary:hover {
  color: var(--lime);
}

.feature-number {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-row summary strong {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 690;
  letter-spacing: -0.04em;
}

.feature-preview {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-align: right;
}

.feature-row summary i,
.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-row summary i::before,
.feature-row summary i::after,
.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.feature-row summary i::after,
.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.feature-row[open] summary {
  color: var(--lime);
}

.feature-row[open] summary i::after,
.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%);
}

.feature-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 40px 100px;
  margin-bottom: 22px;
  padding: 45px 55px 48px 82px;
  border-radius: 7px;
  background: var(--cream);
  color: var(--ink);
}

.feature-body > p {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.feature-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-body li {
  position: relative;
  padding-left: 18px;
  color: #4d555d;
  font-size: 13px;
  line-height: 1.5;
}

.feature-body li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.feature-body small {
  grid-column: 2;
  color: #71777d;
  font-size: 11px;
}

/* FAQ */

.faq-section {
  padding: 140px 0;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(65px, 11vw, 180px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.faq-heading > p {
  max-width: 440px;
  margin-top: 30px;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: grid;
  min-height: 87px;
  grid-template-columns: 1fr 30px;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  font-weight: 690;
  letter-spacing: -0.025em;
}

.faq-list details[open] summary {
  color: var(--blue-dark);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 50px 0 0;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Closing and footer */

.closing-section {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--orange);
}

.closing-section::after {
  position: absolute;
  right: -120px;
  bottom: -265px;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(17, 24, 32, 0.24);
  border-radius: 50%;
  content: "";
}

.closing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.closing-label {
  padding-top: 19px;
  border-top: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.closing-copy h2 {
  font-size: clamp(62px, 7.8vw, 116px);
}

.closing-copy .kicker > span {
  background: var(--ink);
}

.closing-copy > p {
  max-width: 630px;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.6;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.closing-actions > a:not(.button) {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 720;
}

.site-footer {
  padding: 82px 0 32px;
  background: var(--night);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  padding-bottom: 83px;
}

.footer-brand img {
  width: 148px;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(68px, 8vw, 88px);
  }

  .company-stack {
    min-height: 580px;
    transform: scale(0.9);
    transform-origin: center;
  }

  .stack-sell {
    right: 0;
  }

  .stack-deliver {
    right: -15px;
  }

  .operating-card {
    min-height: 555px;
    padding: 27px;
  }

  .operating-card h3 {
    font-size: 43px;
  }

  .product-story-panel {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .product-story-copy {
    padding: 39px 27px 34px;
  }

  .product-story-copy h3 {
    margin-top: 42px;
  }

  .product-ui-frame {
    margin: 14px;
  }

  .product-ui-shell {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .product-ui-main {
    padding: 20px;
  }

  .assistant-workspace {
    grid-template-columns: 145px minmax(0, 1fr) 250px;
  }

  .assistant-rail {
    padding-inline: 9px;
  }

  .assistant-thread {
    padding: 25px 20px 18px;
  }

  .approval-panel {
    padding: 23px 18px;
  }

  .feature-row summary {
    grid-template-columns: 50px minmax(240px, 0.9fr) minmax(260px, 1fr) 32px;
  }

  .feature-body {
    gap: 40px 55px;
    padding-left: 50px;
  }
}

@media (max-width: 920px) {
  :root {
    --gutter: clamp(20px, 5vw, 42px);
  }

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

  .nav-shell {
    height: 74px;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 34px var(--gutter) max(34px, env(safe-area-inset-bottom));
    background: var(--night);
    color: #fff;
  }

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

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    font-size: clamp(25px, 5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 35px;
  }

  .hero {
    min-height: 0;
    padding: 145px 0 94px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 76px;
  }

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

  .hero-copy h1 {
    font-size: clamp(72px, 14vw, 112px);
  }

  .company-stack {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    transform: none;
  }

  .stack-card {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 190px;
    transform: none;
  }

  .stack-card:hover,
  .stack-talk:hover,
  .stack-sell:hover,
  .stack-deliver:hover,
  .stack-run:hover,
  .stack-money:hover,
  .stack-grow:hover {
    transform: translateY(-4px);
  }

  .stack-stamp {
    top: calc(50% - 63px);
    left: calc(50% - 63px);
    width: 126px;
    height: 126px;
  }

  .section-lead,
  .assistant-head,
  .features-heading,
  .faq-layout,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-lead {
    align-items: start;
  }

  .section-lead > p,
  .assistant-head > p,
  .features-heading > p {
    max-width: 650px;
  }

  .operating-cards {
    grid-template-columns: 1fr;
  }

  .operating-card {
    min-height: 480px;
  }

  .operating-icon {
    margin: 45px 0 30px;
  }

  .product-principles > span {
    min-height: 92px;
    padding-inline: 18px;
  }

  .product-story-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-story-tabs button:nth-child(3) {
    border-left: 0;
  }

  .product-story-tabs button:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .product-story-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-story-copy {
    min-height: 350px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    padding: 42px;
  }

  .product-story-copy h3 {
    max-width: 600px;
    margin-top: 34px;
  }

  .product-story-copy > p {
    max-width: 600px;
  }

  .product-story-copy ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .product-ui-frame {
    min-height: 610px;
    margin: 18px;
  }

  .product-ui-shell {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .assistant-workspace {
    min-height: 0;
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .assistant-conversation {
    border-right: 0;
  }

  .approval-panel {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 70px minmax(180px, 0.8fr) minmax(250px, 1.2fr);
    gap: 22px;
    align-items: center;
    border-top: 1px solid #dfe1e3;
    padding: 24px 28px;
  }

  .approval-panel-head {
    grid-column: 1 / -1;
  }

  .approval-action-icon {
    margin-top: 0;
  }

  .approval-panel h3 {
    margin-top: 0;
  }

  .approval-panel dl {
    margin-top: 0;
  }

  .approval-actions {
    grid-column: 2 / -1;
  }

  .assistant-symbol {
    top: 20px;
  }

  .assistant-head {
    align-items: start;
  }

  .assistant-flow {
    grid-template-columns: 1fr;
  }

  .assistant-flow article,
  .assistant-flow article + article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .features-heading .kicker,
  .features-heading h2,
  .features-heading > p {
    grid-column: 1;
    grid-row: auto;
  }

  .features-heading .kicker {
    margin-bottom: -10px;
  }

  .feature-row summary {
    grid-template-columns: 45px 1fr 32px;
  }

  .feature-preview {
    display: none;
  }

  .feature-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 42px;
  }

  .feature-body small {
    grid-column: 1;
  }

  .faq-heading {
    position: static;
  }

  .closing-label {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

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

  .hero {
    padding-top: 124px;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 18vw, 78px);
    line-height: 0.9;
  }

  .hero-copy > p {
    margin-top: 29px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-footnote {
    align-items: flex-start;
  }

  .company-stack {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
  }

  .stack-card {
    min-height: 155px;
    padding: 17px;
    box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.28);
  }

  .stack-card > span {
    top: 14px;
    left: 15px;
    font-size: 10px;
  }

  .stack-card > .icon {
    top: 13px;
    right: 14px;
    width: 22px;
    height: 22px;
  }

  .stack-card strong {
    font-size: 29px;
  }

  .stack-card small {
    font-size: 10px;
    line-height: 1.4;
  }

  .stack-stamp {
    display: none;
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }

  .module-ribbon-track {
    height: 57px;
  }

  .module-ribbon-track span {
    padding-inline: 21px;
    font-size: 16px;
  }

  .operating-section,
  .product-section,
  .assistant-section,
  .features-section,
  .faq-section {
    padding-block: 90px;
  }

  .section-lead {
    margin-bottom: 48px;
  }

  .section-lead h2,
  .features-heading h2,
  .faq-heading h2 {
    font-size: clamp(43px, 13.5vw, 62px);
  }

  .section-lead > p,
  .assistant-head > p,
  .features-heading > p,
  .faq-heading > p {
    font-size: 15px;
  }

  .operating-card {
    min-height: 435px;
    padding: 23px;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .operating-icon {
    width: 57px;
    height: 57px;
    margin: 39px 0 27px;
  }

  .operating-card h3 {
    font-size: 41px;
  }

  .product-principles {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .product-principles > span {
    min-height: 69px;
    justify-content: flex-start;
    padding: 17px 8px;
    text-align: left;
  }

  .product-principles > span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-story {
    box-shadow: 6px 7px 0 rgba(17, 24, 32, 0.12);
  }

  .product-story-tabs button {
    min-height: 61px;
    gap: 8px;
    padding: 0 13px;
    font-size: 11px;
  }

  .product-story-tabs button span {
    font-size: 8px;
  }

  .product-story-copy {
    min-height: 0;
    padding: 31px 23px 29px;
  }

  .product-story-copy h3 {
    margin-top: 26px;
    font-size: 38px;
  }

  .product-story-copy > p {
    font-size: 13px;
  }

  .product-story-copy ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
  }

  .product-ui-frame {
    min-height: 0;
    margin: 9px;
    border-radius: 6px;
  }

  .product-ui-topbar {
    height: 49px;
    justify-content: space-between;
    padding-inline: 13px;
  }

  .product-ui-search,
  .product-ui-breadcrumb {
    display: none;
  }

  .product-ui-shell {
    min-height: 510px;
    grid-template-columns: 1fr;
  }

  .product-ui-sidebar {
    display: none;
  }

  .product-ui-main {
    padding: 15px;
  }

  .product-ui-heading {
    align-items: flex-start;
    margin-bottom: 17px;
  }

  .product-ui-heading h4 {
    font-size: 19px;
  }

  .product-ui-heading button {
    min-height: 32px;
    padding-inline: 9px;
  }

  .day-focus-grid,
  .finance-summary {
    grid-template-columns: 1fr 1fr;
  }

  .day-focus-grid > :last-child,
  .finance-summary > :last-child {
    grid-column: 1 / -1;
  }

  .day-focus-card,
  .finance-summary > div {
    min-height: 90px;
    padding: 12px;
  }

  .day-focus-card > strong,
  .finance-summary strong {
    font-size: 22px;
  }

  .day-work-grid,
  .finance-work-grid {
    grid-template-columns: 1fr;
  }

  .crm-board,
  .project-board {
    display: flex;
    padding-bottom: 6px;
  }

  .crm-column,
  .project-column {
    min-width: 190px;
  }

  .crm-toolbar span:not(:first-child) {
    display: none;
  }

  .project-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-block: 8px;
  }

  .project-meta > div {
    margin-left: 0;
  }

  .finance-row {
    grid-template-columns: 1.4fr 0.7fr 0.6fr;
  }

  .finance-row > :nth-child(2) {
    display: none;
  }

  .company-side-cards {
    grid-template-columns: 1fr 1fr;
  }

  .assistant-head h2 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .assistant-symbol {
    right: -150px;
  }

  .assistant-workspace {
    grid-template-columns: 1fr;
    margin-top: 55px;
    box-shadow: 6px 7px 0 rgba(17, 24, 32, 0.26);
  }

  .assistant-rail {
    display: none;
  }

  .assistant-conversation-head {
    min-height: 54px;
    padding-inline: 15px;
  }

  .assistant-thread {
    padding: 23px 14px 16px;
  }

  .assistant-user-message {
    max-width: 96%;
  }

  .assistant-result-grid {
    grid-template-columns: 1fr;
  }

  .assistant-prepared {
    grid-template-columns: 30px 1fr;
  }

  .assistant-prepared > b {
    grid-column: 2;
    width: max-content;
  }

  .assistant-composer {
    margin-top: 22px;
  }

  .approval-panel {
    display: block;
    padding: 27px 22px;
  }

  .approval-action-icon {
    margin-top: 30px;
  }

  .approval-panel h3 {
    margin-top: 18px;
  }

  .approval-panel dl {
    margin-top: 25px;
  }

  .approval-actions {
    margin-top: 22px;
  }

  .features-heading {
    margin-bottom: 56px;
  }

  .feature-row summary {
    min-height: 89px;
    grid-template-columns: 33px 1fr 28px;
    gap: 12px;
  }

  .feature-row summary strong {
    font-size: 20px;
    line-height: 1.15;
  }

  .feature-body {
    margin-inline: calc(var(--gutter) * -0.25);
    padding: 30px 24px 34px;
  }

  .feature-body ul {
    grid-template-columns: 1fr;
    gap: 11px;
  }

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

  .closing-section {
    padding-block: 90px;
  }

  .closing-copy h2 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .closing-copy > p {
    font-size: 16px;
  }

  .closing-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer {
    padding-top: 67px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-bottom: 60px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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