:root {
  --bg: #000;
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --stroke: rgba(239, 237, 234, 0.1);
  --gutter: 24px;
  --section-gap: 84px;
  --section-gap-tight: 64px;
  --feature-gap: 32px;
  --display: "Outfit", "Inter", sans-serif;
  --sans: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--sans);
}

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

.frame {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
}

.page-shell {
  background: #050505;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding-top: 76px;
}

.container {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  margin: 0;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-nav::before {
  content: none;
}

.top-nav__inner {
  min-height: 76px;
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.top-nav__left {
  display: flex;
  align-items: center;
  flex: 1;
}

.top-nav__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: 0;
  background: transparent;
  border: 0;
  margin-left: 0;
  padding-left: 12px;
  transition: opacity 0.2s ease;
}

.top-nav__logo:hover {
  opacity: 0.88;
}

.top-nav__logo img {
  width: 92px;
  height: 20px;
}

.top-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  padding: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  flex: 0 1 auto;
}

.top-nav__menu a {
  position: relative;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(238, 238, 255, 0.5);
  border-radius: 0;
  padding: 0;
  transition: color 0.2s ease;
}

.top-nav__menu a:hover,
.top-nav__menu a:focus-visible {
  color: #fff;
}

.top-nav__menu a::after {
  content: none;
}

.top-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 204px;
  padding: 10px 24px;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-right: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.top-nav__cta:hover {
  transform: none;
}

.top-nav__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: flex-end;
  padding: 0 0 0 16px;
}

.top-nav__link {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.2s;
}

.top-nav__link:hover {
  color: #fff;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
}

.btn--dark {
  background: #000;
  color: #fff;
  padding: 9px 20px;
}

.top-nav .btn--dark {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.04em;
}

.btn--light {
  background: #fff;
  color: #000;
  border: 2px solid #2bc3ff;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 24px;
}

.hero {
  height: 936px;
  position: relative;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero__content {
  position: absolute;
  left: 50%;
  top: calc(50% - 146px);
  transform: translate(-50%, -50%);
  width: min(879px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero__eyebrow {
  color: #e8dec4;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero h1 {
  margin: 0;
  max-width: 879px;
  font-family: var(--display);
  font-size: 68px;
  line-height: 74.8px;
  letter-spacing: -2.02px;
  font-weight: 600;
}

.hero p {
  margin: 0;
  color: #a8a8a8;
  font-family: var(--mono);
  font-size: 20px;
  line-height: normal;
  max-width: 545px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 397px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main {
  padding-top: var(--section-gap-tight);
  padding-bottom: var(--section-gap);
}

.main > .divider {
  margin-top: var(--section-gap-tight);
  margin-bottom: var(--section-gap);
}

.divider {
  height: 40px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  overflow: hidden;
}

.divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logos {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  min-height: 80px;
  display: grid;
  grid-template-columns: 213px 1fr;
}

.logos__title {
  border-right: 1px solid var(--stroke);
  color: #efedea;
  opacity: 0.55;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 40px;
  text-transform: none;
}

.logos__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.logos__list .logos__item {
  min-height: 80px;
  border-right: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.logos__item img {
  width: 100%;
  max-width: 180px;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.logos__list .logos__item:last-child {
  border-right: 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-eyebrow {
  --gradiebnt: linear-gradient(
    180deg,
    #2bc3ff 0%,
    #ffd400 25%,
    #2bc3ff 50%,
    #ff6bff 75%,
    #ff4e00 87.5%,
    #6dec36 100%
  );
  --dash: 3px;
  --gap: 2px;
  width: fit-content;
  position: relative;
  display: flex;
  padding: 6px 12px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid transparent;
  background: #151515;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 0;
  box-shadow: none;
}

.section-eyebrow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--gradiebnt);
  -webkit-mask:
    repeating-linear-gradient(90deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) top / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) bottom / 100% 1px no-repeat,
    repeating-linear-gradient(0deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) left / 1px 100% no-repeat,
    repeating-linear-gradient(0deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) right / 1px 100% no-repeat;
  mask:
    repeating-linear-gradient(90deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) top / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) bottom / 100% 1px no-repeat,
    repeating-linear-gradient(0deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) left / 1px 100% no-repeat,
    repeating-linear-gradient(0deg, #000 0 var(--dash), transparent var(--dash) calc(var(--dash) + var(--gap))) right / 1px 100% no-repeat;
}

.section-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
  gap: 40px;
}

.section-head h2 {
  margin: 0;
  max-width: 580px;
  background: linear-gradient(to left, rgba(247, 247, 247, 0.8), #f7f7f7 50%, rgba(247, 247, 247, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.64px;
  font-weight: 600;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
  max-width: 695px;
}

.features-grid {
}

.feature-cards {
  margin-top: var(--feature-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 548px 516px;
  column-gap: 16px;
  row-gap: 32px;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card__visual {
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #111;
  position: relative;
}

.feature-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  color: #1d1d1f;
  background: rgba(247, 247, 248, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: rgba(30, 30, 32, 0.74);
}

.mockup__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mockup__live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3ad275;
  box-shadow: 0 0 0 4px rgba(58, 210, 117, 0.2);
}

.mockup--sentiment {
  padding: 14px;
  max-width: 250px;
}

.mockup__metric {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.mockup__metric strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
}

.mockup__metric small {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 14px;
  color: rgba(30, 30, 32, 0.72);
}

.mockup__bars {
  margin-top: 10px;
  height: 70px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
}

.mockup__bars span {
  display: block;
  border-radius: 7px;
  background: linear-gradient(to top, #1f65ff, #4f94ff);
}

.mockup--signals {
  padding: 14px 14px 12px;
  max-width: 284px;
}

.mockup--signals ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.mockup--signals li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 6px 9px;
}

.mockup--signals li b {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}

.mockup--signals li span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 14px;
  color: #2f5fff;
}

.mockup__tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mockup__tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 14px;
  padding: 4px 8px;
}

.mockup--health {
  top: auto;
  bottom: 20px;
  padding: 14px;
}

.health__ring {
  width: 88px;
  height: 88px;
  margin: 10px 0 12px;
  border-radius: 999px;
  background: conic-gradient(#1f65ff 0 82%, rgba(31, 101, 255, 0.18) 82% 100%);
  display: grid;
  place-items: center;
}

.health__ring::before {
  content: "";
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(248, 248, 249, 0.95);
  position: absolute;
}

.health__ring strong,
.health__ring small {
  position: relative;
  z-index: 2;
}

.health__ring strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: 20px;
}

.health__ring small {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 12px;
  text-transform: uppercase;
  color: rgba(30, 30, 32, 0.72);
}

.health__rows {
  display: grid;
  gap: 6px;
}

.health__rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 14px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 10px;
  padding: 6px 8px;
}

.health__rows b {
  color: #2f5fff;
  font-weight: 500;
}

.mockup--ask {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: auto;
  bottom: 24px;
  width: min(76%, 620px);
  padding: 12px;
}

.ask__prompt {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  padding: 9px 10px;
}

.ask__answer {
  margin-top: 8px;
  border-radius: 10px;
  background: rgba(243, 243, 246, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 9px 10px 10px;
}

.ask__answer p {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 15px;
}

.ask__chips {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ask__chips span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 12px;
  padding: 4px 8px;
  text-transform: uppercase;
}

.mockup--player {
  top: auto;
  bottom: 20px;
  left: 16px;
  right: 16px;
  padding: 12px;
}

.player__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player__avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(145deg, #2f5fff, #7ba7ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.player__row strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}

.player__row small {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 14px;
  color: rgba(30, 30, 32, 0.68);
}

.player__stats {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.player__stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.58);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 14px;
}

.feature-card h3 {
  margin: 0 2px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #f7f7f7;
}

.feature-card p {
  margin: 10px 2px 0;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
  max-width: none;
}

.feature-card--wide p {
  max-width: 48ch;
}

.feature-card--short p {
  max-width: 24ch;
}

.feature-card--wide {
  grid-column: 1 / span 2;
}

.feature-card--short {
  grid-column: 3;
}

.sentiment-interface-wrap {
  margin-top: 64px;
}

.sentiment-interface {
  background: #0d0d0d;
  border: 1px solid var(--stroke);
  padding: 28px 16px 28px 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 580px;
  gap: 28px;
}

.sentiment-interface__left {
  display: flex;
  flex-direction: column;
  min-height: 597px;
  gap: 60px;
}

.sentiment-interface__intro {
  max-width: 606px;
}

.sentiment-interface__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sentiment-interface__title-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.sentiment-interface__title {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #f7f7f7;
}

.sentiment-interface__intro p {
  margin: 12px 0 0;
  max-width: 437px;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.5);
}

.interface-list {
  margin-top: auto;
  padding: 0;
  max-width: 616px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.interface-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 22px;
  opacity: 0.42;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.interface-list__item h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
}

.interface-list__item p {
  margin: 12px 0 0;
  max-width: 606px;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.32s ease, opacity 0.25s ease, transform 0.25s ease;
}

.interface-list__progress {
  margin-top: 18px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.interface-list__progress span {
  display: block;
  width: 29%;
  height: 100%;
  background: #fff;
}

.interface-list__item.is-active {
  opacity: 1;
}

.interface-list__item.is-active p {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.interface-list__item.is-active .interface-list__progress {
  opacity: 1;
}

.interface-list__item:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -1px;
}

.interface-list__item:hover {
  opacity: 0.72;
}

.sentiment-interface__visual {
  border-radius: 16px;
  overflow: hidden;
  height: 597px;
  width: 580px;
  align-self: center;
  position: relative;
}

.sentiment-interface__visual-inner {
  position: absolute;
  left: -50px;
  top: -12px;
  width: 680px;
  height: 619px;
  border-radius: 16px;
  overflow: hidden;
}

.sentiment-interface__base {
  width: 680px;
  height: 619px;
  object-fit: cover;
}

.sentiment-interface__overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sentiment-interface__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.sentiment-interface__overlay * {
  vector-effect: non-scaling-stroke;
}

.sentiment-interface__overlay.is-active {
  opacity: 1;
  filter: blur(0);
}

.working-conversation {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.working-conversation__head {
  display: grid;
  grid-template-columns: 670px 1fr;
  align-items: start;
  gap: 0;
}

.working-conversation__head h2 {
  margin: 0;
  max-width: 519px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.64px;
  font-weight: 600;
  color: #f7f7f7;
}

.working-conversation__head p {
  margin: 0;
  max-width: 609px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
}

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

.working-card {
  border: 1px solid var(--stroke);
  background: #0f0f0f;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.working-card--middle {
  border-left: 0;
  border-right: 0;
}

.working-card__icon {
  width: 32px;
  height: 32px;
}

.working-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
}

.working-card p {
  margin: 0;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.product-mock {
  position: relative;
  height: 100%;
  padding: 16px;
  background: radial-gradient(circle at 12% 10%, rgba(20, 71, 255, 0.28), transparent 42%),
    radial-gradient(circle at 90% 92%, rgba(101, 233, 58, 0.2), transparent 36%),
    #04080f;
}

.product-mock__aurora {
  position: absolute;
  inset: -80px;
  background: linear-gradient(130deg, rgba(20, 71, 255, 0.9), rgba(51, 185, 240, 0.72), rgba(241, 90, 232, 0.58), rgba(255, 92, 0, 0.56), rgba(101, 233, 58, 0.52));
  filter: blur(54px);
  opacity: 0.32;
  pointer-events: none;
}

.product-shell {
  position: relative;
  height: 100%;
  border-radius: 18px;
  border: 1px solid #273446;
  background: rgba(8, 14, 23, 0.94);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.product-shell__top {
  min-height: 54px;
  border-bottom: 1px solid #243447;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}

.product-shell__top p {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  color: #dbe6f5;
}

.product-shell__pill {
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #33b9f0 0%, #f7d300 34%, #ff5c00 68%, #65e93a 100%);
  color: #030507;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.product-shell__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 12px;
  padding: 12px;
  height: calc(100% - 54px);
}

.product-panel {
  border: 1px solid #233144;
  border-radius: 14px;
  background: rgba(8, 14, 23, 0.88);
  padding: 14px;
}

.product-panel h4 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #8ea3be;
}

.product-input {
  border-radius: 12px;
  border: 1px solid #2a3a4f;
  background: rgba(3, 7, 12, 0.95);
  padding: 11px 12px;
}

.product-input p {
  margin: 0;
  color: #cad8ea;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 20px;
}

.product-input span {
  margin-top: 6px;
  display: block;
  color: #7286a1;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 18px;
}

.product-code {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid #24456a;
  background: rgba(4, 11, 19, 0.95);
  padding: 11px 12px;
}

.product-code p {
  margin: 0;
  color: #d4dfed;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 19px;
}

.product-code p:first-child {
  color: #67dfff;
}

.product-code p + p {
  margin-top: 2px;
}

.product-cta {
  margin-top: 11px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #f7fbff;
  background: linear-gradient(90deg, #1447ff 0%, #33b9f0 100%);
}

.product-panel--right {
  display: grid;
  grid-template-rows: auto repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.metric-card {
  border-radius: 12px;
  border: 1px solid #223349;
  background: rgba(7, 13, 21, 0.92);
  padding: 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-card span {
  color: #b0c2d9;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 16px;
}

.metric-card strong {
  color: #edf4ff;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

.metric-card__note {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 14px;
}

.metric-card__note--green {
  color: #65e93a;
}

.metric-card__note--yellow {
  color: #f7d300;
}

.metric-card__note--blue {
  color: #33b9f0;
}

.metric-card__note--orange {
  color: #ff8f41;
}

.moments {
}

.section-head__grid--moments h2 {
  max-width: 670px;
}

.moments__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #262626;
}

.moment-card {
  border-right: 1px solid #262626;
  min-height: 538px;
  display: flex;
  flex-direction: column;
}

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

.moment-card > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 1px solid #262626;
}

.moment-card__text {
  padding: 16px;
}

.moment-card__text h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}

.moment-card__text p {
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.new-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.outcomes .section-head__grid {
  grid-template-columns: 670px 1fr;
  gap: 0;
  align-items: start;
}

.outcomes .section-head h2 {
  margin: 0;
  max-width: 519px;
  background: none;
  color: #f7f7f7;
  font-family: var(--display);
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.64px;
  font-weight: 600;
}

.outcomes .section-head p {
  margin: 0;
  max-width: 609px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
}

.outcomes__bento {
  margin-top: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.outcome-hero {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 538px;
  position: relative;
  border: 1px solid #252525;
  overflow: hidden;
  background: #090909;
}

.outcome-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 64%, rgba(5, 5, 5, 0.18) 100%);
}

.outcome-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  border: 1px solid var(--stroke);
  background: #0d0d0d;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

.outcome-card:hover {
  border-color: rgba(247, 247, 247, 0.2);
  background-color: #111111;
}

.outcome-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
}

.outcome-card p {
  margin: 0;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 27ch;
  position: relative;
  z-index: 1;
}

.outcome-card__icon {
  position: relative;
  z-index: 1;
}

.outcome-card--a {
  grid-column: 2;
  grid-row: 1;
}

.outcome-card--b {
  grid-column: 3;
  grid-row: 1;
}

.outcome-card--c {
  grid-column: 2;
  grid-row: 2;
}

.outcome-card--d {
  grid-column: 3;
  grid-row: 2;
}

.community {
  margin-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 40px var(--gutter);
  background: #070707;
}

.community__heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.community__eyebrow {
  align-self: flex-start;
}

.community__lead {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
  gap: 40px;
  align-items: start;
}

.community__heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: #f7f7f7;
}

.community__lead p {
  margin: 0;
  max-width: none;
  justify-self: end;
  width: 100%;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 24px;
}

.community__panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1.35fr);
  border: 1px solid var(--stroke);
  background: #0b0b0b;
}

.community-feature {
  padding: 24px;
  border-left: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 480px;
}

.community-feature__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 237, 234, 0.58);
}

.community-feature blockquote {
  margin: 0;
  max-width: none;
  width: 100%;
  color: #efedea;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -1px;
  font-weight: 500;
}

.community-feature__context {
  margin: -12px 0 0;
  color: rgba(239, 237, 234, 0.68);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.02em;
}

.community-feature__meta,
.community-rail__blank {
  margin-top: auto;
}

.community-rail__blank {
  min-height: 0;
}

.community-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--stroke);
  margin-top: auto;
}

.community-proof li {
  min-height: 82px;
  padding: 14px 12px;
  border-right: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.community-proof li:last-child {
  border-right: 0;
}

.community-proof__brand {
  align-items: flex-start;
}

.community-proof__brand img {
  width: 136px;
  height: 43px;
  object-fit: contain;
  object-position: center;
  opacity: 0.96;
}

.community-proof strong {
  color: #efedea;
  font-family: var(--display);
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.community-proof span {
  color: rgba(239, 237, 234, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.community-rail {
  display: grid;
  grid-template-rows: auto 1fr;
}

.community-rail__list {
  padding: 16px;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.community-rail__list p {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 237, 234, 0.56);
}

.community-rail__list a {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid transparent;
  color: #efedea;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.community-rail__list a span {
  font-size: 13px;
  line-height: 1;
  color: rgba(239, 237, 234, 0.62);
}

.community-rail__list a:hover,
.community-rail__list a:focus-visible,
.community-rail__list a.is-active {
  border-color: rgba(255, 212, 0, 0.22);
  background: #111111;
}

.faq {
  padding-top: 0;
}

.faq__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 329px 1fr;
  gap: 24px;
  align-items: stretch;
}

.faq__blank,
.faq__media {
  min-height: 419px;
}

.faq__media {
  position: relative;
  overflow: hidden;
  border: 1px solid #252525;
  background: #0b0b0b;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__media-label {
  margin: 0;
  width: fit-content;
  border: 1px solid rgba(239, 237, 234, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(239, 237, 234, 0.9);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.faq__media h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 500;
  color: #f7f7f7;
}

.faq__media-copy {
  margin: 0;
  color: rgba(239, 237, 234, 0.78);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 20px;
  max-width: 26ch;
}

.faq__media-points {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.faq__media-points li {
  padding: 8px 10px;
  border: 1px solid rgba(239, 237, 234, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(239, 237, 234, 0.9);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 18px;
}

.faq__media-points span {
  display: inline-block;
  margin-right: 8px;
  color: #67dfff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq__media-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #efedea;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(239, 237, 234, 0.35);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq__media-link:hover,
.faq__media-link:focus-visible {
  color: #fff;
  border-color: #fff;
}

.faq__list {
  border: 1px solid #2c2c2c;
  min-height: 420px;
  padding: 10px 33px;
  background: #0a0a0a;
  overflow: hidden;
}

.faq__list button {
  width: 100%;
  background: transparent;
  border: 0;
  color: rgba(239, 237, 234, 0.88);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq__list button span:last-child {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(239, 237, 234, 0.2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(239, 237, 234, 0.02);
  color: rgba(239, 237, 234, 0.88);
  font-family: var(--sans);
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.faq__item {
  position: relative;
}

.faq__item + .faq__item {
  border-top: 1px solid var(--stroke);
}

.faq__question {
  cursor: pointer;
  transition: color 0.22s ease;
}

.faq__question span:first-child {
  max-width: 640px;
}

.faq__question:hover {
  color: #fff;
}

.faq__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  will-change: height, opacity, transform;
  transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, transform 0.22s ease;
}

.faq__answer p {
  margin: 0;
  padding: 2px 44px 20px 0;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 22px;
  color: rgba(239, 237, 234, 0.7);
}

.faq__item.is-open .faq__question {
  color: #fff;
}

.faq__item.is-open .faq__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq__item.is-open .faq__symbol {
  border-color: #efedea;
  background: #efedea;
  color: #0a0a0a;
  transform: scale(1.03);
}

.footer {
  position: relative;
  background: #050505;
  color: var(--text);
  border-top: 1px solid var(--stroke);
  overflow: hidden;
  padding: 60px 0;
}

.footer__inner {
  border-left: 1px solid var(--stroke);
  border-right: 1px solid var(--stroke);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
}

.footer__banner {
  position: relative;
  min-height: 400px;
  padding-top: 64px;
  overflow: hidden;
}

.footer__banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.footer__banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 168px;
  padding: 24px;
}

.footer__banner-top {
  height: 48px;
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  max-width: 220.851px;
  object-fit: contain;
}

.footer__banner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.footer__banner-bottom h2 {
  margin: 0;
  font-family: "GT Eesti Display Trial", var(--display);
  font-size: 44px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: #fff;
  max-width: 620px;
}

.footer .btn--white {
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 40px;
  padding: 10px 24px 10px 16px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 13px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 0;
}

.footer .btn--white:hover {
  opacity: 0.9;
}

.footer__cta-icon {
  width: 22px;
  height: 9px;
  flex: 0 0 auto;
}

.footer__bottom {
  position: relative;
  height: 289px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 64px 32px;
}

.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: -118px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 360px;
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  white-space: nowrap;
  color: #fff;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.footer__meta {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo-sm-text {
  height: 24px;
  width: auto;
  max-width: 110.425px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer__meta p {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 18.2px;
  color: #b5b3ad;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}

.footer__social a:visited,
.footer__social a:active,
.footer__social a:hover,
.footer__social a:focus-visible {
  color: #fff;
}

.footer__social-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__social a:hover {
  opacity: 1;
}

@media (max-width: 1280px) {
  .hero h1 {
    font-size: 58px;
    line-height: 1.1;
  }

  .footer__banner-bottom h2 {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 24px;
    --section-gap: 64px;
    --section-gap-tight: 48px;
    --feature-gap: 24px;
  }

  .frame {
    width: calc(100% - 24px);
  }

  .top-nav {
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .page-shell {
    padding-top: 70px;
  }

  .top-nav__inner {
    width: calc(100% - 24px);
    margin: 0 auto;
    min-height: 70px;
    gap: 14px;
    padding: 0;
  }

  .top-nav__logo {
    width: auto;
    min-height: 0;
    margin-left: 0;
  }

  .top-nav__logo img {
    width: 112px;
  }

  .top-nav__menu {
    flex: 1 1 auto;
    justify-content: center;
    gap: 16px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-nav__menu::-webkit-scrollbar {
    display: none;
  }

  .top-nav__menu a {
    font-size: 12px;
    padding: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .top-nav__cta {
    min-height: 40px;
    min-width: 108px;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.04em;
    margin-right: 8px;
  }

  .top-nav .btn--dark {
    min-height: 44px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero {
    height: 740px;
  }

  .hero__content {
    top: calc(50% - 96px);
    transform: translate(-50%, -50%);
    gap: 16px;
  }

  .hero__image {
    height: 280px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.35;
  }

  .btn--light {
    font-size: 14px;
    line-height: 22px;
  }

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

  .logos__title {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }

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

  .section-head__grid,
  .sentiment-interface,
  .working-conversation__head,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .community__heading h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .feature-cards,
  .outcomes__bento,
  .moments__cards,
  .community__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .features-grid {
    padding-top: 0;
  }

  .feature-card--wide,
  .feature-card--short {
    grid-column: auto;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 16px;
  }

  .feature-cards {
    row-gap: 32px;
  }

  .mockup {
    left: 12px;
    right: 12px;
    top: 12px;
    border-radius: 12px;
    padding: 10px;
  }

  .mockup--sentiment,
  .mockup--signals {
    max-width: 220px;
  }

  .mockup--health,
  .mockup--player {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .mockup--ask {
    width: calc(100% - 24px);
    bottom: 12px;
  }

  .health__ring {
    width: 74px;
    height: 74px;
  }

  .health__ring::before {
    width: 56px;
    height: 56px;
  }

  .sentiment-interface__left {
    min-height: 0;
    gap: 40px;
  }

  .sentiment-interface__intro {
    padding-left: 0;
  }

  .sentiment-interface-wrap {
    padding: 0;
  }

  .interface-list {
    padding-left: 0;
  }

  .interface-list__item {
    padding: 16px 0 18px;
  }

  .interface-list__item h4,
  .moment-card__text h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .sentiment-interface__visual {
    height: 360px;
    width: 100%;
    margin-top: 0;
    border-radius: 12px;
  }

  .sentiment-interface {
    padding: 24px;
    gap: 24px;
  }

  .sentiment-interface__visual-inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  .sentiment-interface__base,
  .sentiment-interface__overlay {
    width: 100%;
    height: 100%;
  }

  .product-shell__body {
    grid-template-columns: 1fr;
    height: auto;
    overflow: auto;
  }

  .product-panel--right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
  }

  .product-panel--right h4 {
    grid-column: 1 / -1;
  }

  .product-cta {
    font-size: 18px;
  }

  .working-conversation {
    padding: 0;
    gap: 24px;
  }

  .working-conversation__head h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .working-conversation__grid {
    grid-template-columns: 1fr;
  }

  .working-card--middle {
    border-left: 1px solid var(--stroke);
    border-right: 1px solid var(--stroke);
    border-top: 0;
    border-bottom: 0;
  }

  .moments__cards {
    border: 0;
    gap: 12px;
  }

  .moment-card {
    border: 1px solid #262626;
  }

  .moment-card > img {
    height: 280px;
  }

  .outcome-hero,
  .outcome-card--a,
  .outcome-card--b,
  .outcome-card--c,
  .outcome-card--d {
    grid-column: auto;
    grid-row: auto;
  }

  .outcome-card {
    min-height: 0;
    padding: 16px;
  }

  .outcome-hero {
    min-height: 360px;
  }

  .outcomes .section-head__grid {
    gap: 0;
  }

  .outcomes .section-head h2 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.64px;
    max-width: 519px;
  }

  .outcomes .section-head p {
    font-size: 16px;
    line-height: 24px;
    max-width: 609px;
  }

  .community {
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 36px var(--gutter);
  }

  .community__panel {
    height: auto;
    min-height: 0;
  }

  .community__lead {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .community-feature {
    padding: 20px 16px;
    border-left: 0;
    border-top: 1px solid var(--stroke);
  }

  .community-feature blockquote {
    font-size: 36px;
    line-height: 1.08;
    max-width: none;
  }

  .community-feature__meta {
    margin-top: 0;
  }

  .community-proof {
    grid-template-columns: 1fr;
  }

  .community-proof li {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
    min-height: 0;
    padding: 12px 0;
  }

  .community-proof li:last-child {
    border-bottom: 0;
  }

  .community-proof strong {
    font-size: 24px;
    line-height: 28px;
  }

  .community-rail__list {
    padding: 14px;
  }

  .community-rail__blank {
    min-height: 120px;
  }

  .faq {
    padding-top: 0;
  }

  .faq__grid {
    margin-top: 28px;
    gap: 16px;
  }

  .faq__blank,
  .faq__media {
    min-height: 0;
  }

  .faq__media {
    padding: 22px 18px;
    gap: 14px;
  }

  .faq__media h3 {
    font-size: 24px;
  }

  .faq__media-copy {
    font-size: 12px;
    line-height: 18px;
  }

  .faq__list {
    min-height: 0;
    padding: 8px 20px;
  }

  .faq__list button {
    font-size: 17px;
    padding: 18px 0;
  }

  .faq__question span:first-child {
    max-width: none;
  }

  .faq__list button span:last-child {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .faq__answer p {
    padding: 0 0 16px;
    font-size: 13px;
    line-height: 20px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__inner {
    border-left: 0;
    border-right: 0;
  }

  .footer__banner {
    min-height: 320px;
    padding-top: 24px;
  }

  .footer__banner-bg {
    inset: -76px -28px;
    width: calc(100% + 56px);
    height: calc(100% + 152px);
  }

  .footer__banner-content {
    padding: 24px;
    gap: 72px;
  }

  .footer__logo-img {
    width: 166px;
  }

  .footer__banner-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__banner-bottom h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .footer .btn--white {
    height: 38px;
    padding: 10px 20px 10px 14px;
    font-size: 12px;
  }

  .footer__bottom {
    height: 260px;
    padding: 118px 24px 24px;
  }

  .footer__watermark {
    font-size: 220px;
    line-height: 0.9;
    bottom: -96px;
  }

  .footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer__social a {
    width: 20px;
    height: 20px;
  }
  .footer__social-svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outcome-card {
    transition: none;
  }
}
