@font-face {
  font-family: "Aspekta";
  src: url("assets/fonts/aspekta-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("assets/fonts/roboto-mono-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

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

:root {
  --ink: #1b1a17;
  --paper: #f4f4f4;
  --mist: #e1e1e1;
  --accent: #ff6d29;
  --accent-hover: #ff8247;
  --accent-deep: #6b341b;
  --warm-surface: #453027;
  --shell: #1b1a17;
  --chat-dream-ivory: #fefdf8;
  --chat-dream-accent: #272f60;
  --chat-dream-ink: #29313a;
  --white: #ffffff;
  --edge: rgba(27, 26, 23, 0.14);
  --gutter: clamp(22px, 5vw, 84px);
  --mono: "Roboto Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: "Aspekta", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: auto;
  text-rendering: optimizeLegibility;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-behavior: allow-discrete;
  transition-duration: 1ms;
  transition-property: overflow;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

body.menu-open {
  overflow: hidden;
}

.has-js.is-entering .brand-chip,
.has-js.is-entering .primary-nav,
.has-js.is-entering .menu-toggle,
.has-js.is-entering .hero-title-line-text,
.has-js.is-entering .hero-intro > p,
.has-js.is-entering .hero-intro > .split-button {
  visibility: hidden;
}

.has-js.is-entering.is-opening .brand-chip,
.has-js.is-entering.is-opening .primary-nav,
.has-js.is-entering.is-opening .menu-toggle,
.has-js.is-entering.is-opening .hero-title-line-text,
.has-js.is-entering.is-opening .hero-intro > p,
.has-js.is-entering.is-opening .hero-intro > .split-button {
  visibility: visible;
}

.has-js.is-entering.is-opening .brand-chip {
  animation: intro-header-piece-reveal 720ms cubic-bezier(0.16, 1, 0.3, 1) 60ms both;
}

.has-js.is-entering.is-opening .primary-nav,
.has-js.is-entering.is-opening .menu-toggle {
  animation: intro-header-piece-reveal 720ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

.has-js.is-entering.is-opening .hero-title-line-text {
  animation: intro-title-reveal 800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.has-js.is-entering.is-opening .hero-title-line:nth-child(2) .hero-title-line-text {
  animation-delay: 380ms;
}

.has-js.is-entering.is-opening .hero-intro > p {
  animation: intro-element-reveal 720ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both;
}

.has-js.is-entering.is-opening .hero-intro > .split-button {
  animation: intro-element-reveal 720ms cubic-bezier(0.16, 1, 0.3, 1) 650ms both;
}

@keyframes intro-header-piece-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-title-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-element-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 28px;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.site-header a,
.site-header button {
  pointer-events: auto;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

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

.brand-logo {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  width: 84px;
  height: auto;
}

.site-header.is-scrolled .brand-chip,
.site-header.is-light .brand-chip {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 54px;
  padding: 4px;
  border-radius: 13px;
  background: rgba(247, 247, 245, 0.9);
  box-shadow: 0 10px 28px rgba(14, 28, 26, 0.05);
  backdrop-filter: blur(18px);
}

.primary-nav a {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.primary-nav a:hover {
  background: rgba(27, 26, 23, 0.08);
}

.primary-nav .nav-cta {
  min-width: 145px;
  background: var(--ink);
  color: var(--white);
}

.primary-nav .nav-cta:hover {
  background: #302a27;
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero-scroll {
  position: relative;
  height: 520vh;
  min-height: 3200px;
  background: var(--shell);
}

.hero-stage {
  --hero-frame-inset: 14px;
  --hero-frame-radius: 24px;
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--chat-dream-ivory);
  clip-path: inset(var(--hero-frame-inset) round var(--hero-frame-radius));
  color: var(--chat-dream-ink);
  isolation: isolate;
  transform-origin: 50% 50%;
  will-change: clip-path, transform;
}

.hero-gradient,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  z-index: -3;
  overflow: hidden;
  background: var(--chat-dream-ivory);
  transform: scale(1.03);
  will-change: transform;
}

.hero-gradient-field,
.footer-gradient-field {
  position: absolute;
  inset: -58%;
  background-color: var(--chat-dream-ivory);
  background-image:
    radial-gradient(ellipse 58% 72% at 23% -8%, rgba(253, 230, 188, 0.94) 0%, rgba(254, 215, 182, 0.72) 38%, transparent 76%),
    radial-gradient(ellipse 58% 70% at 5% 43%, rgba(246, 207, 218, 0.9) 0%, rgba(255, 223, 214, 0.6) 46%, transparent 78%),
    radial-gradient(ellipse 50% 58% at 48% 28%, rgba(252, 221, 226, 0.76) 0%, rgba(243, 230, 247, 0.44) 50%, transparent 78%),
    radial-gradient(ellipse 48% 60% at 46% 72%, rgba(218, 225, 250, 0.7) 0%, rgba(243, 246, 254, 0.4) 52%, transparent 80%),
    radial-gradient(ellipse 72% 88% at 91% 91%, rgba(183, 244, 254, 0.94) 0%, rgba(225, 248, 254, 0.68) 50%, transparent 82%),
    radial-gradient(ellipse 42% 58% at 100% 1%, rgba(255, 255, 255, 0.82) 0%, rgba(253, 249, 250, 0.48) 48%, transparent 84%),
    linear-gradient(137deg, #fefdf8 0%, #f9e4eb 38%, #f3f6fe 62%, #e2f7fe 100%);
  filter: saturate(1.28) contrast(1.055);
  transform-origin: center;
  animation: hero-gradient-spin 36s linear infinite;
  will-change: transform;
}

@keyframes hero-gradient-spin {
  from {
    transform: rotate(0deg) scale(1.02);
  }

  to {
    transform: rotate(360deg) scale(1.02);
  }
}

.hero-shade {
  z-index: -2;
  background: radial-gradient(ellipse 96% 88% at 48% 46%, transparent 52%, rgba(39, 47, 96, 0.08) 100%);
  transition: background-color 500ms ease;
}

.hero-intro,
.hero-story {
  position: absolute;
  inset: 0;
}

.hero-intro {
  clip-path: inset(96px 0 0 0);
  pointer-events: auto;
}

.hero-intro h1 {
  position: absolute;
  top: 16%;
  left: 5.2%;
  max-width: 1120px;
  color: var(--chat-dream-ink);
  font-size: clamp(68px, 6.65vw, 112px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-title-line {
  display: block;
  overflow: visible;
}

.hero-title-line-text {
  display: block;
  opacity: 1;
  will-change: opacity, transform;
}

.hero-intro > p {
  position: absolute;
  bottom: 5.5%;
  left: 5.2%;
  max-width: 590px;
  color: var(--chat-dream-ink);
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  opacity: 1;
  will-change: opacity, transform;
}

.hero-intro > .split-button {
  position: absolute;
  right: 4.8%;
  bottom: 4.1%;
  opacity: 1;
  will-change: opacity, transform;
}

.split-button {
  --button-bg: var(--ink);
  --button-color: var(--white);
  display: inline-flex;
  align-items: stretch;
  gap: 5px;
  color: var(--button-color);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.split-button > span,
.split-button > i {
  display: grid;
  min-height: 50px;
  place-items: center;
  transition:
    background-color 260ms ease,
    color 260ms ease;
}

.split-button > span {
  min-width: 190px;
  padding: 0 20px;
  border-radius: 12px 12px 12px 12px;
  background: var(--button-bg);
}

.split-button > i {
  width: 50px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  font-style: normal;
}

.split-button:hover > span,
.split-button:focus-visible > span {
  background: var(--accent);
  color: var(--ink);
}

.split-button:hover > i,
.split-button:focus-visible > i {
  background: var(--ink);
  color: var(--white);
}

.hero-story {
  opacity: 1;
  transform: translate3d(0, 100vh, 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  gap: 10px;
  padding: 0 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow b {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--accent);
}

.eyebrow-dark {
  position: absolute;
  top: 128px;
  left: 5.2%;
  background: rgba(255, 255, 255, 0.52);
  color: var(--chat-dream-ink);
  backdrop-filter: blur(12px);
}

.story-divider {
  position: absolute;
  top: 190px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(39, 47, 96, 0.18);
}

.story-divider i {
  display: block;
  width: 0;
  height: 1px;
  background: var(--chat-dream-accent);
  will-change: width;
}

.story-progress {
  position: absolute;
  top: 226px;
  left: 5.2%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 96px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(39, 47, 96, 0.2);
  border-radius: 999px;
  color: rgba(41, 49, 58, 0.5);
  font-family: var(--mono);
  font-size: 12px;
}

.story-progress span:first-child {
  color: var(--chat-dream-ink);
}

.story-progress i {
  font-style: normal;
}

.story-copy {
  position: absolute;
  top: 26%;
  right: 5.2%;
  left: 36%;
  min-height: 390px;
}

.story-line {
  position: absolute;
  inset: 0;
  color: rgba(41, 49, 58, 0.2);
  font-size: clamp(38px, 3.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.07;
  opacity: 0;
  transform: none;
  will-change: opacity;
}

.story-line .word {
  --word-alpha: 0.24;
  color: rgb(41 49 58 / var(--word-alpha));
  will-change: color;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(230px, 31%) minmax(0, 1fr);
  column-gap: clamp(36px, 5vw, 90px);
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section-rule {
  grid-column: 1 / -1;
  height: 1px;
  margin-bottom: 48px;
  background: var(--edge);
}

.platform {
  min-height: 860px;
  padding-top: 110px;
  padding-bottom: 105px;
  background: var(--paper);
}

.platform > .eyebrow,
.company-label > .eyebrow {
  align-self: start;
  background: rgba(255, 255, 255, 0.72);
}

.platform-copy {
  max-width: 1060px;
}

.platform-copy h2,
.company-copy h2 {
  max-width: 1050px;
  font-size: clamp(52px, 4.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.026em;
  line-height: 1.1;
}

.platform-copy h2 u {
  text-decoration-thickness: 1px;
  text-underline-offset: 9px;
}

.platform-copy > p {
  max-width: 850px;
  margin-top: 56px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.22;
}

.platform-copy > .split-button {
  margin-top: 56px;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 420px;
}

.platform-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px 40px 42px;
  border-right: 1px solid rgba(27, 26, 23, 0.12);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.platform-card::after {
  position: absolute;
  inset: auto -20% -80% -20%;
  height: 95%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  content: "";
  transform: translateY(50%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-card:hover::after {
  transform: translateY(5%);
}

.platform-card:hover {
  z-index: 2;
  transform: translateY(-10px);
}

.platform-card img {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.platform-card h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.platform-card p {
  max-width: 500px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.25;
}

.card-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: var(--mono);
  font-size: 12px;
}

.card-accent {
  background: var(--accent);
}

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

.card-ink img {
  filter: brightness(0) invert(1);
}

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

.marquee {
  display: flex;
  height: 496px;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-loop 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: clamp(110px, 10.7vw, 184px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

@keyframes marquee-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.company-label {
  min-height: 133px;
  align-content: start;
}

.company-label .section-rule {
  margin-bottom: 44px;
}

.company-content {
  display: grid;
  grid-template-columns: minmax(380px, 41%) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  min-height: 690px;
  padding: 0 var(--gutter) 108px;
}

.company-image {
  position: relative;
  align-self: start;
  overflow: hidden;
  aspect-ratio: 1.25;
  border-radius: 13px;
  background: #d6d6d2;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.company-image:hover img {
  transform: scale(1.035);
}

.company-copy h2 {
  max-width: 760px;
  font-size: clamp(40px, 3vw, 52px);
  line-height: 1.1;
}

.company-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 54px;
}

.company-columns p {
  margin-bottom: 25px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.26;
}

.company-copy > .split-button {
  margin-top: 22px;
}

.newsroom {
  position: relative;
  z-index: 2;
  padding: 116px var(--gutter) 120px;
  border-radius: 34px;
  background: #eceeed;
}

.newsroom-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 84px;
}

.newsroom-heading h2 {
  font-size: clamp(76px, 6.6vw, 112px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

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

.article-feature {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  min-height: 545px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

.article-feature figure {
  padding: 28px 0 28px 28px;
}

.article-feature figure,
.article-feature img {
  width: 100%;
  height: 100%;
}

.article-feature img {
  border-radius: 13px;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.article-feature:hover img {
  transform: scale(1.035);
}

.article-feature-copy,
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 42px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(27, 26, 23, 0.64);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.article-meta .eyebrow {
  background: rgba(27, 26, 23, 0.04);
}

.article-feature h3 {
  max-width: 650px;
  margin-top: 72px;
  font-size: clamp(35px, 2.8vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

.article-feature-copy > p {
  max-width: 650px;
  margin-top: 28px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.27;
}

.read-link {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.article-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px 0 0 0;
  background: var(--ink);
  color: var(--white);
  font-size: 19px;
  font-style: normal;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.article-feature:hover .article-arrow,
.article-card:hover .article-arrow {
  background: var(--accent-hover);
  color: var(--ink);
}

.article-card {
  min-height: 365px;
  overflow: hidden;
  border-radius: 16px;
}

.article-card h3 {
  max-width: 500px;
  margin-top: 48px;
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 400;
  line-height: 1.12;
}

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

.article-slate {
  background: var(--warm-surface);
  color: var(--white);
}

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

.article-slate .article-meta,
.article-ink .article-meta {
  color: rgba(255, 255, 255, 0.62);
}

.article-slate .eyebrow,
.article-ink .eyebrow {
  background: rgba(255, 255, 255, 0.08);
}

.article-card .article-arrow {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--ink);
}

.pricing {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 132px var(--gutter) 148px;
  border-radius: 34px;
  background: var(--paper);
}

.pricing-heading {
  max-width: 1140px;
  margin-bottom: 84px;
}

.pricing-heading h2 {
  font-size: clamp(70px, 6.2vw, 106px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.pricing-heading > p {
  max-width: 720px;
  margin-top: 34px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.28;
}

.pricing-toggle {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px auto;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.pricing-toggle > div {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--edge);
  border-radius: 12px;
  background: var(--white);
}

.pricing-toggle button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.pricing-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.pricing-toggle button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pricing-toggle > span {
  color: rgba(27, 26, 23, 0.7);
}

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

.price-plan {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  overflow: hidden;
  padding: 42px;
  border-radius: 16px;
}

.price-plan-personal {
  border: 1px solid var(--edge);
  background: var(--white);
}

.price-plan-team {
  background: var(--accent);
}

.price-plan-pro {
  background: var(--ink);
  color: var(--white);
}

.price-plan-header {
  display: block;
}

.price-plan-header h3,
.enterprise-name h3 {
  font-size: clamp(32px, 2.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-plan-header p,
.enterprise-name p {
  margin-top: 11px;
  color: rgba(27, 26, 23, 0.62);
  font-size: 17px;
}

.price-plan-pro .price-plan-header p {
  color: rgba(255, 255, 255, 0.62);
}

.price-plan-team .price-plan-header p {
  color: rgba(27, 26, 23, 0.84);
}

.price-amount {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  justify-content: start;
  margin-top: 72px;
  font-family: "Ofiere Inter", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
}

.price-amount > span {
  margin-top: 11px;
  margin-right: 4px;
  font-size: 24px;
}

.price-amount > strong {
  font-size: clamp(66px, 5.2vw, 94px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.price-amount > small {
  grid-column: 2;
  margin-top: 15px;
  font-family: var(--sans);
  font-size: 14px;
  text-align: left;
}

.price-plan ul {
  padding: 0;
  margin: 58px 0 46px;
  list-style: none;
}

.price-plan li {
  padding: 17px 0;
  border-top: 1px solid rgba(27, 26, 23, 0.14);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.24;
}

.price-plan-pro li {
  border-color: rgba(255, 255, 255, 0.18);
}

.price-plan-team li {
  border-color: rgba(27, 26, 23, 0.2);
}

.price-plan-cta {
  align-self: flex-start;
  margin-top: auto;
}

.price-plan-pro .split-button {
  --button-bg: var(--white);
  --button-color: var(--ink);
}

.price-plan-team .split-button > i {
  background: var(--white);
}

.price-plan-team .split-button:hover > span,
.price-plan-team .split-button:focus-visible > span {
  background: var(--white);
  color: var(--ink);
}

.price-plan-team .split-button:hover > i,
.price-plan-team .split-button:focus-visible > i {
  background: var(--ink);
  color: var(--white);
}

.enterprise-plan {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(430px, 1.8fr) auto auto;
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
  min-height: 220px;
  margin-top: 18px;
  padding: 34px 42px;
  border-radius: 16px;
  background: var(--mist);
}

.enterprise-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.enterprise-features li {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.25;
}

.enterprise-price {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 110px;
}

.enterprise-price strong {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.enterprise-price span {
  color: rgba(27, 26, 23, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: -34px;
  padding: 118px var(--gutter) 28px;
  background: var(--chat-dream-ivory);
  color: var(--chat-dream-ink);
  isolation: isolate;
}

.footer-art {
  position: absolute;
  z-index: -2;
  inset: -6%;
  overflow: hidden;
  background: var(--chat-dream-ivory);
  transform: scale(1.08);
  transition: transform 280ms ease-out;
  will-change: transform;
}

.site-footer::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(39, 47, 96, 0.055));
  content: "";
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  margin-bottom: clamp(8px, 1vw, 18px);
}

.footer-cta h2 {
  max-width: 760px;
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.footer-cta .split-button {
  margin-top: 46px;
}

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

.footer-nav > div {
  min-height: 156px;
  padding-left: 24px;
  border-left: 1px solid rgba(41, 49, 58, 0.2);
}

.footer-nav h3,
.copyright {
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-nav a:not(.scroll-top) {
  display: block;
  width: max-content;
  margin-bottom: 12px;
  font-size: 18px;
  transition: opacity 180ms ease;
}

.footer-nav a:hover {
  opacity: 0.58;
}

.scroll-top {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(41, 49, 58, 0.24);
  border-radius: 14px;
  font-size: 21px;
}

.footer-brand-logo {
  width: calc(100% + (var(--gutter) * 2));
  margin-left: calc(var(--gutter) * -1);
  pointer-events: none;
}

.footer-wordmark {
  display: block;
  width: 100%;
  color: var(--chat-dream-ink);
  font-family: "Ofiere Inter", Arial, sans-serif;
  font-size: 32vw;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.footer-wordmark-dot {
  color: var(--accent);
}

.copyright {
  margin: 8px 0 0;
}

.motion-ready .reveal-heading .reveal-word {
  --reveal-word-color: var(--ink);
  position: relative;
  display: inline-block;
  color: transparent;
  transition: color 1ms linear;
  transition-delay: calc(250ms + var(--word-index, 0) * 52ms);
}

.motion-ready .reveal-heading u .reveal-word {
  --reveal-word-color: rgba(27, 26, 23, 0.28);
}

.motion-ready .reveal-heading .reveal-word::after {
  position: absolute;
  inset: 0.08em -0.01em 0.05em;
  border-radius: 0.015em;
  background: var(--reveal-word-color);
  content: "";
  opacity: 1;
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: center;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1ms linear;
  transition-delay:
    calc(80ms + var(--word-index, 0) * 52ms),
    calc(320ms + var(--word-index, 0) * 52ms);
}

.motion-ready .reveal-heading.is-visible .reveal-word {
  color: var(--reveal-word-color);
}

.motion-ready .reveal-heading.is-visible .reveal-word::after {
  opacity: 0;
  transform: scaleY(0);
}

.motion-ready .reveal-media {
  isolation: isolate;
}

.motion-ready .reveal-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: var(--paper);
  content: "";
  pointer-events: none;
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal-media.is-visible::after {
  transform: translateY(-101%);
}

@media (max-width: 1100px) {
  .story-copy {
    left: 31%;
  }

  .company-content {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .company-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-feature h3 {
    margin-top: 48px;
  }

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

  .price-plan-pro {
    grid-column: 1 / -1;
    min-height: 620px;
  }

  .enterprise-plan {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  }

  .enterprise-price {
    grid-column: 1;
  }

  .enterprise-plan > .split-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 22px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    top: 20px;
    right: 19px;
    left: 19px;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 7px;
    border-radius: 16px;
    background: rgba(247, 247, 245, 0.94);
    box-shadow: 0 10px 28px rgba(14, 28, 26, 0.08);
    backdrop-filter: blur(16px);
  }

  .brand-chip,
  .site-header.is-scrolled .brand-chip,
  .site-header.is-light .brand-chip {
    min-height: 48px;
    gap: 8px;
    padding: 4px;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .brand-wordmark {
    width: 80px;
  }

  .menu-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 13px;
    background: var(--ink);
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: var(--accent);
    transition: transform 220ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms;
  }

  .menu-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a,
  .primary-nav .nav-cta {
    width: 100%;
    min-width: 0;
    justify-content: start;
    padding: 0 17px;
  }

  .hero-scroll {
    height: 525vh;
    min-height: 4100px;
  }

  .hero-story {
    transform: translate3d(0, 104vh, 0);
  }

  .hero-intro h1 {
    top: 13.5%;
    right: 15px;
    left: 15px;
    font-size: clamp(47px, 13vw, 58px);
    letter-spacing: -0.04em;
    line-height: 1.02;
  }

  .hero-intro {
    clip-path: inset(96px 0 0 0);
  }

  .hero-intro > p {
    right: 15px;
    bottom: 95px;
    left: 15px;
    max-width: none;
    font-size: 19px;
    line-height: 1.2;
  }

  .hero-intro > .split-button {
    right: auto;
    bottom: 22px;
    left: 15px;
  }

  .split-button > span {
    min-width: 178px;
  }

  .eyebrow-dark {
    top: 112px;
    left: 15px;
  }

  .story-divider {
    top: 182px;
  }

  .story-progress {
    top: 214px;
    left: 15px;
  }

  .story-copy {
    top: 34%;
    right: 15px;
    left: 15px;
  }

  .story-line {
    font-size: clamp(31px, 8.5vw, 39px);
    letter-spacing: -0.03em;
    line-height: 1.05;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-rule {
    margin-bottom: 4px;
  }

  .platform {
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .platform-copy h2,
  .company-copy h2 {
    font-size: clamp(43px, 12vw, 58px);
    line-height: 1.04;
  }

  .platform-copy > p {
    margin-top: 42px;
    font-size: 18px;
  }

  .platform-copy > .split-button {
    margin-top: 38px;
  }

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

  .platform-card {
    min-height: 360px;
    padding: 30px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(27, 26, 23, 0.12);
  }

  .platform-card img {
    width: 92px;
    height: 92px;
  }

  .platform-card:hover {
    transform: none;
  }

  .marquee {
    height: 250px;
  }

  .marquee-track span {
    font-size: 82px;
  }

  .company-label {
    min-height: 116px;
  }

  .company-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 82px;
  }

  .company-image {
    aspect-ratio: 1.15;
  }

  .company-columns {
    margin-top: 38px;
  }

  .company-columns p {
    font-size: 18px;
  }

  .newsroom {
    padding-top: 78px;
    padding-bottom: 80px;
    border-radius: 25px;
  }

  .newsroom-heading {
    display: block;
    margin-bottom: 54px;
  }

  .newsroom-heading h2 {
    font-size: 66px;
  }

  .newsroom-heading .split-button {
    margin-top: 30px;
  }

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

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

  .article-feature figure {
    min-height: 360px;
    padding: 12px 12px 0;
  }

  .article-feature-copy,
  .article-card {
    padding: 28px 24px;
  }

  .article-feature-copy {
    min-height: 500px;
  }

  .article-feature h3 {
    margin-top: 48px;
    font-size: 36px;
  }

  .article-card {
    min-height: 330px;
  }

  .pricing {
    margin-top: -25px;
    padding-top: 82px;
    padding-bottom: 92px;
    border-radius: 25px;
  }

  .pricing-heading {
    margin-bottom: 52px;
  }

  .pricing-heading h2 {
    font-size: clamp(47px, 12vw, 62px);
    line-height: 1;
  }

  .pricing-heading > p {
    margin-top: 28px;
    font-size: 18px;
  }

  .pricing-toggle {
    margin-right: auto;
    margin-bottom: 22px;
    margin-left: 0;
  }

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

  .price-plan,
  .price-plan-pro {
    grid-column: auto;
    min-height: 640px;
    padding: 32px 28px;
  }

  .price-amount {
    margin-top: 54px;
  }

  .enterprise-plan {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 28px;
  }

  .enterprise-features {
    grid-template-columns: 1fr;
  }

  .enterprise-price,
  .enterprise-plan > .split-button {
    grid-column: auto;
  }

  .site-footer {
    margin-top: -25px;
    padding-top: 84px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-bottom: 8px;
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
  }

  .footer-nav > div {
    padding-left: 18px;
  }

  .footer-nav a:not(.scroll-top) {
    font-size: 18px;
  }

  .footer-brand-logo {
    width: calc(100% + (var(--gutter) * 2));
    margin-left: calc(var(--gutter) * -1);
  }

  .footer-wordmark {
    font-size: 30vw;
  }

  .copyright {
    max-width: none;
    text-align: left;
    line-height: 1.45;
  }
}

@media (max-width: 520px) {
  .article-meta {
    align-items: flex-start;
  }

  .article-meta .article-index {
    max-width: 110px;
    text-align: right;
    line-height: 1.3;
  }

  .pricing-toggle {
    display: block;
  }

  .pricing-toggle > span {
    display: block;
    margin-top: 12px;
  }

  .price-plan,
  .price-plan-pro {
    min-height: 620px;
    padding: 28px 24px;
  }

  .price-amount > strong {
    font-size: 76px;
  }

  .enterprise-plan {
    padding: 28px 24px;
  }

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

  .scroll-top {
    position: absolute;
    right: 20px;
  }
}

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

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

  .hero-scroll {
    height: auto;
    min-height: 100svh;
  }

  .hero-gradient-field,
  .footer-gradient-field {
    animation: none;
    transform: rotate(0deg) scale(1.02);
  }

  .marquee-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .hero-stage {
    position: relative;
    min-height: 100svh;
  }

  .hero-story {
    display: none;
  }
}
