@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-serif-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-display: "DM Serif Display";
  --font-body: "Manrope";
  --ink: #102a2a;
  --ink-deep: #071c1c;
  --ink-soft: #244240;
  --paper: #f7f4ec;
  --paper-clean: #fffef9;
  --mist: #dfecea;
  --mist-light: #edf5f3;
  --sand: #ebe0c9;
  --ember: #ff6b2c;
  --ember-light: #ffb84c;
  --acid: #d9f171;
  --line: rgba(16, 42, 42, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(7, 28, 28, 0.14);
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body), sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--ink-deep);
  background: var(--acid);
}

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

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

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

.brand__name {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button .icon {
  transition: transform 180ms ease;
}

.button:hover .icon {
  transform: translateX(4px);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
}

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

.button--ink:hover {
  background: var(--ember);
}

.button--ember {
  color: #161d19;
  background: var(--ember-light);
}

.button--ember:hover {
  background: var(--acid);
}

.button--outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}

.button--ghost-light,
.button--light {
  border-color: var(--line-light);
  color: var(--paper-clean);
  background: transparent;
}

.button--ghost-light:hover,
.button--light:hover {
  border-color: var(--paper-clean);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(5px);
}

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

.eyebrow > span:first-child {
  width: 26px;
  height: 2px;
  background: var(--ember);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.68);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 42, 42, 0.11);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 0.77rem;
  font-weight: 750;
}

.desktop-nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-status-beacon {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(7, 28, 28, 0.24);
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(232, 117, 41, 0.11);
}

.desktop-nav a,
.header-login,
.language-link {
  position: relative;
}

.desktop-nav a::after,
.header-login::after,
.language-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--ember);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.header-login:hover::after,
.language-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-link {
  padding-right: 16px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  letter-spacing: 0.09em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  color: var(--paper-clean);
  background: var(--ink-deep);
}

.hero::before {
  position: absolute;
  top: -28vw;
  right: -18vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255, 184, 76, 0.17);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: -12vw;
  right: -7vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(217, 241, 113, 0.13);
  border-radius: 50%;
  content: "";
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 670px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  padding-block: 78px 64px;
}

.hero__copy {
  padding-bottom: 28px;
  animation: hero-copy-in 700ms ease both;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-family: var(--font-display), serif;
  font-size: clamp(3.9rem, 6.6vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  color: var(--ember-light);
  font-weight: inherit;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero__note .icon {
  color: var(--acid);
}

.hero-stage {
  position: relative;
  min-width: 0;
  padding: 42px 10px 24px 0;
  perspective: 1400px;
  animation: hero-stage-in 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-stage__glow {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: 2%;
  width: 78%;
  height: 72%;
  border-radius: 50%;
  opacity: 0.42;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.8), rgba(255, 107, 44, 0) 68%);
  filter: blur(42px);
}

.hero-stage__window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: var(--ink);
  background: #eef1eb;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center right;
}

.hero-stage__topbar {
  display: grid;
  min-height: 58px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(16, 42, 42, 0.12);
  background: #fffef9;
  font-size: 0.57rem;
  font-weight: 800;
}

.hero-stage__status {
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}

.hero-stage__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3fa77a;
  box-shadow: 0 0 0 4px rgba(63, 167, 122, 0.14);
}

.hero-stage__project {
  color: #6a7773;
  letter-spacing: 0.05em;
}

.hero-stage__avatars {
  display: flex;
  justify-content: flex-end;
}

.hero-stage__avatars span {
  display: grid;
  width: 26px;
  height: 26px;
  margin-left: -6px;
  place-items: center;
  border: 2px solid #fffef9;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mist);
  font-size: 0.5rem;
}

.hero-stage__avatars span:nth-child(2) {
  background: #f1d2bb;
}

.hero-stage__avatars span:nth-child(3) {
  background: var(--acid);
}

.hero-stage__workspace {
  display: grid;
  min-height: 420px;
  grid-template-columns: 54px 1fr;
}

.hero-stage__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-right: 1px solid rgba(16, 42, 42, 0.11);
  background: #e3e8e1;
}

.hero-stage__rail span {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(16, 42, 42, 0.2);
  border-radius: 3px;
}

.hero-stage__rail span.is-active {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 6px var(--acid);
}

.hero-stage__board {
  min-width: 0;
  padding: 28px;
}

.hero-stage__board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-stage__board-head small {
  display: block;
  margin-bottom: 5px;
  color: #72807c;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage__board-head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: -0.04em;
}

.hero-stage__timer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(16, 42, 42, 0.1);
  background: #fffef9;
  font-size: 0.52rem;
}

.hero-stage__timer strong {
  color: var(--ember);
}

.hero-stage__progress {
  position: relative;
  overflow: hidden;
  height: 4px;
  margin-bottom: 20px;
  background: rgba(16, 42, 42, 0.08);
}

.hero-stage__progress span {
  display: block;
  width: 66%;
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--ember-light));
  animation: progress-in 1.2s 800ms ease both;
}

.hero-stage__tasks {
  display: grid;
  gap: 11px;
}

.hero-task {
  display: grid;
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 42, 42, 0.1);
  background: #fffef9;
  box-shadow: 0 10px 22px rgba(16, 42, 42, 0.055);
  animation: task-in 550ms ease both;
}

.hero-task--2 { animation-delay: 600ms; }
.hero-task--3 { animation-delay: 720ms; }

.hero-task__check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(16, 42, 42, 0.22);
  border-radius: 50%;
  color: var(--ink);
}

.hero-task--1 .hero-task__check {
  border-color: var(--acid);
  background: var(--acid);
}

.hero-task__check .icon {
  width: 14px;
}

.hero-task strong,
.hero-task small {
  display: block;
}

.hero-task strong {
  overflow: hidden;
  margin-bottom: 3px;
  font-size: clamp(0.61rem, 0.9vw, 0.74rem);
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-task small {
  color: #71807b;
  font-size: 0.52rem;
  font-weight: 700;
}

.hero-task__person {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  font-size: 0.48rem;
  font-weight: 800;
}

.hero-stage__signal {
  position: absolute;
  right: -28px;
  bottom: -5px;
  display: flex;
  width: min(330px, 70%);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  animation: signal-in 600ms 1s ease both;
}

.hero-stage__signal-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper-clean);
  background: var(--ink);
}

.hero-stage__signal small,
.hero-stage__signal strong {
  display: block;
}

.hero-stage__signal small {
  margin-bottom: 2px;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage__signal strong {
  font-size: 0.65rem;
  line-height: 1.3;
}

.hero__metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero__metrics > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 0;
  border-right: 1px solid var(--line-light);
}

.hero__metrics > div:not(:first-child) {
  padding-left: 28px;
}

.hero__metrics > div:last-child {
  border-right: 0;
}

.hero__metrics strong {
  color: var(--ember-light);
  font-family: var(--font-display), serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.hero__metrics span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-weight: 700;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.signal-strip__inner {
  display: grid;
  min-height: 88px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 40px;
}

.signal-strip p {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.signal-strip__inner > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.signal-strip__inner span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-strip__inner span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  content: "";
}

.section {
  position: relative;
  padding-block: clamp(92px, 11vw, 160px);
}

.section--paper {
  background: var(--paper);
}

.section--mist {
  background: var(--mist);
}

.section--sand {
  background: var(--sand);
}

.section--ink {
  color: var(--paper-clean);
  background: var(--ink-deep);
}

.section-heading {
  margin-bottom: clamp(56px, 7vw, 88px);
}

.section-heading h2,
.roles-section h2,
.faq-section h2,
.final-cta h2,
.compact-cta h2 {
  margin-bottom: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.7rem, 5vw, 5.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.section-heading--split > p,
.section-heading__aside > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.section-heading__aside .text-link {
  margin-top: 28px;
}

.section-heading--center {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

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

.section-heading--light > p,
.section-heading--light .section-heading__aside > p {
  color: rgba(255, 255, 255, 0.65);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability {
  grid-column: span 4;
  min-height: 330px;
  padding: clamp(28px, 3.3vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  transition: color 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.capability:hover {
  z-index: 2;
  color: var(--paper-clean);
  background: var(--ink);
  transform: translateY(-6px);
}

.capability--2,
.capability--5 {
  background: var(--mist-light);
}

.capability--3 {
  background: var(--sand);
}

.capability--4 {
  background: var(--acid);
}

.capability--6 {
  color: var(--paper-clean);
  background: var(--ember);
}

.capability__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
  font-size: 0.67rem;
  font-weight: 800;
}

.capability__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.capability__icon .icon {
  width: 20px;
}

.capability h3 {
  max-width: 280px;
  margin-bottom: 16px;
  font-family: var(--font-display), serif;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.capability p {
  max-width: 330px;
  margin: 0;
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.75;
  opacity: 0.75;
}

.showcase-section {
  overflow: hidden;
}

.showcase-section::after {
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(16, 42, 42, 0.12);
  border-radius: 50%;
  content: "";
}

.product-showcase {
  position: relative;
  z-index: 2;
}

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

.product-showcase__tabs button {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-showcase__tabs button:last-child {
  border-right: 0;
}

.product-showcase__tabs button span {
  font-size: 0.58rem;
  opacity: 0.5;
}

.product-showcase__tabs button.is-active {
  color: var(--paper-clean);
  background: var(--ink);
}

.product-showcase__frame {
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--paper-clean);
  box-shadow: var(--shadow);
}

.product-showcase__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 3.5vw, 52px);
  animation: fade-slide 360ms ease both;
}

.product-showcase__index {
  margin-bottom: 52px;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-showcase__copy h3 {
  max-width: 100%;
  margin-bottom: 22px;
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: break-word;
}

.product-showcase__copy p {
  margin-bottom: 44px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.product-showcase__hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-showcase__image {
  overflow: hidden;
  margin: 28px 28px 28px 0;
  border: 1px solid var(--line);
  background: var(--mist-light);
  animation: fade-scale 420ms ease both;
}

.product-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.workflow-section {
  overflow: hidden;
}

.workflow-section::before {
  position: absolute;
  top: 0;
  left: 42%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  content: "";
}

.workflow-section__orb {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--ember-light);
}

.workflow-section__orb .icon {
  width: 34px;
  height: 34px;
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.workflow-line::before {
  position: absolute;
  z-index: 2;
  top: -2px;
  left: 0;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--ember-light));
  content: "";
}

.workflow-line article {
  min-height: 330px;
  padding: 48px 30px 16px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.workflow-line article:not(:first-child) {
  padding-left: 30px;
}

.workflow-line article:last-child {
  border-right: 0;
}

.workflow-line__number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--ember-light);
  font-size: 0.62rem;
  font-weight: 800;
}

.workflow-line h3 {
  margin-bottom: 17px;
  font-family: var(--font-display), serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.workflow-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.75;
}

.roles-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 10vw, 160px);
}

.roles-section__intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  align-self: start;
}

.roles-section__visual {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  margin-top: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.roles-section__visual::before,
.roles-section__visual::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.roles-section__visual::before { inset: 33px; }
.roles-section__visual::after { inset: 66px; background: var(--ink); }

.roles-section__visual > span {
  z-index: 2;
  color: var(--acid);
  font-family: var(--font-display), serif;
  font-size: 1.8rem;
}

.roles-section__visual i {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--ember);
}

.roles-section__visual i:nth-of-type(1) { top: 14px; left: 60px; }
.roles-section__visual i:nth-of-type(2) { right: 7px; bottom: 75px; background: var(--acid); }
.roles-section__visual i:nth-of-type(3) { bottom: 19px; left: 40px; background: #6cae9f; }

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

.role-list article {
  display: grid;
  min-height: 220px;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.role-list article > span {
  color: var(--ember);
  font-size: 0.68rem;
  font-weight: 800;
}

.role-list h3 {
  margin-bottom: 18px;
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.role-list p {
  max-width: 510px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
}

.pricing-card--featured {
  color: var(--paper-clean);
  background: var(--ink);
  box-shadow: 0 22px 56px rgba(16, 42, 42, 0.18);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card__eyebrow {
  margin-bottom: 22px;
  color: inherit;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.66;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 34px;
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.pricing-card__price {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  margin-bottom: 26px;
}

.pricing-card__price strong {
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.pricing-card__price span {
  margin-top: 7px;
  font-size: 0.59rem;
  font-weight: 700;
  opacity: 0.58;
}

.pricing-card__description {
  min-height: 92px;
  margin-bottom: 28px;
  font-size: 0.77rem;
  line-height: 1.7;
  opacity: 0.7;
}

.pricing-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 26px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
  opacity: 0.78;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.7rem;
}

.pricing-card li .icon {
  margin-top: 2px;
  color: var(--ember);
}

.pricing-card--featured li .icon {
  color: var(--acid);
}

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

.faq-section__grid,
.faq-page__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
}

.faq-section__intro .text-link {
  margin-top: 42px;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 102px;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--ember);
  font-size: 0.62rem;
  font-weight: 800;
}

.faq-list summary strong {
  font-size: 0.9rem;
  line-height: 1.4;
}

.faq-list summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

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

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

.faq-list__answer {
  padding: 0 42px 32px 60px;
}

.faq-list__answer p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.final-cta,
.compact-cta {
  position: relative;
  overflow: hidden;
  color: var(--paper-clean);
  background: var(--ember);
}

.final-cta::after,
.compact-cta::after {
  position: absolute;
  top: -50%;
  right: -4%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
}

.final-cta h2 {
  max-width: 800px;
  color: var(--paper-clean);
  font-size: clamp(3.2rem, 7vw, 7.3rem);
}

.final-cta__inner > div:first-child > p:last-child {
  max-width: 590px;
  margin-top: 28px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta__actions {
  display: grid;
  min-width: 210px;
  gap: 12px;
}

.final-cta .button--ember,
.compact-cta .button--ember {
  background: var(--acid);
}

.site-footer {
  padding-block: 88px 28px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink-deep);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.6fr);
  gap: 54px;
  padding-bottom: 72px;
}

.brand--footer {
  color: var(--paper-clean);
}

.site-footer__brand p {
  max-width: 330px;
  margin: 28px 0 0;
  font-family: var(--font-display), serif;
  font-size: 1.7rem;
  line-height: 1.15;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.73rem;
}

.site-footer__column h2 {
  margin-bottom: 12px;
  color: var(--ember-light);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__column a:hover {
  color: var(--paper-clean);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.58rem;
}

.site-footer__bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  color: var(--paper-clean);
  background: var(--ink-deep);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.17) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, black, transparent 72%);
  content: "";
}

.page-hero__flare {
  position: absolute;
  top: -380px;
  right: -160px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 184, 76, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 180px rgba(255, 107, 44, 0.08);
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  padding-block: 90px 76px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.page-hero__aside p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
}

.page-pricing {
  padding-top: 110px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--paper-clean);
  font-size: 0.74rem;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 34%;
  text-align: left;
}

.comparison-table th {
  color: var(--paper-clean);
  background: var(--ink);
  font-size: 0.65rem;
}

.comparison-table tbody tr:hover {
  background: var(--mist-light);
}

.compact-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.compact-cta h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.compact-cta__inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-page__grid > aside {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  align-self: start;
}

.faq-page__grid > aside h2 {
  margin-bottom: 34px;
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.guide-timeline {
  position: relative;
  max-width: 1000px;
}

.guide-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52px;
  width: 1px;
  background: var(--line);
  content: "";
}

.guide-timeline article {
  position: relative;
  display: grid;
  min-height: 340px;
  grid-template-columns: 105px 1fr;
  gap: clamp(36px, 8vw, 110px);
  padding-bottom: 80px;
}

.guide-timeline__marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.guide-timeline__marker span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ember);
  background: var(--paper);
  font-size: 0.65rem;
  font-weight: 800;
}

.guide-timeline article > div:last-child > p {
  margin-bottom: 18px;
  color: var(--ember);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-timeline h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: var(--font-display), serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.guide-timeline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-timeline li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  font-size: 0.63rem;
  font-weight: 700;
}

.guide-timeline li .icon {
  color: var(--ember);
}

.legal-page__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: 90px;
}

.legal-page__grid > aside {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  display: flex;
  align-self: start;
  flex-direction: column;
  gap: 6px;
  padding: 26px;
  border: 1px solid var(--line);
  font-size: 0.68rem;
}

.legal-page__grid > aside p {
  margin: 0;
  color: var(--ember);
  font-weight: 800;
}

.legal-page__grid > aside strong {
  font-family: var(--font-display), serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.legal-page__grid > aside span {
  color: var(--ink-soft);
}

.legal-page article > section {
  position: relative;
  padding: 0 0 56px 62px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 58px;
}

.legal-page article > section > span {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--ember);
  font-size: 0.65rem;
  font-weight: 800;
}

.legal-page h2 {
  margin-bottom: 25px;
  font-family: var(--font-display), serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.legal-page article p {
  color: var(--ink-soft);
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-stage-in {
  from { opacity: 0; transform: translateX(36px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes progress-in {
  from { width: 0; }
}

@keyframes task-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes signal-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-slide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-scale {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 38px, 1080px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    display: block;
    overflow: auto;
    color: var(--paper-clean);
    background: var(--ink-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-menu--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding-block: 44px;
  }

  .mobile-menu__nav > a {
    display: grid;
    min-height: 84px;
    grid-template-columns: 48px 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--ember-light);
    font-size: 0.62rem;
    font-weight: 800;
  }

  .mobile-menu__nav > a span {
    color: var(--paper-clean);
    font-family: var(--font-display), serif;
    font-size: 2rem;
    font-weight: 400;
  }

  .mobile-menu__status span {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .mobile-menu__status .site-status-beacon {
    width: 9px;
    height: 9px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 5px rgba(232, 117, 41, 0.14);
  }

  .mobile-menu__actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

  .hero__copy {
    max-width: 800px;
  }

  .hero h1 {
    font-size: clamp(4rem, 10vw, 7.4rem);
  }

  .hero-stage {
    max-width: 840px;
    margin-inline: auto;
  }

  .signal-strip__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 24px;
  }

  .capability {
    grid-column: span 6;
  }

  .product-showcase__frame {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-showcase__copy {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 30px;
  }

  .product-showcase__copy h3,
  .product-showcase__copy p,
  .product-showcase__hint {
    grid-column: 2;
  }

  .product-showcase__index {
    grid-row: 1 / span 3;
    margin: 9px 0 0;
  }

  .product-showcase__image {
    height: auto;
    margin: 0 28px 28px;
  }

  .product-showcase__image img {
    height: auto;
  }

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

  .workflow-line article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

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

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-hero__aside {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 30px);
    --header-height: 70px;
  }

  .site-header__actions {
    gap: 12px;
  }

  .site-header__actions .header-login,
  .site-header__actions > .button {
    display: none;
  }

  .language-link {
    padding-right: 12px;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 70px 50px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.7rem);
  }

  .hero__lead {
    font-size: 0.94rem;
  }

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

  .hero-stage {
    padding: 18px 0 45px;
  }

  .hero-stage__window {
    transform: none;
  }

  .hero-stage__topbar {
    grid-template-columns: 1fr auto;
  }

  .hero-stage__project {
    display: none;
  }

  .hero-stage__workspace {
    min-height: 330px;
    grid-template-columns: 38px 1fr;
  }

  .hero-stage__rail {
    gap: 12px;
  }

  .hero-stage__rail span {
    width: 16px;
    height: 16px;
  }

  .hero-stage__board {
    padding: 18px 13px;
  }

  .hero-stage__timer {
    display: none;
  }

  .hero-task {
    min-height: 62px;
    padding: 10px;
  }

  .hero-task__person {
    display: none;
  }

  .hero-stage__signal {
    right: 12px;
    bottom: 10px;
    width: calc(100% - 62px);
  }

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

  .hero__metrics > div,
  .hero__metrics > div:not(:first-child) {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .signal-strip__inner > div {
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .signal-strip__inner span {
    font-size: 0.56rem;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading--split,
  .roles-section__grid,
  .faq-section__grid,
  .faq-page__grid,
  .legal-page__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading h2,
  .roles-section h2,
  .faq-section h2,
  .final-cta h2,
  .compact-cta h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .capability {
    grid-column: span 12;
    min-height: 290px;
  }

  .product-showcase__tabs button {
    min-height: 58px;
    gap: 5px;
    font-size: 0.66rem;
  }

  .product-showcase__tabs button span {
    display: none;
  }

  .product-showcase__copy {
    display: block;
    padding: 30px 24px;
  }

  .product-showcase__index {
    display: block;
    margin: 0 0 22px;
  }

  .product-showcase__copy h3 {
    font-size: 2.6rem;
  }

  .product-showcase__image {
    margin: 0 12px 12px;
  }

  .workflow-line {
    grid-template-columns: 1fr;
  }

  .workflow-line article,
  .workflow-line article:not(:first-child) {
    min-height: auto;
    padding: 38px 0;
    border-right: 0;
  }

  .workflow-line__number {
    margin-bottom: 34px;
  }

  .roles-section__intro,
  .faq-page__grid > aside,
  .legal-page__grid > aside {
    position: static;
  }

  .roles-section__visual {
    width: 210px;
    height: 210px;
  }

  .role-list article {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

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

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

  .faq-list summary {
    grid-template-columns: 32px 1fr 20px;
    gap: 10px;
  }

  .faq-list__answer {
    padding-left: 42px;
    padding-right: 8px;
  }

  .final-cta__inner,
  .compact-cta__inner {
    min-height: 500px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 52px;
  }

  .final-cta__inner {
    display: grid;
  }

  .compact-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .page-hero,
  .page-hero__grid {
    min-height: 560px;
  }

  .page-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }

  .guide-timeline::before {
    left: 26px;
  }

  .guide-timeline article {
    min-height: auto;
    grid-template-columns: 54px 1fr;
    gap: 20px;
  }

  .guide-timeline__marker span {
    width: 44px;
    height: 44px;
  }

  .guide-timeline h2 {
    font-size: 2.4rem;
  }

  .legal-page article > section {
    padding-left: 40px;
  }
}

@media (max-width: 440px) {
  .mobile-menu__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

.language-redirect {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 24px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.language-redirect p {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.language-redirect a {
  color: var(--ember-light);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
