@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/CormorantGaramond-SemiBold-cyrillic.woff2") format("woff2");
  unicode-range: U+0400-04FF, U+0500-052F, U+2DE0-2DFF, U+A640-A69F;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/CormorantGaramond-SemiBold-latin.woff2") format("woff2");
  unicode-range: U+0000-024F;
}

:root {
  --ink: #17221f;
  --ink-soft: #43514d;
  --green: #173d35;
  --green-bright: #2f6a5b;
  --paper: #f4f6f4;
  --white: #ffffff;
  --line: rgba(23, 34, 31, 0.16);
  --coral: #ef6c54;
  --coral-soft: #f2d9d3;
  --gold: #dbae4c;
  --blue: #91a9cb;
  --blue-soft: #dde6f0;
  --sage: #dce8d4;
  --display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-kerning: normal;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
a,
input {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

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

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

.landing-container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 84px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: rgba(244, 246, 244, 0.82);
  box-shadow: 0 1px 0 rgba(23, 34, 31, 0.08);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-sticky {
  position: fixed;
  min-height: 68px;
  background: rgba(244, 246, 244, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.landing-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.landing-brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
}

.landing-brand span,
.footer-brand strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.text-link {
  position: relative;
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 14px;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover,
.button-light:hover {
  background: #0d2d27;
}

.button-quiet {
  border-color: rgba(23, 34, 31, 0.28);
  color: var(--ink);
  background: var(--white);
}

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

.button-coral {
  color: #261714;
  background: var(--coral);
}

.landing-hero {
  position: relative;
  display: flex;
  height: 92svh;
  min-height: 700px;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero-wordmark {
  position: absolute;
  z-index: 0;
  top: 108px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.hero-wordmark h1 {
  margin: 0;
  color: #a8b4ae;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 158px;
  font-weight: 860;
  line-height: 0.84;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(var(--wordmark-x, 0), var(--wordmark-y, 0), 0);
  clip-path: inset(0 100% 0 0);
  animation: hero-name-reveal 960ms 180ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 180ms ease-out;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  top: 92px;
  bottom: -7%;
  left: 50%;
  width: 510px;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 260ms ease;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 5%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 5%, #000 78%, transparent 100%);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 70px 34px var(--paper);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.035);
}

@keyframes hero-name-reveal {
  to { clip-path: inset(0 0 0 0); }
}

.hero-flight-avatar {
  position: fixed;
  z-index: 1000;
  max-width: none;
  object-fit: cover;
  object-position: 50% 20%;
  pointer-events: none;
  box-shadow: 0 18px 54px rgba(23, 34, 31, 0.22);
  transition:
    left 520ms cubic-bezier(0.22, 1, 0.36, 1),
    top 520ms cubic-bezier(0.22, 1, 0.36, 1),
    width 520ms cubic-bezier(0.22, 1, 0.36, 1),
    height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 420ms ease;
}

body.is-leaving-for-chat .landing-hero > :not(.hero-flight-avatar),
body.is-leaving-for-chat .site-header > :not(.landing-brand) {
  opacity: 0.35;
  transition: opacity 320ms ease;
}

.hero-scene {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  transition: opacity 260ms ease;
}

@media (min-width: 901px) {
  .hero-scene {
    clip-path: inset(0 29%);
  }

  .hero-scene canvas {
    transform: translateY(14px);
  }
}

.hero-scene canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 28px rgba(23, 34, 31, 0.14));
}

.landing-hero.hero-3d-ready .hero-photo {
  opacity: 0;
}

.hero-scene[data-scene-state="fallback"],
.hero-scene[data-scene-state="disabled"] {
  opacity: 0;
}

.motion-control {
  position: absolute;
  z-index: 7;
  right: 26px;
  bottom: 26px;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 34, 31, 0.62);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.motion-control svg {
  width: 17px;
  height: 17px;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 1fr) minmax(330px, 0.9fr);
  align-items: end;
  gap: 32px;
  padding-bottom: 92px;
}

.hero-copy {
  grid-column: 1;
}

.hero-conversion {
  grid-column: 3;
  width: 260px;
  justify-self: end;
}

@media (min-width: 901px) {
  .hero-copy,
  .hero-conversion {
    position: relative;
    z-index: 1;
    isolation: isolate;
  }

  .hero-copy::before,
  .hero-conversion::before {
    position: absolute;
    z-index: -1;
    top: -100vh;
    bottom: -120px;
    content: "";
    pointer-events: none;
  }

  .hero-copy::before {
    right: -38px;
    left: -100vw;
    background: linear-gradient(90deg, var(--paper) 0, var(--paper) calc(100% - 26px), rgba(244, 246, 244, 0));
  }

  .hero-conversion::before {
    right: -100vw;
    left: -38px;
    background: linear-gradient(90deg, rgba(244, 246, 244, 0), var(--paper) 26px, var(--paper) 100%);
  }
}

.hero-kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  max-width: 240px;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.hero-kicker span {
  width: 24px;
  height: 2px;
  background: var(--coral);
}

.hero-promise {
  max-width: 420px;
  margin: 0;
  color: #273530;
  font-size: 22px;
  font-weight: 540;
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

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

.hero-note {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-next {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-next svg {
  width: 16px;
  height: 16px;
}

.path-section,
.try-section,
.presence-section,
.memory-section,
.privacy-section,
.tokens-section {
  padding: 116px 0;
}

.path-section {
  padding-top: 36px;
  background: var(--white);
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 100px;
}

.section-intro h2,
.try-heading h2,
.laboratory-intro h2,
.presence-heading h2,
.memory-layout h2,
.privacy-layout h2,
.tokens-layout h2,
.final-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
}

.section-intro > p:last-child,
.try-heading > p,
.laboratory-intro > p,
.memory-copy,
.privacy-layout > div:last-child > p,
.tokens-copy,
.final-content > p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.section-intro > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
}

.clarity-path {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.clarity-path li {
  display: grid;
  min-height: 136px;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.path-number {
  color: var(--coral);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.clarity-path strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.clarity-path p {
  margin: 0;
  color: var(--ink-soft);
}

.try-section {
  background: var(--blue-soft);
}

.try-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.try-heading > p {
  margin: 0;
}

.demo-workspace {
  overflow: hidden;
  border: 1px solid rgba(23, 34, 31, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(39, 61, 73, 0.12);
}

.demo-situations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.demo-situations button {
  min-height: 62px;
  padding: 10px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  background: #f7f8f7;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.demo-situations button:last-child {
  border-right: 0;
}

.demo-situations button.active {
  color: var(--white);
  background: var(--green);
}

.demo-conversation {
  display: grid;
  min-height: 280px;
  align-content: center;
  gap: 26px;
  padding: 44px 7%;
  background: #f8faf9;
}

.demo-workspace.is-switching .demo-conversation,
.demo-workspace.is-switching .demo-analysis {
  opacity: 0.18;
  transform: translateY(6px);
}

.demo-conversation,
.demo-analysis {
  transition: opacity 180ms ease, transform 220ms ease;
}

.demo-message-zinaida > div {
  transform-origin: left top;
}

.demo-workspace.is-layering .demo-message-zinaida > div {
  animation: demo-reply-arrive 420ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.demo-workspace.is-layering [data-demo-layer] {
  animation: demo-layer-arrive 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(340ms + var(--demo-layer-index) * 260ms);
}

@keyframes demo-reply-arrive {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes demo-layer-arrive {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-message {
  display: flex;
  gap: 12px;
  max-width: 690px;
}

.demo-message > span,
.demo-message div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.demo-message p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.demo-message-user {
  justify-self: end;
  padding: 16px 18px;
  border-radius: 8px 8px 2px 8px;
  color: var(--white);
  background: var(--green);
}

.demo-message-user > span {
  color: rgba(255, 255, 255, 0.68);
}

.demo-message-zinaida {
  align-items: flex-start;
}

.demo-message-zinaida img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
}

.demo-message-zinaida > div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 2px 8px 8px 8px;
  background: var(--white);
}

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

.demo-column {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.demo-column:last-child {
  border-right: 0;
}

.demo-column > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-column > span svg {
  width: 17px;
  height: 17px;
}

.demo-column p {
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.demo-fact {
  box-shadow: inset 0 4px 0 var(--green-bright);
}

.demo-version {
  box-shadow: inset 0 4px 0 var(--blue);
}

.demo-action {
  box-shadow: inset 0 4px 0 var(--coral);
}

.demo-footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px 16px 28px;
}

.demo-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.portfolio-section {
  position: relative;
  height: 330svh;
  color: var(--white);
  background: #122a25;
}

.portfolio-sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  min-height: 650px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 88px 0 26px;
  background:
    linear-gradient(90deg, rgba(145, 169, 203, 0.07), transparent 36%),
    #122a25;
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr) minmax(190px, 0.55fr);
  align-items: end;
  gap: 32px;
}

.portfolio-heading .section-kicker {
  margin: 0 0 7px;
}

.portfolio-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  line-height: 0.98;
}

.portfolio-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-align: right;
}

.portfolio-stage {
  position: relative;
  min-height: 0;
  margin-top: 28px;
  perspective: 1600px;
  perspective-origin: 50% 15%;
}

.portfolio-panel {
  --portfolio-y: 112%;
  --portfolio-scale: 0.98;
  --portfolio-rotate: 6deg;
  --portfolio-opacity: 0;
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: 42px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  opacity: var(--portfolio-opacity);
  transform: translate3d(0, var(--portfolio-y), 0) rotateX(var(--portfolio-rotate)) scale(var(--portfolio-scale));
  transform-origin: 50% 0;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.28);
  will-change: transform, opacity;
}

.portfolio-panel:first-child {
  --portfolio-y: 0%;
  --portfolio-scale: 1;
  --portfolio-rotate: 0deg;
  --portfolio-opacity: 1;
}

.portfolio-panel-chat {
  color: var(--ink);
  background: #eef3ef;
}

.portfolio-panel-lab {
  color: var(--ink);
  background: #e3e9f1;
}

.portfolio-panel-share {
  color: #231d21;
  background: #f0d9d2;
}

.portfolio-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.portfolio-number {
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.portfolio-panel-share .portfolio-number {
  color: #a04439;
}

.portfolio-copy h3 {
  max-width: 500px;
  margin: 20px 0 18px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.portfolio-copy > p {
  max-width: 460px;
  margin: 0;
  color: rgba(23, 34, 31, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

.portfolio-copy > strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  font-size: 12px;
  line-height: 1.35;
}

.portfolio-copy > strong svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-bright);
}

.portfolio-product {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 31, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.portfolio-chat-preview {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 7%;
}

.portfolio-message {
  display: flex;
  gap: 11px;
  max-width: 560px;
}

.portfolio-message span {
  display: block;
  margin-bottom: 5px;
  color: rgba(23, 34, 31, 0.62);
  font-size: 10px;
  font-weight: 820;
}

.portfolio-message p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.portfolio-message-user {
  justify-self: end;
  padding: 14px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px 8px 2px 8px;
}

.portfolio-message-user span {
  color: rgba(255, 255, 255, 0.65);
}

.portfolio-message-zinaida {
  align-items: flex-start;
}

.portfolio-message-zinaida img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
}

.portfolio-message-zinaida > div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px 8px 8px 8px;
  background: var(--white);
}

.portfolio-signal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.portfolio-signal-row span {
  display: grid;
  gap: 3px;
  padding: 13px;
  background: var(--white);
  font-size: 11px;
}

.portfolio-signal-row b {
  color: var(--green-bright);
  font-size: 10px;
  text-transform: uppercase;
}

.portfolio-lab-preview {
  display: grid;
  align-content: center;
  padding: 6%;
}

.portfolio-lab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 4px 17px;
  border-bottom: 1px solid var(--line);
}

.portfolio-lab-head span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-lab-preview ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-lab-preview li {
  display: grid;
  min-height: 94px;
  grid-template-columns: 110px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.portfolio-lab-preview li:last-child {
  border-bottom: 0;
}

.portfolio-lab-preview li b {
  font-family: var(--display);
  font-size: 22px;
}

.portfolio-lab-preview li span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.portfolio-lab-preview li svg {
  width: 26px;
  height: 26px;
  color: var(--green-bright);
}

.portfolio-video-preview {
  display: grid;
  place-items: center;
  background: #2a2428;
}

.portfolio-video-window {
  position: relative;
  width: min(260px, 74%);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 61, 53, 0.18), rgba(23, 34, 31, 0.84)),
    url("/assets/zinaida-photo.jpg") center 18% / cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  aspect-ratio: 9 / 16;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.portfolio-video-top {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
}

.portfolio-video-top svg {
  width: 13px;
  height: 13px;
  fill: var(--coral);
  color: var(--coral);
}

.portfolio-video-window blockquote {
  position: absolute;
  right: 16px;
  bottom: 126px;
  left: 16px;
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.02;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.portfolio-camera-bubble {
  position: absolute;
  right: 14px;
  bottom: 62px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--green);
  background: var(--sage);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.portfolio-camera-bubble svg {
  width: 24px;
  height: 24px;
}

.portfolio-captions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
}

.portfolio-captions span {
  color: var(--green-bright);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-captions strong {
  font-size: 9px;
  line-height: 1.28;
}

.portfolio-progress {
  width: min(1240px, calc(100% - 64px));
  height: 3px;
  margin: 20px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.portfolio-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.laboratory-section {
  padding: 126px 0;
  color: var(--white);
  background: var(--green);
}

.laboratory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 100px;
}

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

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

.laboratory-intro > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.inline-action svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.inline-action:hover svg {
  transform: translateX(4px);
}

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

.laboratory-workflow {
  min-width: 0;
}

.laboratory-thread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.laboratory-thread::before {
  position: absolute;
  top: 18px;
  right: calc(16.667% - 8px);
  left: calc(16.667% - 8px);
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
}

.laboratory-thread::after {
  position: absolute;
  top: 18px;
  left: calc(16.667% - 8px);
  width: calc(66.666% + 16px);
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.laboratory-thread.is-connected::after {
  animation: laboratory-thread-connect 980ms 180ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.laboratory-thread article {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  opacity: 1;
  transform: none;
}

.laboratory-thread article::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--green);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
}

.laboratory-thread.is-connected article {
  animation: laboratory-thread-node 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.laboratory-thread.is-connected article:nth-child(2) { animation-delay: 480ms; }
.laboratory-thread.is-connected article:nth-child(3) { animation-delay: 820ms; }

.laboratory-thread article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.laboratory-thread article p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

@keyframes laboratory-thread-connect { to { transform: scaleX(1); } }

@keyframes laboratory-thread-node {
  from { opacity: 0.28; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.laboratory-lines article {
  display: grid;
  min-height: 134px;
  grid-template-columns: 46px 1fr 42px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.laboratory-lines article > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
}

.laboratory-lines h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.laboratory-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.laboratory-lines article > svg {
  width: 30px;
  height: 30px;
  color: var(--coral);
}

.presence-section {
  background: var(--white);
}

.presence-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.presence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 0.5fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.presence-feature {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #f7f8f7;
}

.presence-feature:last-child {
  border-right: 0;
}

.presence-feature > svg {
  width: 32px;
  height: 32px;
  color: var(--green-bright);
}

.presence-feature span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.presence-feature h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.04;
}

.presence-feature p {
  margin: 0;
  color: var(--ink-soft);
}

.presence-feature-main {
  position: relative;
  min-height: 380px;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.presence-feature-main > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.presence-feature-main span,
.presence-feature-main p {
  color: rgba(255, 255, 255, 0.72);
}

.presence-photo {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 48%;
  overflow: hidden;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.presence-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  opacity: 0.88;
}

.memory-section {
  background: var(--coral-soft);
}

.memory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px 100px;
}

.memory-copy p {
  margin: 0 0 20px;
}

.memory-track {
  grid-column: 1 / -1;
  display: grid;
  min-height: 120px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(23, 34, 31, 0.22);
  border-bottom: 1px solid rgba(23, 34, 31, 0.22);
}

.memory-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  text-align: center;
}

.memory-track svg {
  width: 20px;
  height: 20px;
}

.memory-track > svg {
  color: var(--coral);
}

.privacy-section {
  background: var(--blue-soft);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: 86px;
}

.privacy-symbol {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(23, 34, 31, 0.28);
  transform: rotate(45deg);
}

.privacy-symbol svg {
  width: 76px;
  height: 76px;
  color: var(--green);
  transform: rotate(-45deg);
}

.privacy-layout > div:last-child > p {
  margin: 26px 0 0;
}

.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
}

.privacy-links a {
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.tokens-section {
  padding: 86px 0;
  background: var(--sage);
}

.tokens-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 100px;
}

.tokens-copy p {
  margin: 0 0 14px;
}

.tokens-copy strong {
  color: var(--green);
  font-size: 18px;
}

.final-section {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
  overflow: hidden;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%, 12% 54%);
}

.final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0.72;
}

.final-content {
  position: relative;
  z-index: 2;
}

.final-content > * {
  max-width: 650px;
}

.final-content > p {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.landing-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #101815;
}

.landing-footer .landing-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.landing-footer p {
  margin: 0;
  font-size: 13px;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.landing-footer a {
  font-size: 13px;
  text-decoration: none;
}

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

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

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-wordmark h1 {
    font-size: 122px;
  }

  .hero-photo {
    width: 390px;
  }

  .hero-promise {
    max-width: 285px;
    font-size: 19px;
  }

  .hero-content {
    grid-template-columns: minmax(245px, 0.9fr) minmax(300px, 0.82fr) minmax(245px, 0.9fr);
    gap: 20px;
  }

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

  .hero-conversion {
    width: 245px;
  }

  .path-layout,
  .laboratory-layout {
    gap: 64px;
  }

  .portfolio-heading {
    grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.35fr) minmax(150px, 0.45fr);
    gap: 22px;
  }

  .portfolio-heading h2 {
    font-size: 42px;
  }

  .portfolio-panel {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: 26px;
    padding: 28px;
  }

  .portfolio-copy h3 {
    font-size: 36px;
  }

  .presence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .presence-feature-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .landing-container {
    width: min(100% - 40px, 720px);
  }

  .site-header {
    min-height: 72px;
    padding-inline: 20px;
  }

  .site-header.is-sticky {
    min-height: 64px;
  }

  .landing-hero {
    height: 92svh;
    min-height: 720px;
  }

  .landing-hero::after {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 39%;
    border-top: 1px solid rgba(23, 34, 31, 0.08);
    background: var(--paper);
    content: "";
  }

  .hero-wordmark {
    top: 98px;
  }

  .hero-wordmark h1 {
    font-size: 96px;
  }

  .hero-photo {
    top: 100px;
    bottom: 9%;
    left: 56%;
    width: 450px;
  }

  .hero-content {
    grid-template-columns: minmax(240px, 0.9fr) minmax(140px, 0.45fr) minmax(260px, 0.92fr);
    gap: 14px;
    padding-bottom: 86px;
  }

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

  .hero-conversion {
    width: 260px;
  }

  .hero-promise {
    max-width: 330px;
    font-size: 18px;
  }

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

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

  .path-section,
  .try-section,
  .presence-section,
  .memory-section,
  .privacy-section {
    padding: 88px 0;
  }

  .path-section {
    padding-top: 40px;
  }

  .section-intro h2,
  .try-heading h2,
  .laboratory-intro h2,
  .presence-heading h2,
  .memory-layout h2,
  .privacy-layout h2,
  .tokens-layout h2,
  .final-content h2 {
    font-size: 46px;
  }

  .path-layout,
  .try-heading,
  .laboratory-layout,
  .memory-layout,
  .privacy-layout,
  .tokens-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  .portfolio-sticky {
    padding-top: 76px;
  }

  .portfolio-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px 20px;
  }

  .portfolio-heading .section-kicker {
    grid-column: 1 / -1;
  }

  .portfolio-heading h2 {
    font-size: 38px;
  }

  .portfolio-heading > p {
    max-width: 150px;
  }

  .portfolio-stage {
    margin-top: 20px;
  }

  .portfolio-panel {
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
    gap: 20px;
    padding: 22px;
  }

  .portfolio-copy h3 {
    margin: 12px 0;
    font-size: 31px;
  }

  .portfolio-copy > p {
    font-size: 14px;
  }

  .portfolio-lab-preview li {
    grid-template-columns: 86px minmax(0, 1fr) 26px;
    gap: 12px;
  }

  .try-heading {
    align-items: start;
    margin-bottom: 36px;
  }

  .demo-analysis {
    grid-template-columns: minmax(0, 1fr);
  }

  .demo-situations,
  .laboratory-thread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .laboratory-thread::before,
  .laboratory-thread::after {
    display: none;
  }

  .laboratory-thread article::before {
    left: 0;
    transform: none;
  }

  .demo-column {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-column:last-child {
    border-bottom: 0;
  }

  .laboratory-section {
    padding: 92px 0;
  }

  .presence-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .presence-feature-main {
    grid-column: 1 / -1;
  }

  .presence-feature:last-child {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .memory-track {
    grid-column: auto;
  }

  .privacy-layout {
    justify-items: start;
  }

  .privacy-symbol {
    width: 150px;
    height: 150px;
    margin-left: 32px;
  }

  .final-photo {
    width: 48%;
    opacity: 0.55;
  }

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

  .landing-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .landing-container {
    width: calc(100% - 32px);
  }

  .site-header-actions .text-link {
    display: none;
  }

  .landing-brand span {
    font-size: 22px;
  }

  .landing-hero {
    height: 94svh;
    min-height: 760px;
  }

  .landing-hero::after {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 43%;
    border-top: 1px solid rgba(23, 34, 31, 0.08);
    background: var(--paper);
    content: "";
  }

  .hero-wordmark {
    top: 92px;
  }

  .hero-wordmark h1 {
    font-size: 62px;
    text-align: left;
  }

  .hero-photo {
    top: 126px;
    bottom: 29%;
    left: 56%;
    width: 360px;
    opacity: 0.92;
  }

  .hero-photo::after {
    box-shadow: inset 0 0 48px 20px var(--paper);
  }

  .hero-content {
    display: block;
    padding-bottom: 48px;
  }

  .hero-kicker {
    max-width: 310px;
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero-promise {
    max-width: 350px;
    font-size: 17px;
    line-height: 1.42;
  }

  .hero-conversion {
    width: auto;
    margin-top: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 360px);
  }

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

  .hero-note {
    font-size: 12px;
  }

  .hero-next {
    bottom: 18px;
    left: 16px;
  }

  .portfolio-section {
    height: auto;
    padding: 72px 0;
  }

  .portfolio-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .portfolio-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-heading h2 {
    font-size: 30px;
    line-height: 1;
  }

  .portfolio-heading > p {
    display: none;
  }

  .portfolio-stage {
    display: grid;
    gap: 16px;
    margin-top: 13px;
  }

  .portfolio-panel {
    position: relative;
    inset: auto;
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
    opacity: 1 !important;
    transform: none !important;
  }

  .portfolio-copy {
    justify-content: flex-start;
  }

  .portfolio-number {
    font-size: 9px;
  }

  .portfolio-copy h3 {
    margin: 6px 0;
    font-size: 25px;
  }

  .portfolio-copy > p {
    display: none;
  }

  .portfolio-copy > strong {
    margin-top: 0;
    padding-top: 3px;
    font-size: 10px;
  }

  .portfolio-product {
    height: 100%;
  }

  .portfolio-chat-preview {
    gap: 10px;
    padding: 13px;
  }

  .portfolio-message p {
    font-size: 12px;
    line-height: 1.35;
  }

  .portfolio-message-user,
  .portfolio-message-zinaida > div {
    padding: 9px 10px;
  }

  .portfolio-message-zinaida img {
    width: 32px;
    height: 32px;
  }

  .portfolio-signal-row span {
    padding: 8px;
    font-size: 9px;
  }

  .portfolio-lab-preview {
    padding: 12px;
  }

  .portfolio-lab-head {
    padding-bottom: 8px;
  }

  .portfolio-lab-preview li {
    min-height: 58px;
    grid-template-columns: 70px minmax(0, 1fr) 20px;
    gap: 8px;
  }

  .portfolio-lab-preview li b {
    font-size: 17px;
  }

  .portfolio-lab-preview li span {
    font-size: 10px;
    line-height: 1.3;
  }

  .portfolio-lab-preview li svg {
    width: 19px;
    height: 19px;
  }

  .portfolio-video-window {
    width: auto;
    max-width: 70%;
    height: 94%;
  }

  .portfolio-video-window blockquote {
    bottom: 108px;
    font-size: 18px;
  }

  .portfolio-progress {
    display: none;
  }

  .motion-control {
    right: 16px;
    bottom: 14px;
  }

  .path-section,
  .try-section,
  .presence-section,
  .memory-section,
  .privacy-section {
    padding: 72px 0;
  }

  .path-section {
    padding-top: 32px;
  }

  .demo-situations,
  .laboratory-thread {
    grid-template-columns: minmax(0, 1fr);
  }

  .demo-situations button {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .laboratory-thread article {
    padding-top: 0;
    padding-left: 34px;
  }

  .laboratory-thread article::before {
    top: 2px;
  }

  .section-intro h2,
  .try-heading h2,
  .laboratory-intro h2,
  .presence-heading h2,
  .memory-layout h2,
  .privacy-layout h2,
  .tokens-layout h2,
  .final-content h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .section-intro > p:last-child,
  .try-heading > p,
  .laboratory-intro > p,
  .memory-copy,
  .privacy-layout > div:last-child > p,
  .tokens-copy,
  .final-content > p {
    font-size: 16px;
  }

  .clarity-path li {
    grid-template-columns: 42px 1fr;
  }

  .demo-situations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .demo-situations button {
    min-width: 0;
    border-right: 1px solid var(--line);
  }

  .demo-conversation {
    min-height: 340px;
    padding: 30px 16px;
  }

  .demo-message p {
    font-size: 16px;
  }

  .demo-message-zinaida img {
    width: 38px;
    height: 38px;
  }

  .demo-column {
    padding: 22px;
  }

  .demo-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .laboratory-section {
    padding: 76px 0;
  }

  .laboratory-lines article {
    min-height: 150px;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .laboratory-lines article > svg {
    display: none;
  }

  .presence-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .presence-feature-main,
  .presence-feature:last-child {
    grid-column: auto;
  }

  .presence-feature {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .presence-feature:last-child {
    border-bottom: 0;
  }

  .presence-feature-main {
    min-height: 400px;
  }

  .presence-photo {
    inset: 0 0 32% 28%;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  }

  .memory-track {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 24px 0;
  }

  .memory-track > svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .privacy-symbol {
    width: 112px;
    height: 112px;
    margin-left: 24px;
  }

  .privacy-symbol svg {
    width: 52px;
    height: 52px;
  }

  .privacy-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .tokens-section {
    padding: 68px 0;
  }

  .final-section {
    min-height: 620px;
    align-items: flex-start;
    padding-top: 86px;
  }

  .final-photo {
    top: 42%;
    width: 78%;
    height: 58%;
    opacity: 0.48;
  }

  .final-content h2 {
    max-width: 420px;
  }
}

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

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

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

  .hero-photo img {
    transform: none;
  }

  .portfolio-section {
    height: auto;
    padding: 90px 0;
  }

  .portfolio-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .portfolio-stage {
    display: grid;
    gap: 18px;
  }

  .portfolio-panel {
    position: relative;
    min-height: 520px;
    opacity: 1;
    transform: none;
  }

  .portfolio-progress {
    display: none;
  }
}

.portfolio-section[data-motion="off"] {
  height: auto;
  padding: 90px 0;
}

.portfolio-section[data-motion="off"] .portfolio-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.portfolio-section[data-motion="off"] .portfolio-stage {
  display: grid;
  gap: 18px;
}

.portfolio-section[data-motion="off"] .portfolio-panel {
  position: relative;
  min-height: 520px;
  opacity: 1;
  transform: none;
}

.portfolio-section[data-motion="off"] .portfolio-progress {
  display: none;
}
