:root {
  --paper: #fbfcfd;
  --paper-warm: #f7f7f5;
  --white: #ffffff;
  --mist: #edf5fa;
  --ice: #dcecf7;
  --blue: #6f9fc2;
  --blue-deep: #4f7fa3;
  --ink: #33444f;
  --graphite: #555d63;
  --line: rgba(90, 119, 139, 0.2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 72px));
  --radius: 6px;
  --shadow: 0 24px 60px rgba(53, 78, 94, 0.1);
}

* {
  box-sizing: border-box;
}

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

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

section[id],
#assistant-prices {
  scroll-margin-top: 84px;
}

#assistant-prices:target {
  outline: none;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(50, 75, 92, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  height: auto;
}

.wordmark {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.wordmark-pro {
  color: var(--blue);
}

.wordmark-assistant {
  color: #54565a;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--graphite);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 196px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  box-shadow: 0 12px 30px rgba(79, 127, 163, 0.2);
  transform: translateY(-2px);
}

.button--small {
  min-width: 184px;
  min-height: 44px;
  padding: 0 17px;
  font-size: 13px;
  white-space: nowrap;
}

.button span {
  margin-left: 24px;
  font-size: 17px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(470px, 47%) 1fr;
  min-height: 760px;
  padding-top: 84px;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  width: min(590px, calc(100% - 36px));
  margin-right: 0;
  padding: 64px 28px 70px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 40px;
  height: 1px;
  content: "";
  background: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  color: #3d586b;
  font-size: clamp(52px, 4.8vw, 74px);
  line-height: 0.98;
}

h2 {
  color: #3f596b;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 480px;
  margin-bottom: 38px;
  color: var(--graphite);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-proof,
.mobile-offer {
  display: none;
}

.text-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: 13px;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-deep);
}

.hero-visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  display: none;
}

.hero-visual > .hero-monogram {
  position: relative;
  z-index: 2;
  width: min(72%, 590px);
  height: auto;
  overflow: visible;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.signals {
  padding: 124px 0 132px;
  background:
    radial-gradient(circle at 8% 18%, rgba(205, 230, 245, 0.45), transparent 24%),
    #f4f8fa;
}

.signals-heading,
.scenarios-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.35fr 0.85fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 68px;
}

.signals-heading .eyebrow,
.scenarios-heading .eyebrow {
  margin-top: 14px;
}

.signals-heading h2,
.scenarios-heading h2 {
  margin-bottom: 0;
}

.signals-heading > p:last-child,
.scenarios-heading > p:last-child {
  margin-top: 17px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.signals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.signals-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 148px;
  padding: 30px 36px 28px 0;
  border-bottom: 1px solid var(--line);
}

.signals-list li:nth-child(odd) {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.signals-list li:nth-child(even) {
  padding-left: 42px;
}

.signals-list li > span {
  padding-top: 6px;
  color: var(--blue);
  font: 14px/1 var(--serif);
}

.signals-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font: 400 25px/1.2 var(--serif);
}

.signals-list p {
  max-width: 430px;
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.principles {
  padding: 128px 0 140px;
  background:
    radial-gradient(circle at 91% 16%, rgba(216, 235, 247, 0.45), transparent 26%),
    var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

.section-heading .eyebrow {
  margin-top: 13px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-card {
  position: relative;
  min-height: 360px;
  padding: 46px 42px 40px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card:hover {
  background: linear-gradient(145deg, rgba(232, 243, 250, 0.58), rgba(255, 255, 255, 0));
  transform: translateY(-5px);
}

.card-number {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 14px;
}

.line-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 45px 0 40px;
  place-items: center;
  border: 1px solid rgba(102, 153, 188, 0.55);
  border-radius: 50%;
}

.line-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3,
.change-row h3,
.timeline h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.principle-card h3 {
  max-width: 260px;
  margin-bottom: 18px;
}

.principle-card p {
  max-width: 275px;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.automation {
  position: relative;
  padding: 132px 0 140px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(126, 179, 214, 0.27), transparent 28%),
    radial-gradient(circle at 8% 94%, rgba(96, 151, 187, 0.2), transparent 30%),
    linear-gradient(135deg, #223844, #385d73);
}

.automation::before,
.automation::after {
  position: absolute;
  border: 1px solid rgba(210, 234, 247, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.automation::before {
  top: -360px;
  right: -270px;
  width: 760px;
  height: 760px;
}

.automation::after {
  bottom: -460px;
  left: -260px;
  width: 720px;
  height: 720px;
}

.automation > .shell {
  position: relative;
  z-index: 1;
}

.automation-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.85fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.automation-heading .eyebrow {
  margin-top: 15px;
  color: #c7e1f0;
}

.automation-heading .eyebrow::before {
  background: rgba(211, 235, 248, 0.7);
}

.automation-heading h2 {
  margin-bottom: 0;
  color: var(--white);
}

.automation-heading > p:last-child {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
}

.automation-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.automation-outcome {
  min-height: 188px;
  padding: 30px 34px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.automation-outcome:last-child {
  border-right: 0;
}

.automation-outcome > span {
  display: block;
  margin-bottom: 26px;
  color: #a9d1e8;
  font: 14px/1 var(--serif);
}

.automation-outcome h3 {
  margin-bottom: 10px;
  color: var(--white);
  font: 400 26px/1.15 var(--serif);
}

.automation-outcome p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.automation-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(8, 28, 39, 0.2);
  box-shadow: 0 34px 80px rgba(5, 22, 31, 0.18);
  backdrop-filter: blur(8px);
}

.automation-flow,
.automation-capabilities {
  padding: 34px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.automation-kicker {
  margin: 0 0 18px;
  color: #a9d1e8;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.automation-flow h3 {
  max-width: 430px;
  margin: 0 0 26px;
  color: var(--white);
  font: 400 clamp(27px, 2.5vw, 37px)/1.1 var(--serif);
}

.automation-flow ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.automation-flow li {
  display: grid;
  grid-template-columns: 36px 86px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.automation-flow li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.automation-flow li > span {
  color: #8fbcd6;
  font: 12px/1 var(--serif);
}

.automation-flow li strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
}

.automation-flow li small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

.automation-details {
  display: grid;
  gap: 9px;
}

.automation-details details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 200ms ease,
    background 200ms ease;
}

.automation-details details[open] {
  border-color: rgba(183, 218, 239, 0.45);
  background: rgba(218, 238, 249, 0.1);
}

.automation-details summary {
  position: relative;
  padding: 17px 50px 17px 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.automation-details summary::before,
.automation-details summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 13px;
  height: 1px;
  content: "";
  background: #b9d9ea;
  transition: transform 180ms ease;
}

.automation-details summary::after {
  transform: rotate(90deg);
}

.automation-details details[open] summary::after {
  transform: rotate(0);
}

.automation-details p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.automation-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 22px 20px 4px;
}

.automation-action p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.automation-action p strong {
  color: var(--white);
  font-weight: 550;
}

.automation-action .button {
  flex-shrink: 0;
  min-width: 230px;
}

.scenarios {
  padding: 132px 0 140px;
  background: var(--white);
}

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

.scenario-card {
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
}

.scenario-card > header {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 30px;
}

.scenario-card > header > span {
  color: var(--blue);
  font: 14px/1 var(--serif);
}

.scenario-card > header h3 {
  margin: 0;
  color: var(--ink);
  font: 400 30px/1.15 var(--serif);
}

.scenario-card > header small {
  padding: 7px 10px;
  border: 1px solid rgba(79, 127, 163, 0.2);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(220, 236, 247, 0.32);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafb;
}

.scenario-path > div {
  position: relative;
  min-height: 190px;
  padding: 26px 28px 28px;
  border-right: 1px solid var(--line);
}

.scenario-path > div:last-child {
  border-right: 0;
  background: rgba(214, 233, 245, 0.36);
}

.scenario-path span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scenario-path p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.scenarios-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 34px;
  padding: 28px 30px;
  border: 1px solid rgba(79, 127, 163, 0.18);
  border-radius: 18px;
  background: rgba(220, 236, 247, 0.42);
}

.scenarios-cta p {
  max-width: 650px;
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.scenarios-cta p strong {
  color: var(--ink);
  font-weight: 550;
}

.scenarios-cta .button {
  flex-shrink: 0;
  min-width: 224px;
}

.changes {
  position: relative;
  padding: 142px 0;
  overflow: hidden;
  background: #eff5f8;
}

.changes::before {
  position: absolute;
  top: -230px;
  left: -310px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(92, 143, 177, 0.2);
  border-radius: 50%;
  content: "";
}

.changes-orbit {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(92, 143, 177, 0.19);
  border-radius: 50%;
}

.changes-orbit::before,
.changes-orbit::after {
  position: absolute;
  border: 1px solid rgba(92, 143, 177, 0.13);
  border-radius: 50%;
  content: "";
}

.changes-orbit::before {
  inset: 72px;
}

.changes-orbit::after {
  inset: 150px;
}

.changes-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.changes-copy {
  position: sticky;
  top: 140px;
  align-self: start;
}

.changes-copy h2 {
  margin-bottom: 34px;
}

.changes-copy > p:last-child {
  max-width: 470px;
  color: var(--graphite);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.changes-list {
  border-top: 1px solid rgba(75, 113, 138, 0.25);
}

.change-row {
  display: grid;
  grid-template-columns: 52px 1fr 32px;
  gap: 22px;
  align-items: start;
  padding: 36px 4px 34px 0;
  border-bottom: 1px solid rgba(75, 113, 138, 0.25);
}

.change-row > span:first-child {
  padding-top: 6px;
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 14px;
}

.change-row h3 {
  margin-bottom: 9px;
}

.change-row p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.row-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-deep);
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.change-row:hover .row-mark {
  color: var(--white);
  background: var(--blue);
  transform: rotate(45deg);
}

.directions-catalog {
  padding: 128px 0 140px;
  overflow: visible;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(92, 143, 177, 0.07) 50%, transparent 50.1%),
    #f8fafb;
}

.directions-catalog::before {
  display: none;
}

.directions-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.8fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 74px;
}

.directions-heading .eyebrow {
  margin-top: 16px;
}

.directions-heading h2 {
  margin-bottom: 0;
}

.directions-heading h2 span {
  color: var(--blue);
}

.directions-heading > p:last-child {
  margin-top: 18px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.directions-interface {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.direction-sidebar {
  position: sticky;
  top: 116px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.direction-tab {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 10px 16px 10px 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: var(--graphite);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.direction-tab > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 11px;
  color: var(--blue-deep);
  background: rgba(92, 143, 177, 0.1);
  font: 600 11px/1 var(--sans);
}

.direction-tab svg,
.direction-panel-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direction-tab > strong {
  color: inherit;
  font: 550 15px/1.3 var(--sans);
}

.direction-tab:hover,
.direction-tab:focus-visible {
  color: var(--ink);
  background: rgba(198, 225, 241, 0.34);
  transform: translateX(2px);
}

.direction-tab.is-active {
  border-color: rgba(92, 143, 177, 0.24);
  color: var(--ink);
  background: rgba(198, 225, 241, 0.52);
  box-shadow: 0 14px 32px rgba(52, 79, 96, 0.06);
}

.direction-tab.is-active > span {
  color: var(--white);
  background: var(--blue-deep);
}

.direction-select-wrap {
  display: none;
}

.direction-content {
  min-width: 0;
  padding: 32px 36px 36px;
  border: 1px solid rgba(78, 113, 136, 0.16);
  border-radius: 30px;
  background: #eef2f4;
  box-shadow: 0 30px 80px rgba(48, 74, 91, 0.09);
}

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

.direction-panel-head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 4px 0 30px;
  border-bottom: 1px solid var(--line);
}

.direction-panel-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 14px 30px rgba(92, 143, 177, 0.2);
  font: 650 12px/1 var(--sans);
}

.direction-panel-head h3 {
  margin: 0;
  color: var(--ink);
  font: 650 clamp(27px, 2.2vw, 36px)/1.08 var(--sans);
  letter-spacing: -0.025em;
}

.direction-panel-head div > p {
  position: relative;
  margin: 9px 0 0;
  padding-left: 15px;
  color: var(--blue-deep);
  font-size: 14px;
  line-height: 1.45;
}

.direction-panel-head div > p::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.direction-details {
  display: grid;
  gap: 10px;
  padding-top: 28px;
}

.direction-details details {
  overflow: hidden;
  border: 1px solid rgba(78, 113, 136, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.direction-details details[open] {
  border-color: rgba(92, 143, 177, 0.45);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(52, 79, 96, 0.06);
}

.direction-details summary {
  position: relative;
  padding: 20px 58px 20px 20px;
  color: var(--ink);
  font: 600 16px/1.35 var(--sans);
  list-style: none;
  cursor: pointer;
}

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

.direction-details summary::before,
.direction-details summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--blue-deep);
  transition: transform 200ms ease;
}

.direction-details summary::after {
  transform: rotate(90deg);
}

.direction-details details[open] summary::after {
  transform: rotate(0);
}

.direction-detail-body {
  display: block;
  padding: 0 20px 22px;
}

.direction-detail-body > p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.direction-detail-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-detail-body li {
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(78, 113, 136, 0.2);
  border-radius: 9px;
  color: var(--ink);
  background: #f8fafb;
  font-size: 12px;
  line-height: 1.25;
}

.business-automation {
  position: relative;
  padding: 132px 0 140px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 8%, rgba(180, 218, 239, 0.54), transparent 27%),
    linear-gradient(135deg, #f4f8fa, #e6f0f5);
}

.business-automation::after {
  position: absolute;
  right: -240px;
  bottom: -420px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(79, 127, 163, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.business-automation > .shell {
  position: relative;
  z-index: 1;
}

.business-automation-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.business-automation-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.business-automation-heading > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.business-automation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.business-automation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(75, 113, 138, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.business-automation-item {
  display: grid;
  grid-template-columns: 28px 48px 1fr;
  gap: 16px;
  min-height: 218px;
  padding: 30px 28px;
  border-right: 1px solid rgba(75, 113, 138, 0.18);
  border-bottom: 1px solid rgba(75, 113, 138, 0.18);
}

.business-automation-item:nth-child(2n) {
  border-right: 0;
}

.business-automation-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.business-automation-number {
  padding-top: 6px;
  color: var(--blue-deep);
  font: 13px/1 var(--serif);
}

.business-automation-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(79, 127, 163, 0.24);
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.72);
}

.business-automation-icon svg {
  width: 23px;
  height: 23px;
}

.business-automation-item h3 {
  margin: 2px 0 12px;
  color: var(--ink);
  font: 400 24px/1.16 var(--serif);
}

.business-automation-item p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.business-automation-result {
  display: flex;
  min-height: 458px;
  flex-direction: column;
  padding: 38px 36px 34px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(125, 178, 211, 0.31), transparent 34%),
    linear-gradient(145deg, #294758, #385f75);
  box-shadow: 0 30px 65px rgba(37, 69, 87, 0.16);
}

.business-automation-kicker {
  margin: 0 0 24px;
  color: #b9d9ea;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.business-automation-result h3 {
  max-width: 390px;
  margin: 0 0 28px;
  color: var(--white);
  font: 400 clamp(28px, 2.5vw, 38px)/1.08 var(--serif);
}

.business-automation-result ul {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.business-automation-result li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.business-automation-result li svg {
  width: 18px;
  height: 18px;
  color: #b9d9ea;
}

.business-automation-note {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.business-automation-result .button {
  width: 100%;
  margin-top: auto;
  justify-content: space-between;
}

.start {
  padding: 140px 0 150px;
  background: var(--white);
}

.start-heading {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 50px;
  margin-bottom: 90px;
}

.start-heading .eyebrow {
  margin-top: 13px;
}

.start-heading h2 {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.timeline li {
  position: relative;
}

.timeline li > span {
  display: block;
  margin-bottom: 23px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 14px;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  margin-bottom: 38px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.timeline h3 {
  margin-bottom: 15px;
}

.timeline p {
  max-width: 240px;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.terms {
  padding: 134px 0 142px;
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 226, 242, 0.5), transparent 28%),
    var(--paper-warm);
}

.automation-offers {
  padding: 126px 0 132px;
  background:
    radial-gradient(circle at 100% 0, rgba(176, 214, 235, 0.58), transparent 30%),
    #dfeaf0;
}

.terms-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr 0.85fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 48px;
}

.terms-heading .eyebrow {
  margin-top: 13px;
}

.terms-heading h2 {
  margin-bottom: 0;
}

.terms-heading > p:last-child {
  margin-top: 18px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.automation-products {
  margin-bottom: 0;
}

.products-heading {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 30px;
  padding-top: 0;
}

.products-heading span,
.assistant-pricing-heading > span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.products-heading h3,
.assistant-pricing-heading h3 {
  margin: 0;
  color: var(--ink);
  font: 400 34px/1.15 var(--serif);
}

.products-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(78, 113, 136, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(48, 74, 91, 0.045);
}

.product-card--accent {
  border-color: transparent;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(136, 188, 219, 0.28), transparent 35%),
    linear-gradient(145deg, #294553, #456f89);
  box-shadow: 0 24px 55px rgba(42, 65, 79, 0.15);
}

.product-number {
  display: block;
  margin-bottom: 34px;
  color: var(--blue-deep);
  font: 14px/1 var(--serif);
}

.product-card--accent .product-number {
  color: #b9daec;
}

.product-label {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.product-card--accent .product-label {
  color: #c8e1ef;
}

.product-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font: 400 29px/1.15 var(--serif);
}

.product-card--accent h3 {
  color: var(--white);
}

.product-card > p:not(.product-label) {
  margin: 0 0 24px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.68;
}

.product-card--accent > p:not(.product-label) {
  color: rgba(255, 255, 255, 0.76);
}

.product-card > strong {
  margin-top: auto;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card--accent > strong {
  color: #d7ebf6;
}

.product-card ul {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-card--accent ul {
  border-color: rgba(255, 255, 255, 0.18);
}

.product-card li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 17px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.product-card--accent li {
  color: rgba(255, 255, 255, 0.78);
}

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

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 23px 26px;
  border: 1px solid rgba(78, 113, 136, 0.14);
  border-radius: 18px;
  background: rgba(198, 225, 241, 0.34);
}

.product-action p {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.product-action .button {
  min-width: 210px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid article {
  min-height: 190px;
  padding: 28px 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid span {
  display: block;
  margin-bottom: 25px;
  color: var(--blue);
  font: 13px/1 var(--serif);
}

.trust-grid h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font: 400 20px/1.2 var(--serif);
}

.trust-grid p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.assistant-pricing-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 30px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.assistant-pricing-heading > span {
  margin: 11px 0 0;
}

.assistant-pricing-heading h3 {
  margin-bottom: 10px;
}

.assistant-pricing-heading p {
  max-width: 660px;
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.terms-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.terms-highlight {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 108px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(78, 113, 136, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.terms-highlight-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(79, 127, 163, 0.35);
  border-radius: 50%;
  color: var(--blue-deep);
  background: transparent;
}

.terms-highlight-icon svg,
.price-card-icon svg,
.price-card-note svg,
.price-card-callout svg,
.terms-cta-icon svg,
.terms-cta .button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.terms-highlight h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.terms-highlight p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.terms-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 26px 26px;
  border: 1px solid rgba(78, 113, 136, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(48, 74, 91, 0.05);
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.price-card-head > span:first-child {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.price-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(79, 127, 163, 0.35);
  border-radius: 50%;
  color: var(--blue-deep);
}

.price-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.price-card-lead {
  margin: 0 0 22px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
}

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

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(90, 119, 139, 0.14);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
}

.price-list li:last-child {
  border-bottom: 1px solid rgba(90, 119, 139, 0.14);
}

.price-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 550;
  white-space: nowrap;
}

.price-card-note,
.price-card-callout {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0 0;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.price-card-note {
  margin-top: auto;
  padding-top: 22px;
}

.price-card-note span,
.price-card-callout span {
  display: grid;
  place-items: center;
  color: var(--blue-deep);
}

.price-card-text {
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.price-card-range {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--graphite);
  background: rgba(198, 225, 241, 0.42);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.price-card-range strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 550;
}

.price-perks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-perks li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.price-perks li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-deep);
  content: "";
}

.price-card-callout {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(198, 225, 241, 0.42);
}

.terms-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  border: 1px solid rgba(78, 113, 136, 0.14);
  border-radius: 20px;
  background: rgba(198, 225, 241, 0.38);
}

.terms-cta-copy {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}

.terms-cta-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(79, 127, 163, 0.35);
  border-radius: 50%;
  color: var(--blue-deep);
}

.terms-cta-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.terms-cta .button {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;
  padding-right: 22px;
}

.terms-cta .button svg {
  width: 16px;
  height: 16px;
}

.terms > .terms-pricing {
  margin-bottom: 88px;
}

.faq {
  padding: 128px 0 136px;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

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

.faq-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 3.8vw, 58px);
}

.faq-heading > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  color: var(--ink);
  font: 400 21px/1.35 var(--serif);
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--blue-deep);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 0 25px;
  padding-right: 42px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.contact {
  padding: 56px 0 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 28%, rgba(137, 186, 216, 0.28), transparent 32%),
    linear-gradient(110deg, #2a414f, #4b7693);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 120px;
  align-items: start;
}

.contact .eyebrow,
.contact h2 {
  color: var(--white);
}

.contact .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.contact h2 {
  margin-bottom: 0;
}

.contact-intro .button {
  margin-top: 8px;
}

.contact-action {
  padding-top: 0;
}

.contact-action p {
  max-width: 440px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 22px;
  max-width: 440px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 8px;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  transition: opacity 200ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  opacity: 0.72;
}

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

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--mist);
  color: var(--ink);
  background: var(--mist);
}

.site-footer {
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 118px;
  color: #7a8185;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  height: auto;
  overflow: visible;
  font-size: 14px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner p:last-child {
  justify-self: end;
}

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

.reveal--image {
  transform: translateX(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal--delay-1 {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 200ms;
}

.reveal--delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 940px);
  }

  .header-inner {
    grid-template-columns: 210px 1fr auto;
  }

  .hero {
    grid-template-columns: minmax(410px, 52%) 1fr;
    min-height: 700px;
  }

  .hero-copy {
    padding-right: 48px;
  }

  .section-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
    max-width: 520px;
    margin-top: -24px;
  }

  .signals-heading,
  .scenarios-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .signals-heading > p:last-child,
  .scenarios-heading > p:last-child {
    grid-column: 2;
    max-width: 560px;
    margin-top: -20px;
  }

  .automation-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .automation-heading > p:last-child {
    grid-column: 2;
    max-width: 560px;
    margin-top: -20px;
  }

  .automation-flow,
  .automation-capabilities {
    padding-inline: 26px;
  }

  .automation-flow li {
    grid-template-columns: 30px 78px 1fr;
    gap: 9px;
  }

  .principle-card {
    padding-inline: 28px;
  }

  .scenario-path {
    margin-left: 0;
  }

  .scenario-path > div {
    padding-inline: 22px;
  }

  .product-card {
    padding-inline: 22px;
  }

  .faq-inner {
    gap: 62px;
  }

  .directions-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .directions-heading > p:last-child {
    grid-column: 2;
    max-width: 540px;
    margin-top: -20px;
  }

  .directions-interface {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
  }

  .direction-content {
    padding: 30px 32px 34px;
  }

  .direction-panel-head {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .direction-panel-icon {
    width: 58px;
    height: 58px;
  }

  .changes-inner {
    gap: 68px;
  }

  .contact-inner {
    gap: 80px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .brand {
    height: auto;
    font-size: 17px;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: calc(100dvh - 64px);
    padding: 38px max(20px, calc((100vw - 720px) / 2));
    background: rgba(251, 252, 253, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 30px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 12px 9px;
    border: 0;
    place-content: center;
    gap: 7px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition:
      opacity 180ms ease,
      transform 220ms ease;
  }

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

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

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

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 64px;
    background: var(--white);
  }

  .hero-copy {
    align-self: auto;
    width: var(--shell);
    min-height: 500px;
    margin-inline: auto;
    padding: 72px 0 62px;
  }

  h1 {
    font-size: clamp(48px, 8.6vw, 68px);
  }

  .hero-visual {
    height: 460px;
  }

  .hero-visual > .hero-monogram {
    width: min(72%, 330px);
  }

  .signals,
  .principles,
  .automation,
  .scenarios,
  .changes,
  .business-automation,
  .automation-offers,
  .start,
  .terms,
  .faq {
    padding-block: 82px;
  }

  .signals-heading,
  .scenarios-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }

  .signals-heading > p:last-child,
  .scenarios-heading > p:last-child {
    grid-column: auto;
    max-width: 620px;
    margin-top: 0;
  }

  .automation-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }

  .automation-heading > p:last-child {
    grid-column: auto;
    max-width: 620px;
    margin-top: 0;
  }

  .automation-outcome {
    min-height: 170px;
    padding-inline: 24px;
  }

  .automation-workspace {
    grid-template-columns: 1fr;
  }

  .automation-action {
    grid-column: auto;
  }

  .scenario-path {
    grid-template-columns: 1fr;
  }

  .scenario-path > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-path > div:last-child {
    border-bottom: 0;
  }

  .products-heading,
  .assistant-pricing-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .product-card {
    min-height: 0;
    padding: 28px;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-heading {
    position: static;
  }

  .directions-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 40px;
  }

  .directions-heading > p:last-child {
    grid-column: auto;
    max-width: 580px;
    margin-top: 0;
  }

  .business-automation-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .business-automation-heading > p {
    max-width: 620px;
  }

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

  .business-automation-result {
    min-height: 0;
  }

  .directions-interface {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .direction-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .direction-tab {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    min-height: 94px;
    padding: 10px 8px;
    border-color: rgba(78, 113, 136, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
    text-align: center;
  }

  .direction-tab:hover,
  .direction-tab:focus-visible {
    transform: none;
  }

  .direction-tab > span {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--white);
  }

  .direction-tab > strong {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.2;
  }

  .direction-tab.is-active {
    background: rgba(198, 225, 241, 0.68);
  }

  .direction-select-wrap {
    display: none;
  }

  .direction-content {
    padding: 24px 24px 28px;
    border-radius: 18px;
  }

  .direction-panel-head {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    min-height: 92px;
    padding-bottom: 24px;
  }

  .direction-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .direction-detail-body {
    gap: 28px;
    padding-right: 24px;
  }

  .section-heading,
  .changes-inner,
  .start-heading,
  .terms-heading,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p:last-child {
    grid-column: auto;
    max-width: 560px;
    margin-top: 0;
  }

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

  .principle-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .line-icon {
    margin-block: 24px;
  }

  .changes-copy {
    position: static;
    margin-bottom: 30px;
  }

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

  .timeline::before {
    display: none;
  }

  .timeline li {
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .timeline li > span {
    margin-bottom: 15px;
  }

  .timeline-dot {
    position: absolute;
    top: -5px;
    margin: 0;
  }

  .start-heading {
    margin-bottom: 48px;
  }

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

  .terms-heading > p:last-child {
    max-width: 560px;
    margin-top: 0;
  }

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

  .terms-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .terms-cta .button {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-inner {
    gap: 38px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }

  .footer-brand {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.92);
  }

  html {
    scroll-padding-top: 60px;
  }

  section[id],
  #assistant-prices {
    scroll-margin-top: 60px;
  }

  .header-inner {
    min-height: 60px;
  }

  .brand {
    font-size: 15px;
  }

  .wordmark {
    font-size: 16px;
    letter-spacing: 0.13em;
  }

  .site-nav {
    top: 60px;
    height: calc(100dvh - 60px);
    padding-top: 28px;
  }

  .site-nav a {
    font-size: 26px;
  }

  .hero {
    position: relative;
    min-height: 660px;
    padding-top: 60px;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(circle at 102% 18%, rgba(198, 225, 241, 0.42), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfdfe 74%, #eef6fa 100%);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: 0;
    padding: clamp(40px, 7svh, 62px) 0 34px;
  }

  .hero .eyebrow {
    max-width: 285px;
    margin-bottom: 22px;
    font-size: 9px;
    line-height: 1.55;
  }

  .hero .eyebrow::before {
    width: 28px;
  }

  h1 {
    max-width: 355px;
    margin-bottom: 20px;
    font-size: clamp(39px, 11.4vw, 48px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .hero-lead {
    max-width: 350px;
    margin-bottom: 24px;
    color: #52616a;
    font-size: 14px;
    line-height: 1.52;
  }

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

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

  .hero-actions .button {
    min-width: 0;
    min-height: 52px;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .hero-actions .text-link {
    justify-content: space-between;
    padding: 10px 2px;
    font-size: 12px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .hero-proof > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0 13px;
  }

  .hero-proof > span + span {
    padding-left: 18px;
    border-left: 1px solid var(--line);
  }

  .hero-proof strong {
    color: var(--ink);
    font: 400 20px/1.1 var(--serif);
  }

  .hero-proof small {
    color: var(--graphite);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-visual {
    position: absolute;
    z-index: 0;
    top: 70px;
    right: -84px;
    width: 280px;
    height: 270px;
    opacity: 0.34;
    pointer-events: none;
  }

  .hero-visual > .hero-monogram {
    width: 100%;
    max-width: none;
    opacity: 0.92;
    transform: rotate(-3deg);
    -webkit-mask-image: radial-gradient(
      ellipse 72% 66% at 50% 50%,
      #000 48%,
      rgba(0, 0, 0, 0.82) 62%,
      transparent 86%
    );
    mask-image: radial-gradient(
      ellipse 72% 66% at 50% 50%,
      #000 48%,
      rgba(0, 0, 0, 0.82) 62%,
      transparent 86%
    );
  }

  .mobile-offer {
    display: block;
    padding: 58px 0 54px;
    color: var(--white);
    background:
      radial-gradient(circle at 104% -5%, rgba(129, 180, 211, 0.38), transparent 38%),
      linear-gradient(155deg, #253f4d, #3e657c);
  }

  .mobile-offer .eyebrow {
    margin-bottom: 18px;
    color: #b8daed;
    font-size: 9px;
  }

  .mobile-offer .eyebrow::before {
    width: 28px;
    background: #8bbbd8;
  }

  .mobile-offer h2 {
    max-width: 330px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: 39px;
    line-height: 0.98;
  }

  .mobile-offer-list {
    margin: 0 0 28px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
  }

  .mobile-offer-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-offer-list li > span {
    padding-top: 3px;
    color: #93c3df;
    font: 11px/1 var(--serif);
  }

  .mobile-offer-list div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-offer-list strong {
    color: var(--white);
    font: 400 20px/1.15 var(--serif);
  }

  .mobile-offer-list small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.45;
  }

  .mobile-offer-action {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }

  .mobile-offer-action p {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }

  .mobile-offer-action p span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
  }

  .mobile-offer-action p strong {
    color: var(--white);
    font: 400 20px/1 var(--serif);
    white-space: nowrap;
  }

  .mobile-offer-action .button {
    width: 100%;
    min-width: 0;
    color: var(--ink);
    border-color: var(--white);
    background: var(--white);
  }

  .mobile-offer-terms {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    text-align: center;
  }

  #approach,
  #automation {
    display: none;
  }

  .business-automation-heading {
    margin-bottom: 30px;
  }

  .business-automation-heading > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .business-automation-list {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .business-automation-item {
    grid-template-columns: 24px 42px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 22px 18px;
    border-right: 0;
  }

  .business-automation-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(75, 113, 138, 0.18);
  }

  .business-automation-item:last-child {
    border-bottom: 0;
  }

  .business-automation-icon {
    width: 42px;
    height: 42px;
  }

  .business-automation-icon svg {
    width: 20px;
    height: 20px;
  }

  .business-automation-item h3 {
    margin-top: 1px;
    font-size: 21px;
  }

  .business-automation-result {
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .business-automation-result h3 {
    font-size: 30px;
  }

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

  .principle-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .signals,
  .scenarios,
  .automation-offers,
  .faq {
    padding-block: 62px;
  }

  .signals-heading,
  .scenarios-heading {
    gap: 14px;
    margin-bottom: 34px;
  }

  .signals-list {
    grid-template-columns: 1fr;
  }

  .signals-list li,
  .signals-list li:nth-child(odd),
  .signals-list li:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .signals-list li {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .signals-list h3 {
    font-size: 22px;
  }

  .changes {
    padding-block: 70px;
  }

  .automation {
    padding-block: 72px;
  }

  .automation-heading {
    gap: 14px;
    margin-bottom: 34px;
  }

  .automation-outcomes {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .automation-outcome {
    min-height: 0;
    padding: 22px 18px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .automation-outcome:last-child {
    border-bottom: 0;
  }

  .automation-outcome > span {
    margin-bottom: 15px;
  }

  .automation-workspace {
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
  }

  .automation-flow,
  .automation-capabilities {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .automation-flow h3 {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .automation-flow li {
    grid-template-columns: 28px 72px 1fr;
    gap: 7px;
    padding-block: 11px;
  }

  .automation-flow li strong {
    font-size: 13px;
  }

  .automation-flow li small {
    font-size: 11px;
  }

  .automation-details summary {
    padding: 15px 45px 15px 15px;
  }

  .automation-details p {
    padding: 0 15px 16px;
    font-size: 12px;
  }

  .automation-action {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 8px 4px;
  }

  .automation-action .button {
    width: 100%;
  }

  .scenario-card {
    padding-block: 28px;
  }

  .scenario-card > header {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .scenario-card > header h3 {
    font-size: 25px;
  }

  .scenario-card > header small {
    grid-column: 2;
    width: fit-content;
    margin-top: -4px;
  }

  .scenario-path {
    border-radius: 14px;
  }

  .scenario-path > div {
    padding: 20px 18px;
  }

  .scenario-path span {
    margin-bottom: 13px;
  }

  .scenarios-cta,
  .product-action {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .scenarios-cta .button,
  .product-action .button {
    width: 100%;
  }

  .automation-products {
    margin-bottom: 0;
  }

  .terms > .terms-pricing {
    margin-bottom: 44px;
  }

  .products-heading {
    padding-top: 0;
  }

  .products-heading h3,
  .assistant-pricing-heading h3 {
    font-size: 28px;
  }

  .product-card {
    min-height: 420px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .product-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(86vw, 330px);
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar,
  .terms-pricing::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    scroll-snap-align: start;
  }

  .automation-offers .trust-grid {
    display: none;
  }

  .product-action {
    margin-top: 14px;
  }

  .product-action p {
    font-size: 12px;
  }

  .product-number {
    margin-bottom: 25px;
  }

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

  .trust-grid article,
  .trust-grid article:nth-child(2) {
    min-height: 0;
    padding: 22px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .trust-grid span {
    margin-bottom: 15px;
  }

  .assistant-pricing-heading {
    padding-top: 30px;
  }

  .assistant-pricing-heading p {
    display: none;
  }

  .faq-heading h2 {
    margin-bottom: 20px;
    font-size: clamp(36px, 10vw, 46px);
  }

  .faq-inner {
    gap: 32px;
  }

  .faq-list summary {
    padding: 20px 38px 20px 0;
    font-size: 19px;
  }

  .faq-list details p {
    padding-right: 20px;
    font-size: 13px;
  }

  .directions-catalog {
    padding-block: 70px;
  }

  .directions-heading {
    gap: 14px;
    margin-bottom: 32px;
  }

  .direction-sidebar {
    gap: 7px;
  }

  .direction-tab {
    min-height: 88px;
    padding: 9px 5px;
    border-radius: 12px;
  }

  .direction-tab > span {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .direction-tab svg {
    width: 18px;
    height: 18px;
  }

  .direction-tab > strong {
    font-size: 11px;
  }

  .direction-content {
    padding: 18px 16px 20px;
    border-radius: 16px;
  }

  .direction-panel-head {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    min-height: 78px;
    padding: 0 0 18px;
  }

  .direction-panel-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .direction-panel-head h3 {
    font-size: 22px;
  }

  .direction-panel-head div > p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .direction-details {
    gap: 7px;
    padding-top: 18px;
  }

  .direction-details summary {
    padding: 15px 46px 15px 15px;
    font-size: 14px;
  }

  .direction-detail-body {
    padding: 0 15px 16px;
  }

  .direction-detail-body > p {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .direction-detail-body ul {
    gap: 6px;
  }

  .direction-detail-body li {
    padding: 7px 9px;
    font-size: 11px;
  }

  .change-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .row-mark {
    display: none;
  }

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

  .terms-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 20px;
  }

  .terms-highlight {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .terms-highlight h3 {
    margin: 0;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
  }

  .terms-highlight p {
    display: none;
  }

  .terms-highlight-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
  }

  .terms-highlight-icon svg {
    width: 15px;
    height: 15px;
  }

  .price-card {
    min-height: 440px;
    padding: 22px 20px;
    scroll-snap-align: start;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .terms-pricing {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(88vw, 336px);
    width: 100%;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .terms-cta {
    padding: 20px;
  }

  .terms-cta-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .terms-cta-icon {
    width: 40px;
    height: 40px;
  }

  .timeline p {
    max-width: 400px;
  }

  .contact {
    padding-block: 68px;
  }

  .contact-action .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    min-height: 82px;
  }

  .footer-inner > p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 36px;
  }

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

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
