:root {
  color-scheme: light;

  --ink: #24162f;
  --ink-soft: #514657;
  --canvas: #fbf7ef;
  --white: #ffffff;
  --stone: #f3ede5;
  --stone-deep: #e9e0d7;
  --muted: #6c6270;
  --border: #dcd2c9;
  --border-strong: #b5a8b2;
  --coral: #f36f5f;
  --coral-strong: #b64038;
  --coral-soft: #fce2dd;
  --lilac: #b8a7f5;
  --lilac-soft: #eeeafb;
  --mint: #a8d5c2;
  --mint-soft: #e5f3ed;
  --success: #287a5c;
  --focus: #6b56d8;

  --font-display: "STIX Two Text", "Iowan Old Style", "Baskerville",
    Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 18px 50px rgb(36 22 47 / 0.08);
  --shadow-lifted: 0 32px 90px rgb(36 22 47 / 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  background: var(--lilac);
  color: var(--ink);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 164px);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(36 22 47 / 0.1);
}

.nav-shell {
  display: grid;
  min-height: 90px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 164px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.sign-in {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links a::after,
.sign-in::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--coral-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.sign-in:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(36 22 47 / 0.13);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover {
  background: #382640;
  box-shadow: 0 14px 28px rgb(36 22 47 / 0.18);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.78rem;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding-top: 90px;
  border-bottom: 1px solid rgb(36 22 47 / 0.12);
}

.hero::before {
  position: absolute;
  top: -320px;
  left: -210px;
  width: 680px;
  height: 680px;
  border: 1px solid rgb(184 167 245 / 0.28);
  border-radius: 50%;
  content: "";
}

.hero-wash {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 47% 49%, rgb(184 167 245 / 0.28), transparent 54%),
    radial-gradient(circle at 66% 55%, rgb(243 111 95 / 0.16), transparent 32%);
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  padding-block: 92px 56px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  animation: hero-in 700ms 80ms both ease-out;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: var(--coral-strong);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgb(243 111 95 / 0.13);
}

.eyebrow-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgb(182 64 56 / 0.25);
  border-radius: inherit;
  content: "";
  animation: soft-pulse 2.6s infinite ease-out;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.043em;
}

h1 {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(4.2rem, 6vw, 6.35rem);
  line-height: 0.94;
}

.hero-lede {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 37px;
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration-color: var(--border-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-action span {
  color: var(--coral-strong);
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translateY(3px);
}

.language-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 12px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.language-line span {
  position: relative;
  color: var(--ink-soft);
}

.language-line span + span {
  padding-left: 12px;
}

.language-line span + span::before {
  position: absolute;
  left: 0;
  color: var(--border-strong);
  content: "·";
}

.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
  animation: product-in 820ms 160ms both ease-out;
}

.product-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orbit-coral {
  top: -62px;
  right: -55px;
  width: 148px;
  height: 148px;
  background: rgb(243 111 95 / 0.84);
}

.orbit-lilac {
  bottom: -55px;
  left: -42px;
  width: 128px;
  height: 128px;
  background: rgb(184 167 245 / 0.75);
}

.session-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgb(36 22 47 / 0.14);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lifted);
  transform: rotate(1deg);
  transform-origin: center;
}

.session-topbar {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 19px;
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 0.88);
}

.session-person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.voice-status {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
}

.voice-status::before,
.voice-status::after,
.voice-status span {
  display: block;
  width: 2px;
  border-radius: 999px;
  background: var(--success);
  content: "";
}

.voice-status::before {
  height: 7px;
  transform: translateX(-5px);
}

.voice-status::after {
  position: absolute;
  height: 12px;
  transform: translateX(5px);
}

.voice-status span {
  position: absolute;
  height: 17px;
}

.session-person strong,
.session-person small {
  display: block;
}

.session-person strong {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.15;
}

.session-person small {
  margin-top: 2px;
  color: var(--success);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 650;
}

.timer {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.session-body {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1.45fr) minmax(160px, 0.72fr);
}

.conversation {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 17px;
  padding: 23px 20px 74px;
  background:
    linear-gradient(rgb(251 247 239 / 0.76), rgb(251 247 239 / 0.76)),
    radial-gradient(circle at 24% 22%, var(--lilac-soft), transparent 38%);
}

.today-chip {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid #e8a39b;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 650;
}

.today-chip span {
  margin-right: 6px;
  color: var(--coral-strong);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.message {
  max-width: 88%;
}

.message .speaker {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.58;
}

.message-lena p {
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  background: var(--white);
  color: var(--ink-soft);
}

.message-you {
  align-self: flex-end;
}

.message-you .speaker {
  text-align: right;
}

.message-you p {
  border-bottom-right-radius: 4px;
  background: var(--ink);
  color: var(--canvas);
}

.replay {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.51rem;
}

.replay svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.composer-demo {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 10px;
  padding: 8px 9px 8px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 8px 25px rgb(36 22 47 / 0.08);
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 650;
}

.wave-bars {
  display: flex;
  height: 16px;
  align-items: center;
  gap: 2px;
}

.wave-bars i {
  width: 2px;
  border-radius: 999px;
  background: var(--coral);
  animation: wave 1.15s infinite ease-in-out;
}

.wave-bars i:nth-child(1),
.wave-bars i:nth-child(7) {
  height: 5px;
}

.wave-bars i:nth-child(2),
.wave-bars i:nth-child(6) {
  height: 9px;
  animation-delay: -0.28s;
}

.wave-bars i:nth-child(3),
.wave-bars i:nth-child(5) {
  height: 13px;
  animation-delay: -0.46s;
}

.wave-bars i:nth-child(4) {
  height: 16px;
  animation-delay: -0.62s;
}

.mic-icon {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--canvas);
}

.mic-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.insights-demo {
  min-width: 0;
  padding: 22px 14px;
  border-left: 1px solid var(--border);
  background: var(--white);
}

.insight-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.insight-heading-spaced {
  margin-top: 24px;
}

.lilac-dot,
.coral-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.lilac-dot {
  background: var(--lilac);
}

.coral-dot {
  background: var(--coral);
}

.memory-card,
.correction-card {
  margin-top: 9px;
  padding: 10px;
  border-radius: 10px;
}

.memory-card {
  border: 1px solid rgb(184 167 245 / 0.55);
  background: var(--lilac-soft);
}

.correction-card {
  border: 1px solid rgb(243 111 95 / 0.44);
  background: var(--coral-soft);
}

.memory-card small,
.correction-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.43rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.memory-card p,
.correction-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.57rem;
  line-height: 1.45;
}

.correction-card .before {
  color: #9c4e54;
  text-decoration: line-through;
}

.correction-card .after {
  margin-top: 3px;
  color: var(--success);
  font-weight: 650;
}

.continuity-note {
  position: absolute;
  z-index: 4;
  right: -34px;
  bottom: -36px;
  display: flex;
  min-width: 236px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgb(36 22 47 / 0.12);
  border-radius: 16px;
  background: var(--canvas);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  transform: rotate(-2deg);
}

.continuity-note small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--success);
}

.note-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-top: 1px solid rgb(36 22 47 / 0.1);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.manifesto {
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: clamp(48px, 9vw, 135px);
}

.manifesto-grid h2 {
  max-width: 950px;
  margin-bottom: 37px;
  font-size: clamp(3rem, 5.3vw, 5.75rem);
  line-height: 1;
}

.manifesto-grid > div > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: clamp(50px, 10vw, 145px);
  margin-bottom: 67px;
}

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

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

.feature {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgb(36 22 47 / 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 30px rgb(36 22 47 / 0.035);
}

.feature-followthrough {
  display: grid;
  min-height: 485px;
  grid-column: 1 / -1;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  background: var(--stone);
}

.feature-copy {
  padding: clamp(34px, 4.5vw, 61px);
}

.feature-memory .feature-copy,
.feature-feedback .feature-copy {
  padding-bottom: 32px;
}

.feature-number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--coral-strong);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature h3 {
  max-width: 490px;
  margin-bottom: 21px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.04;
}

.feature-copy > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.memory-stack {
  position: relative;
  width: calc(100% - clamp(44px, 7vw, 86px));
  min-height: 274px;
  margin: 10px auto 0;
  padding: 29px 25px 23px;
  border: 1px solid rgb(184 167 245 / 0.48);
  border-radius: 26px 26px 0 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 75% 4%, rgb(184 167 245 / 0.32), transparent 36%),
    var(--lilac-soft);
}

.memory-stack::before {
  position: absolute;
  top: -15px;
  right: 27px;
  width: 31px;
  height: 31px;
  border: 7px solid var(--canvas);
  border-radius: 50%;
  background: var(--lilac);
  content: "";
}

.memory-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgb(36 22 47 / 0.1);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.78);
  box-shadow: 0 8px 20px rgb(36 22 47 / 0.045);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 600;
}

.memory-row + .memory-row {
  margin-top: 9px;
}

.row-two {
  transform: translateX(13px);
}

.row-three {
  transform: translateX(-6px);
}

.memory-glyph {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--lilac-soft);
  color: var(--focus);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
}

.memory-row small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.47rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.memory-control {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.58rem;
  text-align: center;
}

.feature-feedback {
  background:
    linear-gradient(160deg, var(--white) 50%, rgb(252 226 221 / 0.78) 100%);
}

.feedback-visual {
  position: relative;
  width: calc(100% - clamp(44px, 7vw, 86px));
  min-height: 245px;
  margin: 14px auto 0;
  padding: 31px;
  border: 1px solid rgb(243 111 95 / 0.4);
  border-radius: 26px 26px 0 0;
  border-bottom: 0;
  background: rgb(255 255 255 / 0.74);
}

.feedback-label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-strong);
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feedback-old {
  margin: 30px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.3;
}

.feedback-rule {
  display: flex;
  align-items: center;
  margin-block: 18px;
}

.feedback-rule span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.feedback-rule i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.feedback-new {
  margin: 0;
  color: var(--success);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 600;
}

.feedback-note {
  display: block;
  max-width: 330px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.6;
}

.loop-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 30px clamp(32px, 5vw, 72px) 30px 0;
}

.loop-step {
  position: relative;
  min-height: 160px;
  padding: 30px 25px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgb(255 255 255 / 0.82);
  box-shadow: var(--shadow-soft);
}

.loop-step::before {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 31px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--lilac);
  box-shadow: 0 0 0 1px var(--border);
  content: "";
}

.loop-step.is-active {
  border-color: rgb(243 111 95 / 0.55);
}

.loop-step.is-active::before {
  background: var(--coral);
}

.loop-step span,
.loop-step small {
  display: block;
}

.loop-step span {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
}

.loop-step small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.59rem;
  line-height: 1.5;
}

.loop-line {
  width: 28px;
  height: 1px;
  background: var(--border-strong);
}

.loop-line i {
  display: block;
  width: 5px;
  height: 5px;
  margin-top: -2px;
  margin-left: auto;
  border-top: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
  transform: rotate(45deg);
}

.how {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--canvas);
}

.how::before {
  position: absolute;
  top: -290px;
  right: -170px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(184 167 245 / 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgb(184 167 245 / 0.025),
    0 0 0 140px rgb(184 167 245 / 0.018);
  content: "";
}

.section-kicker-light {
  color: #ff9b90;
}

.how-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.how-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -33px;
}

.how-intro h2 {
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 6.75rem);
  line-height: 0.94;
}

.how-intro > p:last-child {
  max-width: 490px;
  margin: 0 0 6px;
  color: #c8bdcc;
  line-height: 1.78;
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 95px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgb(251 247 239 / 0.2);
}

.steps li {
  position: relative;
  min-height: 375px;
  padding: 33px clamp(26px, 3.7vw, 48px) 25px 0;
}

.steps li + li {
  padding-left: clamp(26px, 3.7vw, 48px);
  border-left: 1px solid rgb(251 247 239 / 0.2);
}

.step-index {
  color: #afa2b4;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 47px;
  place-items: center;
  border: 1px solid rgb(251 247 239 / 0.2);
  border-radius: 18px;
  background: rgb(251 247 239 / 0.055);
  color: var(--lilac);
}

.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.steps h3 {
  margin: 30px 0 15px;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.08;
}

.steps p {
  max-width: 330px;
  margin: 0;
  color: #c8bdcc;
  font-size: 0.86rem;
  line-height: 1.72;
}

.progress {
  background:
    radial-gradient(circle at 9% 70%, rgb(168 213 194 / 0.28), transparent 28%),
    var(--white);
}

.progress-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
}

.progress-copy h2 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
  line-height: 0.98;
}

.progress-copy > p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  background: var(--mint-soft);
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.recap-card {
  position: relative;
  padding: clamp(28px, 4.5vw, 48px);
  border: 1px solid rgb(36 22 47 / 0.12);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: var(--shadow-lifted);
  transform: rotate(1deg);
}

.recap-card::before {
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -20px;
  bottom: -20px;
  left: 22px;
  border: 1px solid rgb(168 213 194 / 0.6);
  border-radius: inherit;
  content: "";
}

.recap-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.recap-top small,
.can-do small,
.progress-row small {
  display: block;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.complete-pill {
  padding: 6px 10px;
  border: 1px solid rgb(168 213 194 / 0.8);
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--success);
  font-family: var(--font-sans);
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.can-do {
  margin-top: 25px;
  padding: 23px;
  border: 1px solid rgb(168 213 194 / 0.85);
  border-radius: 16px;
  background: var(--mint-soft);
}

.can-do p {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
}

.recap-stats {
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.recap-stats div {
  min-height: 106px;
  padding: 21px 13px 15px 0;
}

.recap-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.recap-stats strong,
.recap-stats span {
  display: block;
}

.recap-stats strong {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1;
}

.recap-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.4;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
}

.progress-dots {
  display: flex;
  gap: 4px;
}

.progress-dots i {
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: var(--mint);
}

.progress-dots i:last-child {
  background: var(--border);
}

.example-label {
  margin: 24px 0 -25px;
  color: var(--muted);
  font-size: 0.49rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.languages-section {
  background: var(--stone);
}

.language-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(70px, 11vw, 155px);
}

.language-panel h2 {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.97;
}

.language-panel > div > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.language-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.language-list li {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--canvas);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.language-list li::after {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--border);
  border-radius: 50%;
  content: "";
  transition: transform 200ms ease;
}

.language-list li:nth-child(1)::after {
  background: var(--coral-soft);
}

.language-list li:nth-child(2)::after {
  background: var(--lilac-soft);
}

.language-list li:nth-child(3)::after {
  background: var(--mint-soft);
}

.language-list li:nth-child(4)::after {
  background: var(--coral-soft);
}

.language-list li:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.language-list li:hover::after {
  transform: scale(1.08);
}

.language-list span,
.language-list small {
  position: relative;
  z-index: 1;
  display: block;
}

.language-list span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
}

.language-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.questions {
  background: var(--white);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 11vw, 145px);
}

.questions-intro {
  align-self: start;
}

.questions-intro h2 {
  max-width: 440px;
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
  line-height: 0.99;
}

.questions-intro > p:last-child {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 92px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  background: var(--lilac-soft);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 690px;
  margin: -3px 0 0;
  padding: 0 64px 30px 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 190px);
  background: var(--ink);
  color: var(--canvas);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgb(251 247 239 / 0.1);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -370px;
  left: 50%;
  width: 850px;
  height: 850px;
  transform: translateX(-50%);
}

.final-cta::after {
  top: -250px;
  left: 50%;
  width: 610px;
  height: 610px;
  transform: translateX(-50%);
}

.final-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
}

.final-glow-one {
  top: -20px;
  left: 18%;
  width: 260px;
  height: 260px;
  background: var(--lilac);
}

.final-glow-two {
  right: 18%;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: var(--coral);
}

.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 31px;
}

.final-inner .section-kicker {
  margin-bottom: 18px;
}

.final-inner h2 {
  margin-bottom: 25px;
  font-size: clamp(4.3rem, 8vw, 8rem);
  line-height: 0.9;
}

.final-inner > p {
  max-width: 520px;
  margin: 0;
  color: #c8bdcc;
  font-size: 1.03rem;
}

.button-light {
  margin-top: 40px;
  border-color: var(--canvas);
  background: var(--canvas);
  color: var(--ink);
  box-shadow: 0 12px 35px rgb(0 0 0 / 0.18);
}

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

.site-footer {
  padding-block: 70px 26px;
  background: #1c1125;
  color: var(--canvas);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-decoration: none;
}

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

.footer-brand p {
  margin: 17px 0 0;
  color: #afa2b4;
  font-size: 0.76rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: clamp(50px, 8vw, 100px);
}

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

.footer-links strong {
  margin-bottom: 7px;
  color: #afa2b4;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: #e6dce8;
  font-size: 0.75rem;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  text-decoration-color: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 23px;
  border-top: 1px solid rgb(251 247 239 / 0.1);
  color: #afa2b4;
  font-size: 0.59rem;
  letter-spacing: 0.03em;
}

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

@keyframes product-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soft-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    justify-content: center;
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.72rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 30px;
  }

  h1 {
    font-size: clamp(4rem, 6.8vw, 5.1rem);
  }

  .feature {
    min-height: 625px;
  }

  .feature-followthrough {
    min-height: 470px;
  }

  .loop-visual {
    gap: 8px;
  }

  .loop-step {
    padding-inline: 18px;
  }

  .loop-line {
    width: 18px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-block: 94px 92px;
  }

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

  h1 {
    max-width: 700px;
    font-size: clamp(4.4rem, 11.5vw, 6.4rem);
  }

  .hero-product {
    width: min(680px, calc(100% - 25px));
    margin-inline: auto;
  }

  .manifesto-grid,
  .section-heading,
  .progress-grid,
  .language-panel,
  .questions-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 30px;
  }

  .manifesto-grid .section-kicker {
    margin-bottom: 0;
  }

  .section-heading {
    gap: 30px;
  }

  .section-heading > p {
    max-width: 600px;
  }

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

  .feature {
    min-height: 620px;
  }

  .feature-followthrough {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }

  .loop-visual {
    padding: 10px 42px 0;
  }

  .how-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .how-intro .section-kicker {
    margin-bottom: 0;
  }

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

  .steps li {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    column-gap: 28px;
    padding: 42px 0;
  }

  .steps li + li {
    padding-left: 0;
    border-top: 1px solid rgb(251 247 239 / 0.2);
    border-left: 0;
  }

  .step-index {
    grid-row: 1 / span 3;
  }

  .step-icon {
    margin-top: 0;
  }

  .steps h3 {
    margin-top: 20px;
  }

  .steps p {
    max-width: 570px;
  }

  .progress-grid,
  .language-panel,
  .questions-grid {
    gap: 70px;
  }

  .recap-card {
    width: min(680px, calc(100% - 20px));
  }

  .language-panel > div {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding-block: 88px;
  }

  .site-header {
    background: rgb(251 247 239 / 0.86);
    backdrop-filter: blur(12px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    width: 132px;
  }

  .nav-actions {
    gap: 14px;
  }

  .sign-in {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 15px;
  }

  .button-small svg {
    display: none;
  }

  .hero {
    padding-top: 74px;
  }

  .hero::before {
    display: none;
  }

  .hero-wash {
    top: -100px;
    right: -300px;
  }

  .hero-grid {
    gap: 58px;
    padding-block: 72px 75px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 0.61rem;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(3.65rem, 17vw, 5.1rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 30px;
  }

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

  .text-action {
    padding-inline: 4px;
  }

  .language-line {
    gap: 6px 8px;
    margin-top: 24px;
  }

  .language-line > span {
    display: none;
  }

  .language-line::after {
    color: var(--ink-soft);
    content: "English · French · German · Spanish";
  }

  .hero-product {
    width: calc(100% - 6px);
  }

  .session-window {
    border-radius: 21px;
    transform: rotate(0.5deg);
  }

  .session-topbar {
    min-height: 61px;
    padding-inline: 13px;
  }

  .session-meta > span:first-child {
    display: none;
  }

  .session-body {
    grid-template-columns: 1fr;
  }

  .conversation {
    min-height: 408px;
    padding-inline: 15px;
  }

  .insights-demo {
    display: none;
  }

  .message {
    max-width: 90%;
  }

  .continuity-note {
    right: -6px;
    bottom: -32px;
    min-width: 211px;
  }

  .orbit-coral {
    top: -27px;
    right: -19px;
    width: 74px;
    height: 74px;
  }

  .orbit-lilac {
    bottom: -24px;
    left: -13px;
    width: 70px;
    height: 70px;
  }

  .hero-proof {
    min-height: 67px;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    font-size: 0.52rem;
    white-space: nowrap;
  }

  .manifesto-grid h2,
  .section-heading h2,
  .progress-copy h2,
  .language-panel h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .feature {
    min-height: 595px;
    border-radius: 24px;
  }

  .feature-copy {
    padding: 32px 26px;
  }

  .feature h3 {
    font-size: 2.15rem;
  }

  .memory-stack,
  .feedback-visual {
    width: calc(100% - 28px);
  }

  .memory-stack {
    padding-inline: 13px;
  }

  .memory-row {
    padding-inline: 11px;
  }

  .feedback-visual {
    padding: 25px 21px;
  }

  .feature-followthrough {
    min-height: 640px;
  }

  .loop-visual {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 0 22px;
  }

  .loop-step {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    padding: 18px;
  }

  .loop-step::before {
    grid-row: 1 / span 2;
    margin: 4px 0 0;
  }

  .loop-step small {
    margin-top: 3px;
  }

  .loop-line {
    width: 1px;
    height: 20px;
    margin-left: 24px;
    background: var(--border-strong);
  }

  .loop-line i {
    width: 5px;
    height: 5px;
    margin-top: auto;
    margin-left: -2px;
    border: 0;
    border-right: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border-strong);
    transform: rotate(45deg);
  }

  .how-intro h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .steps {
    margin-top: 65px;
  }

  .steps li {
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .steps h3 {
    font-size: 1.85rem;
  }

  .recap-card {
    width: calc(100% - 10px);
    padding: 25px 20px 34px;
    border-radius: 24px;
  }

  .recap-card::before {
    right: -10px;
    bottom: -12px;
  }

  .recap-stats div {
    min-height: 100px;
    padding-inline: 9px;
  }

  .recap-stats div + div {
    padding-left: 10px;
  }

  .recap-stats strong {
    font-size: 1.65rem;
  }

  .progress-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress-dots {
    width: 100%;
  }

  .progress-dots i {
    flex: 1;
  }

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

  .language-list li {
    min-height: 130px;
  }

  .questions-grid {
    gap: 50px;
  }

  .questions-intro h2 {
    font-size: 3rem;
  }

  .faq-list summary {
    min-height: 82px;
    gap: 15px;
    padding-block: 14px;
    font-size: 1.25rem;
  }

  .faq-list details > p {
    padding-right: 20px;
  }

  .final-inner h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

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

  .footer-links {
    gap: 35px;
  }

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

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

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