:root {
  --yellow: #FEE546;
  --ink: #0A0A0A;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --line: #E7E7E7;
  --fg-2: #555;
  --fg-3: #8A8A8A;
  --blue: #BFDBFE;
  --display-font: "Libertinus Math", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after { box-sizing: border-box; }
html,
body { margin: 0; padding: 0; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0;
}
button,
input,
select,
textarea { font: inherit; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-nav__inner {
  max-width: 1800px;
  margin: 0 auto;
  min-height: 66px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-logo img {
  display: block;
  width: 150px;
  height: auto;
}
.site-nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}
.site-nav__links a,
.site-nav__menu-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #282828;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}
.site-nav__links a:hover,
.site-nav__menu-button:hover,
.site-nav__menu-button[aria-expanded="true"] {
  background: #FFF489;
}
.site-nav__menu-button svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}
.site-nav__menu-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-nav__inner > .btn--primary {
  flex: none;
}
.site-mega {
  display: none;
}
.site-mega.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 25;
  padding: 0 24px 18px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.site-mega__inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 22px 0 8px;
}
.site-mega__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.site-mega__grid--platform {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.site-mega__heading {
  margin: 0 0 8px;
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-mega__intro {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FAFAFA;
}
.site-mega__intro-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
}
.site-mega__intro-copy {
  margin: 10px 0 0;
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.45;
}
.site-mega__link {
  display: flex;
  padding: 10px;
  border-radius: 8px;
  color: var(--ink);
}
.site-mega__link:hover {
  background: #FFF489;
}
.site-mega__link strong,
.site-mega__link span span {
  display: block;
}
.site-mega__link strong {
  font-size: 14px;
  font-weight: 800;
}
.site-mega__link span span {
  margin-top: 2px;
  color: var(--fg-2);
  font-size: 12px;
  line-height: 1.38;
}
.site-mega__industries {
  grid-column: span 2;
  min-width: 0;
}
.site-mega__split {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hamburger {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #282828;
}
.hamburger span {
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger span::before { top: -8px; }
.hamburger span::after { top: 8px; }
.mobile-links {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100vh - 67px);
  overflow-y: auto;
  padding: 0 0 18px;
}
.mobile-links.is-open { display: grid; gap: 4px; }
.mobile-links a {
  color: #282828;
  font-weight: 750;
}
.mobile-group {
  border-bottom: 1px solid var(--line);
}
.mobile-group__summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}
.mobile-group__summary::-webkit-details-marker { display: none; }
.mobile-group__summary::marker { content: ""; }
.mobile-group__summary:hover { background: #FFF489; }
.mobile-group__summary svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}
.mobile-group[open] .mobile-group__summary svg { transform: rotate(180deg); }
.mobile-group__body {
  padding: 0 24px 18px;
}
.mobile-group__heading {
  margin: 14px 0 6px;
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-group__link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  border-radius: 8px;
}
.mobile-group__link:hover {
  background: #FFF489;
}
.mobile-group__link strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}
.mobile-group__link span {
  display: block;
  margin-top: 2px;
  color: var(--fg-2);
  font-size: 12px;
  line-height: 1.45;
}
.mobile-links__actions {
  display: grid;
  gap: 10px;
  padding: 16px 24px 0;
}
.mobile-links__actions .btn {
  width: 100%;
}
@media (min-width: 980px) {
  .site-nav__links { display: flex; }
  .hamburger { display: none; }
}
@media (max-width: 1100px) {
  .site-mega__grid,
  .site-mega__grid--platform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-mega__industries {
    grid-column: auto;
  }
}
@media (max-width: 979px) {
  .site-mega { display: none !important; }
  .site-nav__actions .btn--primary,
  .site-nav__inner > .btn--primary {
    display: none;
  }
  .site-nav__inner:not(:has(.hamburger)) {
    flex-wrap: nowrap;
  }
  .site-nav__inner:not(:has(.hamburger)) .site-nav__links {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}
.btn--primary {
  border-color: #E8CE2E;
  background: var(--yellow);
}
.btn--primary:hover {
  background: #FFF489;
}
.btn:not(.btn--primary):hover {
  outline: 2px solid #111;
  outline-offset: -2px;
}
.btn--primary:active {
  transform: translateY(1px);
}
.page-hero {
  padding: 86px 24px 62px;
  background: #fff;
}
.page-hero__inner,
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.page-hero__inner--pricing {
  max-width: 1440px;
}
.page-hero__inner--pricing h1 {
  max-width: 1280px;
}
.section__inner--pricing {
  max-width: 1800px;
}
.section__inner--wide {
  max-width: 1800px;
}
@media (min-width: 760px) {
  .section__inner--wide {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.human-judgment {
  display: grid;
  gap: 28px;
  align-items: center;
}
.human-judgment__media {
  position: relative;
  margin: 0;
}
.human-judgment__media::before {
  content: "";
  position: absolute;
  inset: 18px 0 -14px 18px;
  z-index: 0;
  border-radius: 8px;
  background: var(--yellow);
}
.human-judgment__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}
@media (min-width: 860px) {
  .human-judgment {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }
  .human-judgment h2,
  .human-judgment .section-copy,
  .human-judgment .hero-actions {
    grid-column: 1;
  }
  .human-judgment__media {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px 16px;
  border: 2px solid #282828;
  border-radius: 999px;
  color: #282828;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 7vw, 65px);
  line-height: 1.02;
  letter-spacing: 0;
}
.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--fg-2);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.section {
  padding: 64px 24px;
  border-top: 1px solid var(--line);
}
.section--soft {
  background: #f6f8fb;
}
.section--blue {
  position: relative;
  overflow: hidden;
  background: var(--blue);
}
.section--blue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 68%;
  width: min(1540px, 92vw);
  aspect-ratio: 1392 / 867;
  background: url("/assets/Ellipse 1.svg") center / contain no-repeat;
  opacity: 0.42;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.section--blue > .section__inner {
  position: relative;
  z-index: 1;
}
#deck-request::before {
  top: calc(68% + 100px);
}
#deck-request .section__inner {
  display: grid;
  justify-items: center;
}
#deck-request h2 {
  text-align: center;
}
#deck-request .form,
#deck-request .deck-download {
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: auto;
}
.section h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 45px);
  line-height: 1.04;
  letter-spacing: 0;
}
.section-copy {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--fg-2);
  font-size: 18px;
}
.domain-explorer {
  margin-top: 34px;
}
.domain-explorer__summary {
  margin: 0;
  text-align: center;
  color: var(--fg-3);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
}
.domain-tabs-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.domain-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}
.domain-tabs__arrow {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--fg-2);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}
.domain-tabs__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.domain-tabs__arrow:hover {
  color: var(--ink);
}
.domain-tabs__button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}
.domain-tabs__button.is-active {
  background: var(--ink);
  color: #fff;
}
.domain-card-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.domain-card {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  padding: 26px 28px;
  border: 1px solid #DADADA;
  border-radius: 8px;
  background: #fff;
}
.domain-card h3 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.06;
}
.domain-card__skills {
  position: relative;
  display: flex;
  max-height: 106px;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
}
.domain-card__skills::after {
  content: "...";
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 2px 0 34px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 45%);
  color: var(--fg-2);
  font-weight: 850;
  letter-spacing: 0.08em;
}
.domain-card__skills span,
.domain-modal__terms span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #D4D4D8;
  border-radius: 999px;
  background: #FAFAFA;
  color: #3F3F46;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}
.domain-card__more {
  position: relative;
  width: fit-content;
  margin: auto 0 0 auto;
  padding: 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.domain-card__more::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0.42);
  transform-origin: left center;
  transition: background 180ms ease, transform 220ms ease;
}
.domain-card__more:hover::after,
.domain-card__more:focus-visible::after {
  background: #FFF489;
  transform: scaleX(1);
}
@media (min-width: 760px) {
  .domain-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1060px) {
  .domain-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .domain-tabs-shell {
    width: 100%;
  }
  .domain-tabs {
    flex: 1 1 auto;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 8px;
    scrollbar-width: none;
  }
  .domain-tabs::-webkit-scrollbar {
    display: none;
  }
  .domain-tabs__button {
    flex: 0 0 auto;
  }
  .domain-card-grid {
    display: flex;
    gap: 14px;
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .domain-card-grid::-webkit-scrollbar {
    display: none;
  }
  .domain-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }
}
.domain-modal[hidden] {
  display: none;
}
.domain-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.domain-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.46);
}
.domain-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}
.domain-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.domain-modal__cluster {
  margin: 0 0 10px;
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.domain-modal h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
}
.domain-modal__copy {
  margin: 18px 0 0;
  color: var(--fg-2);
  font-size: 18px;
  line-height: 1.55;
}
.domain-modal h3 {
  margin: 28px 0 12px;
  font-size: 24px;
}
.domain-modal__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.has-domain-modal {
  overflow: hidden;
}
.grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.grid--2,
.grid--3,
.grid--4,
.grid--5 { grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1180px) {
  .grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.grid--5 .card {
  display: flex;
  flex-direction: column;
}
.grid--5 .price {
  margin-top: 14px;
  font-size: 34px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.grid--5 .price span {
  color: var(--fg-3);
  font-size: 14px;
  font-weight: 650;
}
.grid--5 .plan-period {
  margin: 0;
}
.grid--5 .card .btn {
  width: 100%;
  justify-content: center;
}
.grid--5 .pricing-action {
  margin: 14px 0 0;
}
.grid--5 .pricing-copy {
  color: var(--fg-2);
}
.card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
.industry-page .card {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.industry-page .card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 44px;
  height: 34px;
  border-radius: 999px;
  background: rgba(254, 229, 70, 0.72);
  transform: translateX(-50%) rotate(-9deg);
  animation: icon-blob-pulse 4.5s ease-in-out infinite;
}
.industry-page .card::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-file-text'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M10 9H8'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3C/svg%3E");
  transform: translateX(-50%);
  animation: icon-float-centered 3.8s ease-in-out infinite;
}
.industry-page .grid .card:nth-child(3n + 2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-circle-check-big'%3E%3Cpath d='M21.8 10A10 10 0 1 1 17 3.3'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
  animation-delay: 0.3s;
}
.industry-page .grid .card:nth-child(3n + 3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-users'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  animation-delay: 0.6s;
}
.industry-page .card h3 {
  text-align: center;
}
.industry-page .card p {
  text-align: center;
}
.industry-page .tailor-callout__icon {
  position: relative;
  display: grid;
  place-items: center;
}
.industry-page .tailor-callout__icon::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 42px;
  border-radius: 999px;
  background: rgba(254, 229, 70, 0.72);
  transform: rotate(-9deg);
  animation: icon-blob-pulse 4.5s ease-in-out infinite;
}
.industry-page .tailor-callout__icon svg {
  position: relative;
  width: 42px;
  height: 42px;
  animation: icon-float 3.8s ease-in-out infinite;
}
@keyframes icon-float-centered {
  0%,
  100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
@keyframes icon-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes icon-blob-pulse {
  0%,
  100% { opacity: 0.72; scale: 1; }
  50% { opacity: 0.94; scale: 1.08; }
}
@media (prefers-reduced-motion: reduce) {
  .industry-page .card::before,
  .industry-page .card::after,
  .industry-page .tailor-callout__icon::before,
  .industry-page .tailor-callout__icon svg {
    animation: none;
  }
}
.card p {
  margin: 10px 0 0;
  color: var(--fg-2);
}
.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--fg-2);
}
.news-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f4f1ea;
}
.news-card > div {
  padding: 22px;
}
.news-card__meta {
  margin: 0 0 10px;
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}
.news-card p:last-child {
  margin: 12px 0 0;
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.45;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}
.leader-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.leader-card img {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  object-fit: cover;
}
.leader-card__role {
  margin: 0 0 8px;
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.leader-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}
.leader-card p:last-child {
  margin: 14px 0 0;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.45;
}
@media (min-width: 980px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .leader-card {
    grid-template-columns: 1fr;
  }
  .leader-card img {
    width: 128px;
    height: 128px;
  }
}
.press-release {
  background: #fff;
}
.press-release__hero {
  padding: 74px 24px 56px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.press-release__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.press-release__back {
  display: flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 750;
}
.press-release__back::before {
  content: "<";
  margin-right: 8px;
}
.press-release__image {
  margin: 34px 0 0;
}
.press-release__image img {
  display: block;
  width: min(100%, 920px);
  height: auto;
  border: 1px solid #1E1E1E;
  border-radius: 8px;
  background: #050505;
}
.press-release__date {
  margin: 0 0 16px;
  color: var(--fg-3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.press-release__body {
  padding: 58px 24px 82px;
}
.press-release__layout {
  display: grid;
  gap: 34px;
}
.press-release__sidebar {
  display: grid;
  gap: 12px;
}
.press-release__fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FAFAFA;
}
.press-release__fact span {
  display: block;
  margin-bottom: 7px;
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.press-release__fact strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}
.press-release__content {
  max-width: 760px;
}
.press-release__content p {
  margin: 0 0 22px;
  color: #252525;
  font-size: 18px;
  line-height: 1.72;
}
.press-release__content h2 {
  margin: 44px 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}
.press-release__content a:not(.btn) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}
.press-release__content blockquote,
.press-release__quote {
  margin: 36px 0;
  padding: 26px;
  border: 1px solid #E8CE2E;
  border-radius: 8px;
  background: #FFF489;
}
.press-release__quote {
  display: grid;
  gap: 18px;
  align-items: start;
}
.press-release__quote img {
  width: 96px;
  height: 96px;
  border: 2px solid #E8CE2E;
  border-radius: 50%;
  object-fit: cover;
}
.press-release__content blockquote p,
.press-release__quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  font-family: var(--display-font);
  line-height: 1.22;
}
.press-release__quote cite {
  display: block;
  margin-top: 14px;
  color: var(--fg-2);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}
.press-release__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.research-page .card h3 {
  font-size: clamp(22px, 3vw, 30px);
}
.research-link {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
  transition: text-decoration-color 0.18s ease, color 0.18s ease;
}
.research-link:hover {
  color: var(--ink);
  text-decoration-color: #FFF489;
}
.research-proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
}
.research-proof-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FAFAFA;
}
.research-proof-list strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}
.research-proof-list span {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.45;
}
@media (min-width: 900px) {
  .press-release__layout {
    grid-template-columns: 290px minmax(0, 1fr);
  }
  .press-release__sidebar {
    position: sticky;
    top: 92px;
    align-self: start;
  }
  .press-release__quote {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
.split {
  display: grid;
  gap: 34px;
  align-items: start;
}
@media (min-width: 860px) {
  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}
.stat-row {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 760px) {
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.35;
}
.tailor-callout {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.tailor-callout__icon {
  width: 52px;
  height: 52px;
  color: #282828;
}
.tailor-callout__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.tailor-callout h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}
.tailor-callout p {
  max-width: 860px;
  margin: 6px 0 0;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.45;
}
@media (min-width: 860px) {
  .tailor-callout {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 32px;
    padding: 38px 48px;
  }
}
@media (max-width: 520px) {
  .tailor-callout .btn {
    width: 100%;
  }
}
.mode-card {
  position: relative;
  overflow: hidden;
}
.mode-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--yellow);
}
.mode-card > * {
  position: relative;
}
.workflow-example {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.workflow-example__prompt {
  margin: 14px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FAFAFA;
  color: var(--fg-2);
  font-size: 14px;
}
.workflow-example__result {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 760px) {
  .workflow-example__result {
    grid-template-columns: repeat(3, 1fr);
  }
}
.workflow-example__result span {
  display: block;
  padding: 12px;
  border-radius: 8px;
  background: #FFF489;
  font-size: 13px;
  font-weight: 700;
}
.kicker {
  color: var(--fg-3);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price {
  margin: 14px 0 0;
  font-size: 42px;
  font-weight: 850;
  letter-spacing: 0;
}
.form {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.form__field {
  display: grid;
  gap: 7px;
}
.form__label {
  color: #27272A;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #D4D4D8;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 0 14px;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.form textarea {
  padding-top: 13px;
  padding-bottom: 13px;
}
.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: #A1A1AA;
  background: #EFF6FF;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #18181B;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08);
}
.form select option {
  background: #FFFFFF;
  color: var(--ink);
}
.form select option:hover,
.form select option:checked {
  background: #BFDBFE;
  color: var(--ink);
}
.form input::placeholder,
.form textarea::placeholder {
  color: #8A8A8A;
}
.form textarea {
  min-height: 150px;
  resize: vertical;
}
.form .btn {
  min-height: 48px;
  border-radius: 8px;
}
.form-note {
  color: var(--fg-3);
  font-size: 13px;
  margin: 0;
}
.deck-download {
  max-width: 680px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #18181B;
  border-radius: 8px;
  background: #fff;
}
.deck-download[hidden] {
  display: none;
}
.deck-download h3 {
  margin: 0 0 8px;
  font-size: 28px;
}
.deck-download p {
  margin: 0 0 18px;
  color: var(--fg-2);
}
@media (max-width: 520px) {
  .form {
    padding: 18px;
  }
  .form .btn {
    width: 100%;
  }
}
.site-footer {
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.site-footer__inner {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--fg-2);
  font-size: 13px;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--bg);
}
.footer__inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  display: grid;
  gap: 28px;
  padding-bottom: 34px;
}
@media (min-width: 760px) {
  .footer__top {
    grid-template-columns: minmax(220px, 1.15fr) repeat(5, minmax(0, 1fr));
  }
}
.footer__brand-text {
  max-width: 270px;
}
.footer__brand-logo {
  display: block;
  width: 132px;
  height: auto;
  margin: 0 0 18px;
}
.footer__brand-copy {
  margin: 10px 0 0;
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.55;
}
.footer__review-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.footer__review-icon {
  display: block;
  width: 120px;
  height: auto;
  flex: 0 0 auto;
}
.footer__review-link:hover {
  color: #111;
  background: #FFF489;
  text-decoration: none;
}
.footer__column-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.footer__subhead {
  margin: 16px 0 7px;
  color: var(--fg-3);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__subhead:first-child { margin-top: 0; }
.footer__list {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
}
.footer__list a {
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.35;
  transition: color 140ms var(--ease);
}
.footer__list a:hover { color: var(--ink); }
.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 720px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__copy {
  color: var(--fg-2);
  font-size: 13px;
}
.footer__copy .sep { color: var(--fg-3); margin: 0 6px; }
.footer__tag {
  color: var(--fg-3);
  font-size: 12px;
  margin-top: 4px;
}
.footer__social {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0 0 0 auto;
  padding: 0;
}
.footer__social a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--fg-2);
  transition: background 140ms var(--ease), color 140ms var(--ease);
}
.footer__social a:hover {
  background: #F2F2F0;
  color: var(--ink);
}
.footer__social svg {
  display: block;
  width: 16px;
  height: 16px;
}
.prose {
  max-width: 900px;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.7;
}
.prose h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}
.prose p {
  margin: 0 0 16px;
}
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}
@media (max-width: 520px) {
  .site-logo img { width: 124px; }
  .site-nav__inner { padding: 12px 18px; }
  .site-nav__actions .btn { padding: 0 14px; }
  .page-hero { padding-top: 58px; }
}
