:root {
  --ink: #1c1c1e;
  --muted: #6b6469;
  --paper: #fff9f8;
  --card: #ffffff;
  --line: #e5dfdd;
  --red: #ef3f35;
  --green: #3da268;
  --peach: #ffdfcb;
  --blue: #dbe2ff;
  --shadow: 0 14px 40px rgba(41, 31, 35, .08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -.02em;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.section-title {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 24px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(28, 28, 30, .16);
}

.btn.light {
  background: #fff;
  color: var(--ink);
}

.btn.small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.arrow-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
}

/* Navigation pill */
.nav-wrap {
  position: fixed;
  z-index: 1000;
  inset: 20px 0 auto;
  pointer-events: none;
}

.nav-pill {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: auto;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .34) 46%, rgba(244, 238, 237, .42));
  box-shadow: 0 18px 48px rgba(34, 26, 28, .13), inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(26px) saturate(1.45);
  -webkit-backdrop-filter: blur(26px) saturate(1.45);
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.nav-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, .38) 72%, rgba(255, 255, 255, 0));
  opacity: .75;
  pointer-events: none;
}

.brand {
  min-width: 188px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 21px;
  height: 27px;
  object-fit: contain;
}

.nav-links {
  flex: 1;
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 13px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.nav-link.active {
  color: var(--ink);
  font-weight: 750;
}

.nav-link img {
  width: 13px;
  height: 13px;
  transition: transform .2s ease;
}

.resources.open .nav-link img {
  transform: rotate(180deg);
}

.nav-cta {
  width: 188px;
  margin-left: 0;
  min-height: 40px;
  border-radius: 10px;
  padding-inline: 22px;
  justify-content: center;
}

.language-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  height: 34px;
  margin-left: 12px;
  margin-right: 8px;
  padding: 3px;
  border: 1px solid rgba(34, 30, 30, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .46);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

.language-toggle span {
  display: grid;
  min-width: 27px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.language-toggle .active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 3px 8px rgba(28, 28, 30, .18);
}

.language-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.resources {
  position: relative;
}

.resource-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 140px;
  padding: 7px;
  border: 1px solid #d7d3d2;
  border-radius: 15px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}

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

.resource-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 16px;
}

.resource-menu a:hover,
.resource-menu a:focus-visible {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  outline: none;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 148px 0 62px;
  text-align: center;
}

.hero .kicker {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 800;
}

.hero h1 {
  max-width: 940px;
  margin: auto;
  font-size: clamp(55px, 6.1vw, 88px);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--red);
}

html[lang="vi"] .hero h1 {
  max-width: 1160px;
  font-size: clamp(55px, 5.7vw, 82px);
}

.hero-copy {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 62px;
}

.benefits {
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 52px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

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

.benefits i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}

.benefits i::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  position: absolute;
  inset: 5px;
}

.hero-visual {
  margin-top: 92px;
  padding: 13px;
  border: 1px solid #d7d2d0;
  border-radius: 26px;
  background: #dedcdb;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  border-radius: 19px;
}

.logos {
  padding: 19px 0 22px;
  border-block: 1px solid #eee7e5;
}

.logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 92px;
  color: var(--muted);
  font-size: 16px;
}

.logos-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.logos-list img {
  height: 24px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.logos-list .divider {
  width: 1px;
  height: 24px;
  background: #d9d2d0;
}

/* Agent showcase */
.showcase {
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  align-items: start;
}

.agent-tabs {
  padding: 18px 40px 0 0;
}

.agent-tab {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.agent-tab strong {
  display: block;
  font-size: 17px;
}

.agent-tab .tab-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: .32s ease;
}

.agent-tab.active .tab-details {
  max-height: 520px;
  opacity: 1;
}

.agent-tab p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.social-orb {
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, .1));
}

.social-orb.fb {
  right: 95px;
  top: 42px;
  transform: rotate(12deg);
}

.social-orb.zalo {
  left: calc(50% - 380px);
  bottom: 220px;
  transform: rotate(-10deg);
}

.dashboard-frame {
  padding: 12px;
  border: 1px solid #d4cfcd;
  border-radius: 22px;
  background: #dfdddc;
  box-shadow: var(--shadow);
  min-height: 360px;
  display: grid;
  place-items: center;
}

.dashboard-frame img {
  width: 100%;
  border-radius: 15px;
  transition: opacity .2s ease;
}

.showcase-cta {
  text-align: center;
  margin-top: 72px;
}

.showcase-cta .btn {
  min-width: 220px;
}

.fineprint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* How it works and catalog */
.how {
  padding: 80px 0;
}

.how-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step-num {
  font-size: 17px;
  font-weight: 800;
}

.step h3 {
  margin: 0;
  font-size: 17px;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 44px 0 28px;
}

.catalog-head h3 {
  margin: 0;
  font-size: 18px;
}

.catalog-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}

.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.agent-card {
  min-height: 242px;
  padding: 16px;
  border-radius: 24px;
  background: #ccd4f2;
}

.agent-card:nth-child(2) {
  background: #aee0db;
}

.agent-card:nth-child(3) {
  background: #fff;
  border: 1px solid var(--line);
}

.agent-card:nth-child(4) {
  background: transparent;
  border: 1px dashed #7e7577;
}

.agent-card-inner {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 17px;
  background: rgba(255, 255, 255, .8);
}

.agent-card:nth-child(3) .agent-card-inner,
.agent-card:nth-child(4) .agent-card-inner {
  border: 0;
  background: transparent;
}

.agent-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.agent-card h4 {
  margin: 0;
  font-size: 18px;
}

.badge {
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.badge.soon {
  background: #f3eeee;
  color: var(--muted);
}

.agent-card p {
  max-width: 620px;
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 16px;
}

/* Shift: self-completing workflow */
.shift {
  padding: 112px 0 92px;
}

.shift-head {
  text-align: center;
}

.shift-head .section-title {
  max-width: 760px;
  margin: auto;
}

.shift-head .section-copy {
  max-width: 700px;
  margin-inline: auto;
}

.autopilot-stage {
  position: relative;
  width: min(1430px, calc(100vw - 48px));
  min-height: 680px;
  margin: 52px 0 0 50%;
  padding: 28px 28px 34px;
  overflow: hidden;
  border: 1px solid #e0d9d6;
  border-radius: 26px;
  background: rgba(255, 255, 255, .3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transform: translateX(-50%);
}

.autopilot-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -180px;
  width: 620px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 202, 169, .34);
  filter: blur(70px);
  transform: translateX(-50%) scale(.55);
  opacity: 0;
  transition: opacity .7s ease, transform 1.1s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.autopilot-stage.is-ready::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.autopilot-stage.is-resetting::after {
  opacity: 0;
  transition: none;
}

.workflow-movie {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  margin: 0 auto;
}

.goal-strip {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 12px 18px 12px 12px;
  border: 1px solid #ebe5e2;
  border-radius: 15px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 11px 25px rgba(37, 28, 31, .07);
  opacity: 0;
  transform: translateY(-12px) scale(.985);
  transition: opacity .55s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}

.autopilot-stage.is-playing .goal-strip {
  opacity: 1;
  transform: none;
}

.goal-mark,
.result-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: #fff0e8;
}

.goal-mark input,
.result-mark input,
.task-check {
  margin: 0;
  accent-color: var(--red);
  pointer-events: none;
}

.goal-mark input {
  width: 22px;
  height: 22px;
}

.goal-strip strong {
  font-size: 18px;
  line-height: 1.3;
}

.goal-strip small {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.task-stack {
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid #e1e4e6;
  border-radius: 16px;
  background: rgba(250, 251, 252, .94);
  box-shadow: 0 12px 34px rgba(35, 27, 30, .035);
}

.task-row {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px 20px;
  border-bottom: 1px solid #e4e7e9;
  color: #828389;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .55s cubic-bezier(.16, 1, .3, 1), color .35s ease, background .35s ease;
}

.task-row:last-child {
  border-bottom: 0;
}

.autopilot-stage.is-playing .task-row {
  opacity: 1;
  transform: none;
}

.autopilot-stage.is-playing .task-row:nth-child(1) {
  transition-delay: .18s;
}

.autopilot-stage.is-playing .task-row:nth-child(2) {
  transition-delay: .26s;
}

.autopilot-stage.is-playing .task-row:nth-child(3) {
  transition-delay: .34s;
}

.autopilot-stage.is-playing .task-row:nth-child(4) {
  transition-delay: .42s;
}

.task-row.is-active {
  color: var(--ink);
  background: #fff;
}

.task-row.is-complete {
  color: var(--ink);
}

.task-check {
  width: 22px;
  height: 22px;
  accent-color: var(--ink);
}

.task-copy {
  min-width: 0;
}

.task-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.task-copy small {
  display: block;
  height: 18px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  opacity: 0;
  transform: translateY(-4px);
  transition: .3s ease;
}

.task-row.is-active .task-copy small {
  opacity: 1;
  transform: none;
}

.task-state {
  color: #8a8b91;
  font-size: 14px;
  white-space: nowrap;
}

.task-row.is-active .task-state {
  color: var(--red);
}

.task-progress {
  position: absolute;
  left: 64px;
  right: 20px;
  bottom: 7px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1e5df;
  opacity: 0;
  transition: opacity .25s ease;
}

.task-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.task-row.is-active .task-progress {
  opacity: 1;
}

.task-row.is-active .task-progress span {
  animation: taskSweep 1.1s cubic-bezier(.4, 0, .2, 1) forwards;
}

.no-input-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  opacity: 0;
  transform: translateY(-5px);
  transition: .45s ease;
}

.autopilot-stage.is-playing .no-input-note {
  opacity: 1;
  transform: none;
  transition-delay: .55s;
}

.no-input-note input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--red);
  pointer-events: none;
}

.result-tray {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: calc(100% + 100px);
  min-height: 128px;
  margin-left: -50px;
  padding: 22px 26px;
  border: 1px solid #f0cdb8;
  border-radius: 22px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 48px rgba(214, 103, 45, .12);
  opacity: 0;
  transform: translateY(26px) scale(.97);
  transition: opacity .6s ease, transform .85s cubic-bezier(.16, 1, .3, 1), box-shadow .8s ease;
  pointer-events: none;
}

.autopilot-stage.is-ready .result-tray {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  box-shadow: 0 24px 54px rgba(214, 103, 45, .19);
}

.autopilot-stage.is-resetting .result-tray {
  opacity: 0;
  transform: translateY(26px) scale(.97);
  transition: none;
}

.result-mark {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.result-mark input {
  width: 30px;
  height: 30px;
}

.result-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.result-copy small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 16px;
}

.result-tray .btn {
  min-width: 136px;
}

@keyframes taskSweep {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.capabilities-title {
  margin: 58px 0 30px;
  text-align: center;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.legacy-capabilities {
  display: none;
}

.capabilities-bento {
  display: grid;
  grid-template-columns: .95fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(280px, auto));
  gap: 16px;
}

.bento-capability {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5dfdd;
  border-radius: 24px;
  background: rgba(247, 243, 242, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.bento-capability:not(.bento-tools) {
  display: grid;
  grid-template-rows: minmax(162px, 1fr) auto;
  padding: 20px 26px 24px;
}

.bento-capability h4 {
  margin: 0;
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.bento-capability p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: -.015em;
}

.bento-visual {
  position: relative;
  min-height: 0;
}

.bento-tools {
  grid-row: 1 / span 2;
  padding: 44px 30px 34px;
  background: #202022;
  border-color: #202022;
  color: #fff;
  box-shadow: 0 18px 42px rgba(28, 28, 30, .11), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.tool-flow {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0 0 0 36px;
}

.tool-flow::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 99px;
  background: #4a4545;
}

.tool-flow::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 2px;
  height: calc(100% - 44px);
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(239, 63, 53, .65);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2.55s cubic-bezier(.35, 0, .2, 1);
}

.capabilities-bento.is-active .tool-flow::after {
  transform: scaleY(1);
}

.tool-row {
  position: relative;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid #3c393a;
  border-radius: 14px;
  background: #29292b;
  color: #bcb7b8;
  box-shadow: 0 9px 22px rgba(0, 0, 0, .14);
  transition: color .24s ease, border-color .24s ease, transform .28s cubic-bezier(.16, 1, .3, 1), background .24s ease;
}

.tool-row::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #797173;
  border-radius: 50%;
  background: #202022;
  transform: translateY(-50%);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.tool-row strong {
  font-size: 16px;
  font-weight: 650;
}

.tool-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
  pointer-events: none;
}

.tool-row.is-current {
  color: #fff;
  border-color: #5a4a4a;
  background: #313033;
}

.tool-row.is-current::before,
.tool-row.is-done::before {
  border-color: #ff786f;
  background: var(--red);
  box-shadow: 0 0 14px rgba(239, 63, 53, .7);
}

.tool-row.is-done {
  color: #f6f3f3;
}

.bento-tools .bento-copy {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
}

.bento-tools h4 {
  font-size: 26px;
}

.bento-tools p {
  color: #c8c1c3;
  font-size: 17px;
}

.request-stack {
  height: 100%;
  display: grid;
  place-items: center;
  padding-top: 4px;
}

.request-sheet {
  position: absolute;
  width: min(235px, 74%);
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid #ded8d6;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(55, 43, 46, .08);
  color: #3b3739;
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px) scale(.96) rotate(-2deg);
  transition: opacity .7s ease, transform 1s cubic-bezier(.16, 1, .3, 1), box-shadow .8s ease;
}

.request-sheet::after {
  content: attr(data-detail);
  display: block;
  margin-top: 6px;
  color: #aaa2a4;
  font-size: 10px;
  font-weight: 500;
}

.request-sheet::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(232, 65, 46, .22);
}

.request-sheet {
  padding-left: 34px;
}

.request-sheet:nth-child(1) {
  top: 3px;
  left: 15%;
  transition-delay: .2s;
}

.request-sheet:nth-child(2) {
  top: 48px;
  left: 21%;
  transition-delay: .72s;
}

.request-sheet:nth-child(3) {
  top: 92px;
  left: 27%;
  transition-delay: 1.24s;
}

.capabilities-bento.is-active .request-sheet {
  opacity: 1;
  transform: none;
  box-shadow: 0 14px 30px rgba(55, 43, 46, .10);
  animation: requestFloat 5.6s ease-in-out infinite;
}

.capabilities-bento.is-active .request-sheet::before {
  animation: notificationDot 2.8s ease-out infinite;
}

.capabilities-bento.is-active .request-sheet:nth-child(1) {
  animation-delay: .2s;
}

.capabilities-bento.is-active .request-sheet:nth-child(2) {
  animation-delay: .72s;
}

.capabilities-bento.is-active .request-sheet:nth-child(3) {
  animation-delay: 1.24s;
}

.capabilities-bento.is-active .request-sheet:nth-child(1)::before {
  animation-delay: .32s;
}

.capabilities-bento.is-active .request-sheet:nth-child(2)::before {
  animation-delay: .9s;
}

.capabilities-bento.is-active .request-sheet:nth-child(3)::before {
  animation-delay: 1.48s;
}

.plan-list {
  width: min(260px, 82%);
  margin: 0 auto;
  padding: 8px 0 0;
  list-style: none;
  counter-reset: plan;
}

.plan-list li {
  counter-increment: plan;
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 43px;
  border: 1px solid #e1dcda;
  border-radius: 9px;
  background: #fff;
  color: #a9a2a4;
  font-size: 13px;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.plan-list li+li {
  margin-top: 7px;
}

.plan-list li::before {
  content: counter(plan);
  position: absolute;
  left: 12px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebe7e6;
  color: #777174;
  font-weight: 800;
}

.plan-list li.is-current {
  color: var(--ink);
  border-color: #f5a49e;
  box-shadow: 0 8px 20px rgba(239, 63, 53, .08);
  transform: translateX(4px);
}

.plan-list li.is-current::before,
.plan-list li.is-done::before {
  background: #ff8279;
  color: #fff;
}

.plan-list li.is-done {
  color: #6c6568;
}

.scan-document {
  position: absolute;
  left: 50%;
  top: 7px;
  width: min(260px, 82%);
  min-height: 132px;
  padding: 26px 24px;
  border: 1px solid #ddd7d5;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(55, 43, 46, .07);
  transform: translateX(-50%);
}

.scan-item {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: center;
  gap: 9px;
  color: #847d80;
  font-size: 13px;
}

.scan-item+.scan-item {
  margin-top: 12px;
}

.scan-item input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--green);
  pointer-events: none;
}

.scan-line {
  position: absolute;
  z-index: 2;
  left: 11%;
  right: 11%;
  top: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(239, 63, 53, .45);
  opacity: 0;
}

.capabilities-bento.is-active .scan-line {
  animation: qualityScan 4.8s cubic-bezier(.4, 0, .2, 1) infinite;
}

.approval-panel {
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(260px, 82%);
  min-height: 136px;
  padding: 22px;
  border: 1px solid #ded8d6;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(55, 43, 46, .08);
  transform: translateX(-50%);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), box-shadow .5s ease;
}

.approval-panel strong {
  display: block;
  text-align: center;
  font-size: 15px;
}

.approval-panel small {
  display: block;
  margin-top: 9px;
  color: #9d9698;
  text-align: center;
  font-size: 12px;
}

.approval-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.approval-actions button {
  min-height: 32px;
  border: 1px solid #ddd7d5;
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.approval-actions .approve {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.capabilities-bento.is-active .approval-panel {
  animation: approvalFloat 5.5s ease-in-out infinite;
}

@keyframes qualityScan {

  0%,
  10% {
    top: 26px;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  62% {
    top: 122px;
    opacity: 1;
  }

  70%,
  100% {
    top: 122px;
    opacity: 0;
  }
}

@keyframes requestFloat {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }
}

@keyframes notificationDot {

  0%,
  52%,
  100% {
    opacity: .42;
    box-shadow: 0 0 0 0 rgba(232, 65, 46, .18);
  }

  12% {
    opacity: 1;
    box-shadow: 0 0 0 9px rgba(232, 65, 46, 0);
  }
}

@keyframes approvalFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 17px 32px rgba(55, 43, 46, .12);
  }
}

.shift-cta {
  margin-top: 28px;
  text-align: center;
}

.shift-cta .btn {
  min-width: 220px;
}

/* Pricing */
.pricing {
  padding: 100px 0;
}

.pricing-head {
  text-align: center;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe7e5, #cbd5ff);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pricing-chip img {
  width: 7px;
  height: 7px;
}

.pricing-head .section-title {
  margin-top: 31px;
}

.billing-toggle {
  width: fit-content;
  margin: 34px 0 32px auto;
  padding: 4px;
  border-radius: 999px;
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(224, 218, 216, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.billing-toggle button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 34px;
  background: transparent;
  cursor: pointer;
  transition: background .22s ease, box-shadow .22s ease, color .22s ease;
}

.billing-toggle button.active {
  background: #fff;
  box-shadow: 0 8px 24px rgba(55, 43, 46, .08);
  font-weight: 700;
}

.billing-toggle button[data-period="yearly"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 12px;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 173, 125, .14);
  color: #168665;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
  opacity: .68;
  transform: scale(.94);
  transition: opacity .22s ease, transform .22s ease, background .22s ease, color .22s ease;
}

.billing-toggle button.active .save-badge {
  background: var(--green);
  color: #fff;
  opacity: 1;
  transform: scale(1);
}

.plans {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  overflow: visible;
}

.plan {
  position: relative;
  z-index: 0;
  min-height: 510px;
  padding: 24px 20px;
  border: 1px solid rgba(229, 223, 221, .82);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: visible;
  transition: transform .34s cubic-bezier(.2, .8, .2, 1), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}

.plan.featured {
  background: var(--ink);
  color: #fff;
  outline: 2px solid #b8c3ff;
}

.popular {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.plan h3 {
  margin: 0;
  font-size: 25px;
}

.plan .audience {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.plan.featured .audience,
.plan.featured .billing {
  color: #b9b4b5;
}

.price {
  margin: 17px 0 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(120, 113, 110, .11);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  vertical-align: middle;
}

.plan.featured .plan-tag {
  background: rgba(255, 255, 255, .15);
  color: #d6d1d2;
}

.billing {
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 13px;
  min-height: 17px;
}

.plan .btn {
  width: 100%;
  min-height: 43px;
}

.plan.featured .btn {
  background: #fff;
  color: var(--ink);
}

.plan hr {
  margin: 15px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.plan.featured hr {
  border-color: #49494b;
}

.best-for {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .06em;
}

.features {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
  font-size: 14px;
}

.features li::before {
  content: "✓";
  margin-right: 11px;
  color: var(--green);
  font-weight: 900;
}

.featured .features li::before {
  color: var(--red);
}

@media (hover:hover) {
  .plan:hover {
    z-index: 20;
    transform: translateY(-9px);
    border-color: rgba(232, 65, 46, .34);
    box-shadow: 0 26px 68px rgba(55, 43, 46, .14);
  }

  .plan:hover .btn {
    transform: translateY(-1px);
  }

  .plan.featured:hover {
    box-shadow: 0 28px 74px rgba(25, 24, 23, .28);
  }
}

.enterprise {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 58px;
  border: 1px solid rgba(229, 52, 43, .24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 116, 101, .30), rgba(255, 116, 101, 0) 36%),
    radial-gradient(circle at 84% 82%, rgba(126, 142, 255, .28), rgba(126, 142, 255, 0) 38%),
    linear-gradient(120deg, #fff0eb 0%, #fffaf8 34%, #f0efff 68%, #ffdcd4 100%);
  background-size: 190% 190%;
  box-shadow: 0 24px 54px rgba(81, 52, 49, .15), inset 0 1px 0 rgba(255, 255, 255, .8);
  animation: enterpriseGlow 6.5s ease-in-out infinite alternate;
}

.enterprise::before {
  content: "";
  position: absolute;
  inset: -45% -18%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 24%, rgba(255, 112, 98, .22) 42%, rgba(126, 142, 255, .24) 58%, transparent 76%);
  transform: translateX(-24%);
  animation: enterpriseSheen 6.8s ease-in-out infinite;
}

.enterprise>* {
  position: relative;
  z-index: 1;
}

.enterprise h3 {
  margin: 0;
  font-size: 24px;
}

.enterprise p {
  margin: 10px 0 0;
  color: var(--muted);
}

.enterprise .btn {
  min-width: 220px;
}

@keyframes enterpriseGlow {
  0% {
    background-position: 0% 40%;
  }

  100% {
    background-position: 100% 60%;
  }
}

@keyframes enterpriseSheen {

  0%,
  14% {
    transform: translateX(-36%);
    opacity: .45;
  }

  60% {
    transform: translateX(34%);
    opacity: 1;
  }

  100% {
    transform: translateX(34%);
    opacity: .45;
  }
}

/* FAQ */
.faq {
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}

.faq .section-title {
  font-size: clamp(36px, 4vw, 52px);
}

.faq-list {
  border-top: 1px solid transparent;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-icon {
  color: var(--red);
  font-size: 20px;
  font-weight: 400;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.faq-item.collapsed .faq-icon {
  transform: rotate(0);
}

.faq-answer {
  max-width: 760px;
  overflow: hidden;
  max-height: 180px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  transition: .28s ease;
}

.faq-item.collapsed .faq-answer {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* CTA and footer */
.closing {
  padding: 0 0 88px;
}

.closing-card {
  min-height: 230px;
  border-radius: 28px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0, 78, 105, .95), rgba(0, 78, 105, .25)), url('assets/embedded/embedded-f6428726044eed3c.jpg');
  background-size: cover;
  background-position: center 52%;
  color: #fff;
  padding: 52px 70px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.closing-card h2 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(35px, 4vw, 53px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.closing-card p {
  margin: 18px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, .78);
}

.closing-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.closing-actions .btn {
  min-width: 170px;
}

.footer {
  min-height: 800px;
  padding: 94px 0 0;
  background-image: linear-gradient(#fff9f8 0%, rgba(255, 249, 248, .96) 35%, rgba(255, 249, 248, .28) 63%, rgba(255, 249, 248, 0) 100%), url('assets/embedded/embedded-4119128c2d940f88.jpg');
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer-brand {
  width: 40%;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  width: 60%;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.footer-brand img {
  width: 250px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand {
  position: relative;
  width: 60%;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
}

.footer-brand>.footer-logo>img {
  width: 30px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand::after {
  content: "ClawExperts.com";
  position: absolute;
  top: 5px;
  left: 42px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-search {
  margin-top: 22px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 46px;
  padding: 4px 4px 4px 16px;
  border: 1px solid #d6cdcf;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
}

.footer-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.footer-search button {
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  min-height: 36px;
  max-height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.tag-list {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 7px 14px;
  border-radius: 999px;
  background: #f0ebec;
  color: var(--muted);
  font-size: 13px;
}

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: .08em;
}

.footer-col a {
  display: block;
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-meta {
  margin-top: 90px;
  color: var(--muted);
  font-size: 13px;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.made-in {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.made-in::before,
.made-in::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(107, 100, 105, .28);
}

.made-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.made-inner img {
  width: 20px;
  height: 19px;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.social-links a {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}

.social-links img {
  width: 16px;
  height: 16px;
}

/* "ClawExperts.com" rộng gấp ~7.75 lần cỡ chữ; chia 8 để luôn vừa khung, chừa ~3% an toàn cho khác biệt font */
.wordmark {
  margin: 120px 0 -40px;
  text-align: center;
  font-size: min(164px, calc((100vw - 56px) / 8));
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.07em;
  color: rgba(255, 255, 255, .67);
  white-space: nowrap;
}

.toast {
  position: fixed;
  z-index: 1100;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 30px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  font-size: 15px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 991px) {

  .footer-right,
  .footer-brand {
    width: 50%;
  }
}

@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .footer-right {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-brand {
    width: 100%;
  }
}

@media (max-width: 1050px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .language-toggle {
    order: 2;
    margin-left: auto;
    margin-right: 0;
  }

  .menu-toggle {
    display: block;
    order: 3;
    margin-left: 8px;
  }

  .nav-pill.mobile-open {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-pill.mobile-open .nav-links {
    order: 4;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 2px;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid #c8c3c3;
  }

  .nav-pill.mobile-open .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .nav-pill.mobile-open .nav-cta {
    display: inline-flex;
    order: 5;
    margin: 10px 0 4px;
    width: 100%;
  }

  .nav-pill.mobile-open .resource-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-pill.mobile-open .resources.open .resource-menu {
    display: block;
  }

  .showcase-grid,
  .how-top,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .agent-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 0 30px;
  }

  .agent-tab {
    padding: 16px 12px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .agent-tab:last-child {
    border-right: 0;
  }

  .agent-tab .tab-details {
    display: none;
  }

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

  .capabilities-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-tools {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .bento-capability:not(.bento-tools) {
    min-height: 280px;
  }

  .footer-top {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .autopilot-stage {
    min-height: 660px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1316px);
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .closing-actions .btn {
    width: 100%;
  }

  .benefits {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    width: fit-content;
  }

  .hero-visual {
    margin-top: 60px;
    padding: 6px;
    border-radius: 17px;
  }

  .logos-inner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .logos-list {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .showcase {
    padding-top: 70px;
  }

  .agent-tabs {
    grid-template-columns: 1fr;
  }

  .agent-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .agent-tab .tab-details {
    display: block;
  }

  .dashboard-frame {
    padding: 5px;
    border-radius: 14px;
    min-height: 180px;
  }

  .social-orb {
    display: none;
  }

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

  .catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shift {
    padding: 78px 0 70px;
  }

  .autopilot-stage {
    width: calc(100vw - 28px);
    min-height: 0;
    margin: 38px 0 0 50%;
    padding: 14px;
    border-radius: 20px;
  }

  .goal-strip {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .goal-mark {
    width: 46px;
    height: 46px;
  }

  .goal-strip small {
    display: none;
  }

  .task-row {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    min-height: 72px;
    padding: 12px 14px;
  }

  .task-state {
    grid-column: 2;
    margin-top: -4px;
  }

  .task-progress {
    left: 51px;
    right: 14px;
  }

  .result-tray {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    margin-left: 0;
    padding: 18px;
  }

  .result-mark {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .result-mark input {
    width: 25px;
    height: 25px;
  }

  .result-copy strong {
    font-size: 19px;
  }

  .result-copy small {
    font-size: 14px;
  }

  .result-tray .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .capabilities-title {
    margin: 64px auto 24px;
    max-width: 330px;
    font-size: 23px;
  }

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

  .bento-tools {
    min-height: 540px;
    padding: 32px 22px 28px;
  }

  .bento-tools .bento-copy {
    left: 26px;
    right: 26px;
    bottom: 28px;
  }

  .bento-capability:not(.bento-tools) {
    min-height: 270px;
    padding: 16px 20px 22px;
  }

  .request-sheet {
    width: min(235px, 78%);
  }

  .pricing {
    padding-top: 70px;
  }

  .billing-toggle {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .billing-toggle button {
    padding-inline: 28px;
  }

  .enterprise {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 26px;
  }

  .enterprise .btn {
    width: 100%;
    min-width: 0;
  }

  .faq {
    padding-top: 65px;
  }

  .faq-grid {
    gap: 30px;
  }

  .closing-card {
    padding: 38px 26px;
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-search {
    width: 100%;
  }

  .footer-meta {
    margin-top: 60px;
  }

  .meta-line {
    flex-direction: column;
  }

  .made-in {
    gap: 10px;
  }

  .made-inner {
    white-space: normal;
    text-align: center;
  }

  .wordmark {
    margin-top: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .goal-strip,
  .task-row,
  .no-input-note,
  .result-tray,
  .autopilot-stage::after {
    transition-duration: .01ms !important;
  }

  .task-row.is-active .task-progress span {
    animation-duration: .01ms !important;
  }

  .request-sheet,
  .tool-row,
  .tool-flow::after {
    transition-duration: .01ms !important;
  }

  .scan-line,
  .approval-panel,
  .request-sheet,
  .request-sheet::before,
  .enterprise,
  .enterprise::before {
    animation: none !important;
  }

  .scan-line {
    top: 122px;
    opacity: 1;
  }
}

/* ClawExperts | AI Agents that get the work done */
.hero {
  padding-bottom: 96px;
}

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

.hero-actions {
  margin-top: 38px;
}

.benefits {
  margin-top: 34px;
}

.hero-visual {
  display: none;
}

.hero-film {
  position: relative;
  min-height: 660px;
  margin-top: 72px;
  border: 1px solid #cbc5c2;
  border-radius: 36px;
  overflow: hidden;
  background: #252322;
  box-shadow: 0 36px 90px rgba(31, 27, 26, .18);
  color: #fff;
  text-align: left;
  isolation: isolate;
}

.hero-film-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-film-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(.75);
  transform: scale(1.04);
  opacity: .38;
}

.hero-film-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(20, 19, 18, .72);
}

.hero-film::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  pointer-events: none;
}

.film-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.film-status,
.film-clock {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.film-status input {
  accent-color: var(--red);
}

.film-clock {
  color: rgba(255, 255, 255, .62);
}

.film-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 72px;
  align-items: center;
  min-height: 500px;
  padding: 54px 64px 68px;
}

.film-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.film-request h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
}

.film-request p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
}

.film-scene-switcher {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.film-scene-switcher button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .62);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.film-scene-switcher button.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.film-work {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.film-task {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .42);
  transition: color .35s ease, transform .35s ease, background .35s ease;
}

.film-task:last-of-type {
  border-bottom: 0;
}

.film-task input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.film-task strong {
  font-size: 16px;
}

.film-task small {
  font-size: 13px;
}

.film-task.is-active {
  color: #fff;
  transform: translateX(5px);
  background: rgba(255, 255, 255, .06);
}

.film-task.is-done {
  color: rgba(255, 255, 255, .82);
}

.film-output {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 17px;
  background: #fff;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px) scale(.97);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.film-output.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.film-output strong {
  display: block;
  font-size: 17px;
}

.film-output span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.film-output button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.showcase {
  position: relative;
  margin: 0;
  border-radius: 0;
  padding: 84px 0 96px;
  background: transparent;
  color: var(--ink);
  overflow: clip;
}

.showcase-sticky {
  position: relative;
}

.showcase .scene-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.showcase .scene-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
}

.showcase .scene-head p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.showcase-side {
  display: flex;
  flex-direction: column;
}

.showcase-side .agent-tabs {
  flex: 0 0 auto;
}

.showcase-grid {
  grid-template-columns: 330px 1fr;
  gap: 30px;
  align-items: stretch;
}

.agent-tabs {
  padding: 0;
}

.agent-tab {
  min-height: 104px;
  border-color: var(--line);
  color: rgba(28, 28, 30, .46);
  transition: color .25s ease, padding .25s ease;
}

.agent-tab strong {
  font-size: 19px;
}

.agent-tab.active {
  color: var(--ink);
  padding-left: 18px;
}

.agent-tab.active strong {
  color: var(--ink);
}

.agent-tab:focus {
  outline: none;
}

.agent-tab:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -4px;
}

.agent-tab.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 44px;
  border-radius: 999px;
  background: var(--red);
}

.agent-tab {
  position: relative;
}

.agent-tab p {
  color: var(--muted);
}

.agent-tab .tab-details p+p {
  display: none;
}

.dashboard-frame {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-color: #ded7d5;
  background: #e7e3e1;
}

.dashboard-frame img {
  min-height: 545px;
  object-fit: cover;
  object-position: center top;
}

.scene-outcome {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(380px, calc(100% - 64px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .2);
  transform: translateY(14px);
  opacity: 0;
  transition: .45s ease;
}

.scene-outcome.visible {
  transform: translateY(0);
  opacity: 1;
}

.scene-outcome small {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scene-outcome strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.scene-outcome span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-cta {
  margin-top: 54px;
}

.film-handoff-clone {
  position: fixed;
  z-index: 45;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border-radius: 36px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 36px 90px rgba(31, 27, 26, .24);
  transform: translate3d(-120vw, -120vh, 0);
  transition: opacity .16s ease;
  will-change: transform, width, height, border-radius, opacity;
}

.film-handoff-clone .hero-film {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.film-handoff-clone .film-bar {
  padding: 22px 28px;
}

.film-handoff-clone .film-body {
  min-height: calc(100% - 78px);
}

.hero-film.is-handoff-source {
  opacity: .08;
}

.showcase.is-handoff-target .dashboard-frame {
  opacity: var(--handoff-target-opacity, 1);
}

@media (min-width: 901px) {
  .showcase.is-scroll-story {
    min-height: 320vh;
    padding: 0;
  }

  .showcase.is-scroll-story .showcase-sticky {
    position: sticky;
    top: 86px;
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    padding: 76px 0 64px;
  }

  .showcase.is-scroll-story .showcase-grid {
    transform: translateY(calc((1 - var(--agent-scroll-progress, 0)) * 18px));
    transition: transform .25s ease;
  }

  .showcase.is-scroll-story .agent-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--tab-progress, 0%);
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    opacity: .9;
  }

  .showcase.is-scroll-story .agent-tab.active::after {
    width: 100%;
  }

  .showcase.is-scroll-story .dashboard-frame {
    transform: scale(calc(.965 + var(--agent-scroll-progress, 0) * .035));
    transition: transform .28s ease, opacity .18s ease;
    transform-origin: center center;
  }
}

.proof-film {
  padding: 120px 0;
}

.proof-stage {
  position: relative;
  min-height: 680px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}

.proof-stage::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 28px;
  pointer-events: none;
}

.proof-core {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 30px;
}

.proof-number {
  display: block;
  font-size: clamp(110px, 16vw, 220px);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.08em;
}

.proof-core h2 {
  margin: 32px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
}

.proof-core p {
  margin: 18px auto 0;
  max-width: 520px;
  color: rgba(255, 255, 255, .74);
}

.proof-card {
  position: absolute;
  z-index: 3;
  width: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 17px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 22px 48px rgba(74, 20, 13, .18);
  opacity: 0;
  transform: translateY(26px) scale(.92);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.proof-stage.playing .proof-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proof-card strong {
  display: block;
  font-size: 16px;
}

.proof-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.proof-card input {
  float: left;
  width: 17px;
  height: 17px;
  margin: 1px 10px 20px 0;
  accent-color: var(--red);
}

.proof-card.one {
  left: 6%;
  top: 14%;
  transition-delay: .08s;
}

.proof-card.two {
  right: 5%;
  top: 18%;
  transition-delay: .22s;
}

.proof-card.three {
  left: 10%;
  bottom: 11%;
  transition-delay: .34s;
}

.proof-card.four {
  right: 8%;
  bottom: 10%;
  transition-delay: .46s;
}

@media (max-width: 900px) {
  .hero-film {
    min-height: auto;
    border-radius: 26px;
  }

  .film-body {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 28px 42px;
  }

  .film-request h2 {
    font-size: clamp(38px, 10vw, 60px);
  }

  .showcase {
    margin-inline: 0;
    border-radius: 0;
  }

  .showcase .scene-head {
    display: block;
  }

  .showcase .scene-head p {
    margin-top: 20px;
  }

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

  .agent-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .agent-tab {
    padding: 16px 10px;
    min-height: 82px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    text-align: center;
  }

  .agent-tab.active {
    padding-left: 10px;
  }

  .agent-tab.active::before {
    left: 25%;
    right: 25%;
    bottom: 0;
    width: auto;
    height: 3px;
  }

  .agent-tab .tab-details {
    display: none;
  }

  .dashboard-frame {
    min-height: 430px;
  }

  .dashboard-frame img {
    min-height: 405px;
  }

  .proof-card {
    width: 210px;
  }
}

@media (max-width: 640px) {
  html[lang="vi"] .hero h1>span {
    display: block;
    margin-top: 5px;
  }

  .hero {
    padding-bottom: 60px;
  }

  .benefits {
    display: none;
  }

  .hero-film {
    margin-top: 50px;
  }

  .film-bar {
    padding: 24px;
  }

  .film-clock {
    display: none;
  }

  .film-body {
    padding: 34px 20px;
  }

  .film-scene-switcher {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .film-task {
    grid-template-columns: 22px 1fr;
  }

  .film-task small {
    display: none;
  }

  .film-output {
    grid-template-columns: 1fr;
  }

  .film-output button {
    width: 100%;
  }

  .showcase {
    padding: 80px 0;
  }

  .showcase.is-scroll-story {
    scroll-margin-top: 100px;
  }

  .showcase .scene-head h2 {
    font-size: 42px;
  }

  .agent-tab strong {
    font-size: 15px;
  }

  .dashboard-frame {
    min-height: 340px;
    padding: 8px;
  }

  .dashboard-frame img {
    min-height: 324px;
  }

  .scene-outcome {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .proof-film {
    padding: 80px 0;
  }

  .proof-stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 56px 24px 28px;
  }

  .proof-stage::after {
    inset: 12px;
    border-radius: 22px;
  }

  .proof-core {
    order: -1;
    padding: 12px 8px 42px;
  }

  .proof-number {
    font-size: 118px;
  }

  .proof-core h2 {
    margin-top: 22px;
    font-size: 38px;
  }

  .proof-core p {
    font-size: 16px;
  }

  .proof-card,
  .proof-card.one,
  .proof-card.two,
  .proof-card.three,
  .proof-card.four {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 6px 0;
    padding: 16px;
  }
}

/* Iteration: more cinematic, less explanatory */
@keyframes filmPan {
  from {
    transform: scale(1.08) translate3d(-1.5%, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(1.5%, -1%, 0);
  }
}

@keyframes taskEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes proofFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--tilt, 0deg));
  }

  50% {
    transform: translateY(-9px) rotate(var(--tilt, 0deg));
  }
}

.hero-film {
  min-height: 620px;
}

.hero-film-media img {
  animation: filmPan 16s ease-in-out infinite alternate;
  opacity: .46;
}

.hero-film-wash {
  background: rgba(18, 17, 16, .64);
}

.film-body {
  position: relative;
  display: block;
  min-height: 530px;
  padding: 0;
}

.film-request {
  position: absolute;
  z-index: 3;
  left: 7%;
  top: 9%;
  width: 310px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.film-request .film-label {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 11px;
}

.film-request h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.film-request>p:last-of-type {
  display: none;
}

.film-work {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 48%;
  width: min(500px, 58%);
  min-height: 176px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
}

.film-agent-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.film-agent-label span {
  color: var(--red);
}

.film-task {
  display: none;
  grid-template-columns: 24px 1fr auto;
  min-height: 70px;
  border: 0;
  border-radius: 14px;
  color: var(--muted);
}

.film-task.is-active {
  display: grid;
  color: var(--ink);
  background: #f4f0ed;
  transform: none;
  animation: taskEnter .4s cubic-bezier(.2, .8, .2, 1) both;
}

.film-task.is-done {
  display: none;
}

.film-task strong {
  font-size: 17px;
}

.film-task small {
  color: var(--red);
  font-weight: 800;
}

.film-output {
  margin-top: 0;
  background: var(--ink);
  color: #fff;
}

.film-output {
  max-height: 0;
  overflow: hidden;
  padding-block: 0;
  border-width: 0;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .2, 1), max-height .55s cubic-bezier(.2, .8, .2, 1), padding .55s ease;
}

.film-output.is-visible {
  max-height: 150px;
  padding: 18px 20px;
  pointer-events: auto;
}

.film-output span {
  color: rgba(255, 255, 255, .62);
}

.film-output button {
  background: #fff;
  color: var(--ink);
}

.film-scene-switcher {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  margin: 0;
  transform: translateX(-50%);
}

.film-scene-switcher button {
  background: rgba(25, 24, 23, .72);
  color: rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
}

.agent-card {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
}

.agent-card-inner {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .35s ease, border-color .35s ease;
}

@media (hover:hover) {
  .agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(39, 31, 29, .14);
  }

  .agent-card:hover .agent-card-inner {
    transform: translateY(-2px);
    border-color: #fff;
    background: rgba(255, 255, 255, .94);
  }

  .agent-card:nth-child(3):hover .agent-card-inner,
  .agent-card:nth-child(4):hover .agent-card-inner {
    background: rgba(255, 255, 255, .72);
  }
}

.scene-intro {
  width: min(360px, 100%);
}

.showcase-side .showcase-cta {
  margin: 26px 0 0;
  text-align: left;
}

.showcase-side .showcase-cta .btn {
  min-width: 164px;
  min-height: 44px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(229, 52, 43, .28);
}

.showcase-side .showcase-cta .btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.showcase-side .showcase-cta .fineprint {
  display: block;
  max-width: 260px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .01em;
}

@media (max-width: 900px) {
  .showcase-side .showcase-cta {
    margin-top: 24px;
    text-align: center;
  }

  .showcase-side .showcase-cta .btn {
    width: 100%;
  }

  .showcase-side .showcase-cta .fineprint {
    max-width: none;
  }
}

.proof-stage {
  min-height: 760px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.proof-stage::after {
  display: none;
}

.proof-card {
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(61, 48, 43, .10);
}

.proof-number {
  color: var(--red);
}

.proof-core {
  max-width: min(610px, 48vw);
}

.proof-core p {
  color: var(--muted);
}

.proof-card {
  z-index: 5;
  width: clamp(188px, 17vw, 230px);
}

.proof-card.one {
  left: clamp(24px, 3vw, 52px);
  top: auto;
  bottom: 8%;
}

.proof-card.two {
  left: clamp(24px, 3vw, 52px);
  right: auto;
  top: 43%;
}

.proof-card.three {
  left: auto;
  right: clamp(24px, 3vw, 52px);
  top: 43%;
  bottom: auto;
}

.proof-card.four {
  display: none;
}

.proof-photo {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(61, 48, 43, .18);
  opacity: 0;
  transform: translateY(28px) scale(.94) rotate(var(--tilt, 0deg));
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.proof-stage.playing .proof-photo {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(var(--tilt, 0deg));
  animation: proofFloat 7s ease-in-out infinite 1s;
}

.proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.proof-photo.founder {
  --tilt: -3deg;
  left: 4%;
  top: 6%;
  width: 190px;
  height: 235px;
}

.proof-photo.operator {
  --tilt: 2.5deg;
  right: 4%;
  top: 5%;
  width: 190px;
  height: 235px;
  animation-delay: 1.6s;
}

.proof-photo.phone {
  --tilt: -2deg;
  right: 4%;
  bottom: 6%;
  width: 200px;
  height: 240px;
  animation-delay: 2.2s;
}

.expert-stories {
  margin: 40px 18px 0;
  overflow: hidden;
  border-radius: 46px;
  padding: 112px 0 92px;
  background: #252423;
  color: #fff;
}

.expert-stories-head {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}

.expert-stories-head .eyebrow {
  color: #f06a5f;
}

.expert-stories-head h2 {
  margin: 18px 0 22px;
  font-family: inherit;
  font-size: 64px;
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

.expert-stories-head>p:last-child {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .58);
  font-size: 18px;
  line-height: 1.55;
}

.expert-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - 1240px) / 2)) 28px;
  scroll-padding-left: max(24px, calc((100vw - 1240px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.expert-track::-webkit-scrollbar {
  display: none;
}

.expert-story {
  position: relative;
  flex: 0 0 min(690px, calc(100vw - 86px));
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  padding: 38px 40px;
  scroll-snap-align: start;
  opacity: .42;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, background .35s ease;
}

.expert-stories.in-view .expert-story {
  opacity: 1;
  transform: translateY(0);
}

.expert-stories.in-view .expert-story:nth-child(2) {
  transition-delay: .12s;
}

.expert-stories.in-view .expert-story:nth-child(3) {
  transition-delay: .24s;
}

.expert-story:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .035);
}

.expert-domain {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expert-domain::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef6257;
  box-shadow: 0 0 0 5px rgba(239, 98, 87, .13);
}

.expert-story blockquote {
  max-width: 470px;
  margin: 48px 0 122px;
  font-family: inherit;
  /* nhẹ hơn và giãn dòng rộng hơn: tiếng Việt có dấu nên 1.24 bị chạm chữ */
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.01em;
}

.expert-author {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.expert-author-copy strong {
  display: block;
  font-size: 16px;
}

.expert-author-copy span {
  display: block;
  max-width: 250px;
  margin-top: 5px;
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
  line-height: 1.35;
}

.expert-author img {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .4);
  object-fit: cover;
  filter: grayscale(1);
}

.expert-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  padding: 0 24px;
}

.expert-controls button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.expert-controls button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.expert-progress {
  min-width: 54px;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  text-align: center;
}

.expert-progress.is-updating {
  animation: expertProgressTick .34s cubic-bezier(.22, 1, .36, 1);
}

@keyframes expertProgressTick {
  0% {
    opacity: .2;
    transform: translateY(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .film-request {
    left: 4%;
    width: 280px;
  }

  .film-work {
    width: min(500px, 68%);
  }

  .proof-photo.founder {
    left: 3%;
    width: 150px;
    height: 190px;
  }

  .proof-photo.operator {
    right: 3%;
    width: 150px;
    height: 190px;
  }

  .proof-photo.phone {
    right: 3%;
    width: 155px;
    height: 195px;
  }

  .proof-core {
    max-width: 48vw;
  }

  .proof-card {
    width: 188px;
  }

  .proof-card.one {
    left: 3%;
  }

  .proof-card.two {
    left: 3%;
  }

  .proof-card.three {
    right: 3%;
  }

  .expert-story {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  .hero-film {
    min-height: 650px;
  }

  .film-body {
    min-height: 570px;
  }

  .film-request {
    left: 20px;
    right: 20px;
    top: 28px;
    width: auto;
  }

  .film-request h2 {
    font-size: 18px;
  }

  .film-work {
    top: 51%;
    width: calc(100% - 40px);
    min-height: 165px;
    padding: 18px;
  }

  .film-task {
    grid-template-columns: 22px 1fr;
  }

  .film-task strong {
    font-size: 17px;
  }

  .film-output {
    grid-template-columns: 1fr;
  }

  .film-scene-switcher {
    bottom: 22px;
    width: calc(100% - 40px);
    justify-content: center;
    overflow: visible;
  }

  .proof-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 48px 22px 28px;
  }

  .proof-core {
    order: 0;
    max-width: 100%;
    padding: 0 0 34px;
  }

  .proof-photo,
  .proof-photo.founder,
  .proof-photo.operator,
  .proof-photo.phone {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: 190px;
    margin: 7px 0;
    transform: translateY(20px) scale(.97);
  }

  .proof-photo.operator,
  .proof-photo.phone {
    display: none;
  }

  .proof-card,
  .proof-card.one,
  .proof-card.two,
  .proof-card.three,
  .proof-card.four {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    margin: 7px 0;
  }

  .expert-stories {
    margin-inline: 8px;
    border-radius: 30px;
    padding: 76px 0 64px;
  }

  .expert-stories-head {
    margin-bottom: 38px;
  }

  .expert-stories-head h2 {
    font-size: 42px;
  }

  .expert-stories-head>p:last-child {
    font-size: 16px;
  }

  .expert-track {
    gap: 12px;
    padding: 0 16px 20px;
    scroll-padding-left: 16px;
  }

  .expert-story {
    flex-basis: calc(100vw - 48px);
    min-height: 510px;
    padding: 28px 24px;
  }

  .expert-story blockquote {
    margin: 34px 0 166px;
    font-size: 18px;
    line-height: 1.5;
  }

  .expert-author {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .expert-author img {
    width: 126px;
    height: 126px;
  }

  .expert-author-copy span {
    max-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-film-media img,
  .proof-photo {
    animation: none !important;
  }

  .film-task,
  .film-output,
  .scene-outcome,
  .proof-card,
  .proof-photo,
  .expert-story {
    transition: none !important;
  }
}

/* Hero: lifted from the "How an agent works" tool-flow demo. */
.hero-film {
  min-height: 610px;
  background: #202022;
}

.hero-film-media {
  display: none;
}

.hero-film-wash {
  background: radial-gradient(circle at 74% 28%, rgba(229, 52, 43, .16), transparent 31%), #202022;
}

.film-bar {
  position: relative;
  z-index: 2;
  padding: 28px 34px;
}

.film-body {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(420px, 1.06fr);
  gap: clamp(38px, 7vw, 112px);
  min-height: 520px;
  padding: 58px clamp(32px, 7vw, 110px) 62px;
}

.film-request {
  position: relative;
  inset: auto;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.film-request .film-label {
  color: #ff8a80;
}

.film-request h2 {
  max-width: 360px;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
}

.film-work {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 25px 26px 24px;
  border-color: #3c393a;
  border-radius: 20px;
  background: #29292b;
  transform: none;
  box-shadow: 0 24px 52px rgba(0, 0, 0, .28);
}

.film-agent-label {
  margin-bottom: 20px;
}

.film-tool-flow {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 35px;
}

.film-tool-flow::before,
.film-tool-flow::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 2px;
  height: calc(100% - 44px);
  border-radius: 999px;
}

.film-tool-flow::before {
  background: #4a4545;
}

.film-tool-flow::after {
  background: var(--red);
  box-shadow: 0 0 16px rgba(239, 63, 53, .65);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 3.25s cubic-bezier(.35, 0, .2, 1);
}

.hero-film.is-playing .film-tool-flow::after {
  transform: scaleY(1);
}

.film-task {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid #3c393a;
  border-radius: 13px;
  background: #29292b;
  color: #bcb7b8;
  box-shadow: 0 9px 22px rgba(0, 0, 0, .14);
  transform: none;
  opacity: 1;
}

.film-task::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #797173;
  border-radius: 50%;
  background: #202022;
  transform: translateY(-50%);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.film-task strong {
  align-self: center;
  font-size: 16px;
  font-weight: 650;
}

.film-task small {
  align-self: center;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

.film-task input {
  display: none;
}

.film-task.is-active {
  display: grid;
  color: #fff;
  border-color: #5a4a4a;
  background: #313033;
  transform: none;
  animation: none;
}

.film-task.is-active::before,
.film-task.is-done::before {
  border-color: #ff786f;
  background: var(--red);
  box-shadow: 0 0 14px rgba(239, 63, 53, .7);
}

.film-task.is-done {
  display: grid;
  color: #f6f3f3;
}

.film-output {
  margin: 14px 0 0 35px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: #fff;
  color: var(--ink);
}

.film-output.is-visible {
  padding: 15px 18px;
}

@media (max-width: 900px) {
  .hero-film {
    min-height: 690px;
  }

  .film-body {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 34px 54px;
  }

  .film-request h2 {
    max-width: 550px;
  }
}

@media (max-width: 640px) {
  .hero-film {
    min-height: 670px;
  }

  .film-bar {
    padding: 24px;
  }

  .film-body {
    min-height: 0;
    padding: 36px 20px 42px;
  }

  .film-work {
    padding: 20px 18px;
  }

  .film-tool-flow {
    padding-left: 30px;
  }

  .film-tool-flow::before,
  .film-tool-flow::after {
    left: 7px;
  }

  .film-task {
    min-height: 54px;
    padding: 0 13px;
  }

  .film-task::before {
    left: -30px;
    width: 13px;
    height: 13px;
  }

  .film-output {
    margin-left: 30px;
  }
}

/* Exact sales-agent conversation demo supplied from the source screen. */
.hero-film {
  min-height: 590px;
  background: #fff9f9;
  color: var(--ink);
}

.hero-sales-demo {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 590px;
  overflow: hidden;
  container-type: inline-size;
  border-radius: inherit;
  background: linear-gradient(rgba(40, 20, 24, .022) 1px, transparent 1px) 0 0 / 34px 34px, linear-gradient(90deg, rgba(40, 20, 24, .022) 1px, transparent 1px) 0 0 / 34px 34px, radial-gradient(130% 100% at 50% -12%, rgba(229, 52, 43, .10), #fff9f9 58%);
}

.hero-film::after {
  border-color: rgba(40, 20, 24, .07);
}

.hero-sales-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex: 0 0 auto;
  width: 800px;
  height: 500px;
  transform: translate(-50%, -50%) scale(.94);
  transform-origin: center;
}

.hero-sales-chat {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: 500px;
  overflow: hidden;
}

.hero-sales-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  width: 450px;
  padding: 14px 4px;
  overflow: hidden;
}

.sales-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 100%;
  opacity: 0;
}

.sales-msg>div {
  max-width: 82%;
  padding: 12px 16px;
  font-size: 17px;
  line-height: 1.5;
}

.sales-avatar {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.sales-avatar.customer {
  border-radius: 50%;
  background: #f5eef0;
  color: #6b6469;
}

.sales-avatar.agent {
  border-radius: 9px;
  background: rgba(229, 52, 43, .10);
  color: var(--red);
  font-size: 18px;
}

.sales-msg-customer {
  align-self: flex-start;
}

.sales-msg-customer>div {
  border: .5px solid rgba(40, 20, 24, .13);
  border-radius: 5px 16px 16px;
  background: rgba(255, 255, 255, .66);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.sales-msg-agent {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.sales-msg-agent>div {
  border-radius: 16px 5px 16px 16px;
  background: var(--red);
  color: #fff;
}

.sales-order {
  align-self: flex-end;
  width: 100%;
  max-width: 94%;
  padding: 12px 14px;
  border: .5px solid rgba(63, 155, 99, .32);
  border-radius: 14px;
  background: rgba(63, 155, 99, .13);
  opacity: 0;
}

.sales-order-head,
.sales-product,
.sales-total,
.sales-notice {
  display: flex;
  align-items: center;
}

.sales-order-head {
  gap: 8px;
  margin-bottom: 10px;
}

.sales-check,
.sales-step>span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #3f9b63;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.sales-order-head div {
  flex: 1;
  min-width: 0;
}

.sales-order strong,
.sales-product strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.sales-order small,
.sales-product small {
  display: block;
  margin-top: 1px;
  color: #a59ca1;
  font-size: 12.5px;
}

.sales-order-head b {
  height: 20px;
  padding: 0 9px;
  border-radius: 999px;
  background: #fff;
  color: #3f9b63;
  font-size: 12.5px;
  line-height: 20px;
}

.sales-product {
  gap: 10px;
  padding: 8px 0;
  border-top: .5px solid rgba(63, 155, 99, .20);
}

.sales-product-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #a59ca1;
  font-size: 20px;
}

.sales-product div {
  flex: 1;
  min-width: 0;
}

.sales-product b {
  font-size: 15px;
}

.sales-total {
  justify-content: space-between;
  padding-top: 8px;
  border-top: .5px solid rgba(63, 155, 99, .20);
  color: #6b6469;
  font-size: 14px;
}

.sales-total strong {
  font-size: 16px;
}

.sales-notice {
  gap: 6px;
  margin-top: 8px;
  color: #6b6469;
  font-size: 12.5px;
}

.sales-notice::first-letter {
  color: #3f9b63;
}

.sales-runner {
  position: absolute;
  top: 24px;
  left: 520px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 288px;
  padding: 16px 18px;
  border: .5px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  background: rgba(255, 255, 255, .80);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .6);
  opacity: 0;
}

.sales-runner-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sales-runner-title>span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: rgba(229, 52, 43, .10);
  color: var(--red);
  font-size: 18px;
}

.sales-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sales-step {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6b6469;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
}

.sales-step>span {
  width: 18px;
  height: 18px;
  background: rgba(63, 155, 99, .13);
  color: #3f9b63;
  font-size: 13px;
}

.sales-handoff {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  padding: 9px 11px;
  border-radius: 11px;
  background: rgba(63, 155, 99, .13);
  color: #3f9b63;
  font-size: 16px;
  opacity: 0;
}

.sales-handoff span {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}

.sales-connector,
.sales-connector-dot {
  position: absolute;
  right: 100%;
  background: var(--red);
  opacity: 0;
}

.sales-connector {
  top: 335px;
  width: 30px;
  border-top: 1.5px dashed var(--red);
}

.sales-connector-dot {
  top: 332px;
  right: calc(100% + 28px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.hero-sales-demo.is-running .sales-msg,
.hero-sales-demo.is-running .sales-order,
.hero-sales-demo.is-running .sales-runner,
.hero-sales-demo.is-running .sales-step,
.hero-sales-demo.is-running .sales-handoff,
.hero-sales-demo.is-running .sales-connector,
.hero-sales-demo.is-running .sales-connector-dot {
  animation: salesDemoEnter .42s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-sales-demo.is-running .sales-msg-one {
  animation-delay: .10s;
}

.hero-sales-demo.is-running .sales-runner {
  animation-delay: .28s;
}

.hero-sales-demo.is-running .sales-msg-two {
  animation-delay: .68s;
}

.hero-sales-demo.is-running .sales-step:nth-child(1) {
  animation-delay: .74s;
}

.hero-sales-demo.is-running .sales-msg-three {
  animation-delay: 1.22s;
}

.hero-sales-demo.is-running .sales-step:nth-child(2) {
  animation-delay: 1.28s;
}

.hero-sales-demo.is-running .sales-order {
  animation: salesOrderPop .5s cubic-bezier(.34, 1.56, .64, 1) 1.78s both;
}

.hero-sales-demo.is-running .sales-step:nth-child(3) {
  animation-delay: 1.82s;
}

.hero-sales-demo.is-running .sales-step:nth-child(4) {
  animation-delay: 2.36s;
}

.hero-sales-demo.is-running .sales-step:nth-child(5) {
  animation-delay: 2.90s;
}

.hero-sales-demo.is-running .sales-handoff {
  animation-delay: 3.45s;
}

.hero-sales-demo.is-running .sales-connector {
  animation-delay: 1.72s;
}

.hero-sales-demo.is-running .sales-connector-dot {
  animation-delay: 1.78s;
}

@keyframes salesDemoEnter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes salesOrderPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* The Sales tab becomes the direct continuation of the hero conversation. */
.dashboard-frame {
  isolation: isolate;
}

.showcase-sales-demo {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility 0s linear .32s;
}

.showcase-sales-demo .hero-sales-canvas {
  transform: translate(-50%, -50%) scale(.82);
}

.dashboard-frame[data-agent="sales"] #agentImage {
  opacity: 0 !important;
  pointer-events: none;
}

.dashboard-frame[data-agent="sales"] .showcase-sales-demo {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.dashboard-frame[data-agent="sales"] .scene-outcome {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .showcase-sales-demo .hero-sales-canvas {
    transform: translate(-50%, -50%) scale(.68);
  }
}

@media (max-width: 640px) {
  .showcase-sales-demo .hero-sales-canvas {
    transform: translate(-50%, -50%) scale(.40);
  }
}

@media (max-width: 900px) {

  .hero-film,
  .hero-sales-demo {
    min-height: 500px;
  }

  .hero-sales-canvas {
    transform: translate(-50%, -50%) scale(.74);
  }
}

@media (max-width: 640px) {

  .hero-film,
  .hero-sales-demo {
    min-height: 390px;
  }

  .hero-sales-canvas {
    transform: translate(-50%, -50%) scale(.40);
  }
}

@media (max-width: 380px) {

  .hero-sales-canvas,
  .showcase-sales-demo .hero-sales-canvas {
    transform: translate(-50%, -50%) scale(.35);
  }
}

@media (max-width: 340px) {

  .hero-sales-canvas,
  .showcase-sales-demo .hero-sales-canvas {
    transform: translate(-50%, -50%) scale(.31);
  }
}

@media (prefers-reduced-motion: reduce) {

  .sales-msg,
  .sales-order,
  .sales-runner,
  .sales-step,
  .sales-handoff,
  .sales-connector,
  .sales-connector-dot {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* SEO and Creative use the same request-to-result motion language as Sales. */
.agent-live-demo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(rgba(40, 20, 24, .022) 1px, transparent 1px) 0 0 / 34px 34px, linear-gradient(90deg, rgba(40, 20, 24, .022) 1px, transparent 1px) 0 0 / 34px 34px, radial-gradient(130% 100% at 50% -12%, rgba(229, 52, 43, .10), #fff9f9 58%);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .3s;
}

.seo-bundled-demo {
  background: #fff9f8;
}

.seo-bundled-demo iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff9f8;
}

.dashboard-frame[data-agent="seo"] .seo-agent-demo,
.dashboard-frame[data-agent="creative"] .creative-agent-demo {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.dashboard-frame[data-agent="seo"] #agentImage,
.dashboard-frame[data-agent="creative"] #agentImage,
.dashboard-frame[data-agent="seo"] .scene-outcome,
.dashboard-frame[data-agent="creative"] .scene-outcome {
  opacity: 0 !important;
  pointer-events: none;
}

.agent-demo-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 800px;
  height: 500px;
  transform: translate(-50%, -50%) scale(.82);
  transform-origin: center;
}

.agent-demo-workspace {
  position: relative;
  width: 500px;
  height: 100%;
  padding: 22px 18px 18px 8px;
}

.agent-demo-runner {
  position: absolute;
  top: 24px;
  left: 520px;
  z-index: 5;
  width: 288px;
  padding: 16px 18px;
  border: .5px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .6);
  opacity: 0;
}

.agent-demo-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 18px;
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.agent-demo-mark {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: rgba(229, 52, 43, .10);
  color: var(--red);
  font-size: 17px;
}

.agent-demo-steps {
  display: grid;
  gap: 18px;
}

.agent-demo-step {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6b6469;
  font-size: 15px;
  font-weight: 550;
  opacity: 0;
}

.agent-demo-step span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(63, 155, 99, .13);
  color: #3f9b63;
  font-size: 13px;
  font-weight: 800;
}

.agent-demo-finish {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(63, 155, 99, .13);
  color: #3f9b63;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
}

.demo-surface {
  border: .5px solid rgba(40, 20, 24, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 8px 26px rgba(43, 27, 31, .07);
  opacity: 0;
}

.demo-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.demo-muted {
  color: #81787d;
  font-size: 13px;
  line-height: 1.45;
}

.seo-brief {
  width: 418px;
  padding: 17px 18px;
}

.seo-brief strong {
  display: block;
  margin-top: 7px;
  font-size: 17px;
}

.seo-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.seo-brief-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f4efef;
  color: #6b6469;
  font-size: 12px;
  font-weight: 700;
}

.seo-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 432px;
  margin-top: 11px;
}

.seo-insights article {
  padding: 12px;
}

.seo-insights strong {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.seo-document {
  position: absolute;
  left: 42px;
  bottom: 22px;
  width: 390px;
  padding: 18px;
  transform-origin: 50% 100%;
}

.seo-document-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid #eee6e5;
}

.seo-document-head strong {
  font-size: 17px;
}

.seo-document-head span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(63, 155, 99, .13);
  color: #3f9b63;
  font-size: 11px;
  font-weight: 850;
}

.seo-lines {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.seo-lines i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #eee8e7;
}

.seo-lines i:nth-child(1) {
  width: 92%;
  background: #d9d0d0;
}

.seo-lines i:nth-child(2) {
  width: 100%;
}

.seo-lines i:nth-child(3) {
  width: 78%;
}

.creative-chat {
  width: 418px;
  padding: 16px 18px;
}

.creative-chat strong {
  display: block;
  font-size: 15px;
}

.creative-answer {
  width: 386px;
  margin: 10px 0 0 40px;
  padding: 14px 16px;
  border-radius: 16px 5px 16px 16px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  opacity: 0;
}

.creative-pack {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 448px;
  padding: 15px;
}

.creative-pack-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.creative-pack-head strong {
  font-size: 16px;
}

.creative-pack-head span {
  color: #3f9b63;
  font-size: 12px;
  font-weight: 850;
}

.creative-assets {
  display: grid;
  grid-template-columns: 1.25fr .82fr .82fr;
  gap: 8px;
  height: 176px;
  margin-top: 12px;
}

.creative-asset {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #ff9e8d, #ffe3d8 58%, #656fb0);
  opacity: 0;
  transform: translateY(10px) scale(.95);
}

.creative-asset::before {
  content: "LUMA";
  position: absolute;
  left: 10px;
  top: 9px;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.creative-asset::after {
  content: attr(data-format);
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.creative-asset.tall {
  grid-row: span 2;
}

.creative-asset.wide {
  grid-column: span 2;
  background: linear-gradient(115deg, #4f5c98, #ff9e8d 52%, #ffe9df);
}

.agent-live-demo.is-running .agent-demo-runner,
.agent-live-demo.is-running .demo-surface,
.agent-live-demo.is-running .creative-answer,
.agent-live-demo.is-running .agent-demo-step,
.agent-live-demo.is-running .agent-demo-finish {
  animation: salesDemoEnter .45s cubic-bezier(.22, 1, .36, 1) both;
}

.agent-live-demo.is-running .agent-demo-runner {
  animation-delay: .2s;
}

.agent-live-demo.is-running .demo-sequence-1 {
  animation-delay: .1s;
}

.agent-live-demo.is-running .demo-sequence-2 {
  animation-delay: .65s;
}

.agent-live-demo.is-running .demo-sequence-3 {
  animation: salesOrderPop .52s cubic-bezier(.34, 1.56, .64, 1) 1.7s both;
}

.agent-live-demo.is-running .agent-demo-step:nth-child(1) {
  animation-delay: .62s;
}

.agent-live-demo.is-running .agent-demo-step:nth-child(2) {
  animation-delay: 1.12s;
}

.agent-live-demo.is-running .agent-demo-step:nth-child(3) {
  animation-delay: 1.62s;
}

.agent-live-demo.is-running .agent-demo-step:nth-child(4) {
  animation-delay: 2.12s;
}

.agent-live-demo.is-running .agent-demo-finish {
  animation-delay: 2.75s;
}

.agent-live-demo.is-running .creative-asset {
  animation: salesOrderPop .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

.agent-live-demo.is-running .creative-asset:nth-child(1) {
  animation-delay: 1.62s;
}

.agent-live-demo.is-running .creative-asset:nth-child(2) {
  animation-delay: 1.82s;
}

.agent-live-demo.is-running .creative-asset:nth-child(3) {
  animation-delay: 2.02s;
}

.agent-live-demo.is-running .creative-asset:nth-child(4) {
  animation-delay: 2.22s;
}

.agent-live-demo:not(.is-running) .agent-demo-runner,
.agent-live-demo:not(.is-running) .demo-surface,
.agent-live-demo:not(.is-running) .creative-answer,
.agent-live-demo:not(.is-running) .agent-demo-step,
.agent-live-demo:not(.is-running) .agent-demo-finish,
.agent-live-demo:not(.is-running) .creative-asset {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .agent-demo-canvas {
    transform: translate(-50%, -50%) scale(.68);
  }
}

@media (max-width: 640px) {
  .agent-demo-canvas {
    transform: translate(-50%, -50%) scale(.42);
  }
}

@media (prefers-reduced-motion: reduce) {

  .agent-demo-runner,
  .demo-surface,
  .creative-answer,
  .agent-demo-step,
  .agent-demo-finish,
  .creative-asset {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Trusted proof now follows the agent showcase, preserving the hero handoff. */
.showcase+.logos {
  padding: 28px 0 48px;
  border: 0;
}

.showcase+.logos .logos-inner {
  min-height: 86px;
  padding: 20px 28px;
  border: 1px solid #e7dfdc;
  border-radius: 20px;
  background: rgba(255, 255, 255, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

/* AI only vs expert only vs expert-built Agent */
.comparison-stage {
  position: relative;
  width: min(1320px, calc(100vw - 48px));
  margin: 52px 0 0 50%;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #ded7d4;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(247, 242, 240, .78));
  box-shadow: 0 30px 72px rgba(61, 43, 45, .08), inset 0 1px 0 #fff;
  transform: translateX(-50%);
}

.comparison-stage::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 103, 86, .18);
  filter: blur(72px);
  opacity: 0;
  transform: scale(.55);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(.16, 1, .3, 1);
}

.comparison-stage.is-playing::before {
  opacity: 1;
  transform: scale(1);
}

.comparison-goal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid #e5ddda;
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  opacity: 0;
  transform: translateY(-12px);
  transition: .65s cubic-bezier(.16, 1, .3, 1);
}

.comparison-stage.is-playing .comparison-goal {
  opacity: 1;
  transform: none;
}

.comparison-goal span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-goal strong {
  font-size: 18px;
  text-align: right;
}

.comparison-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.comparison-lane {
  min-width: 0;
  padding: 24px;
  border: 1px solid #e6dfdc;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .75s cubic-bezier(.16, 1, .3, 1), border-color .4s ease, box-shadow .4s ease;
}

.comparison-stage.is-playing .comparison-lane {
  opacity: 1;
  transform: none;
}

.comparison-stage.is-playing .comparison-lane:nth-child(1) {
  transition-delay: .16s;
}

.comparison-stage.is-playing .comparison-lane:nth-child(2) {
  transition-delay: .3s;
}

.comparison-stage.is-playing .comparison-lane:nth-child(3) {
  transition-delay: .44s;
}

.comparison-lane.featured {
  border-color: #ff8b7d;
  background: linear-gradient(145deg, #fff, #fff2ed);
  box-shadow: 0 18px 46px rgba(255, 61, 52, .13);
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #efebea;
  color: #696063;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-lane.featured .comparison-label {
  background: var(--red);
  color: #fff;
}

.comparison-lane h3 {
  min-height: 52px;
  margin: 18px 0 22px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.comparison-flow {
  display: grid;
  gap: 10px;
}

.comparison-step {
  position: relative;
  overflow: hidden;
  padding: 13px 14px 13px 36px;
  border: 1px solid #e8e2df;
  border-radius: 12px;
  background: #fff;
  color: #686164;
  font-size: 14px;
  font-weight: 700;
}

.comparison-step::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #b8b0ad;
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #91898b;
}

.comparison-lane.featured .comparison-step::before {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 2px #fff;
}

.comparison-lane.featured .comparison-step::after {
  background: var(--red);
}

.comparison-stage.is-playing .comparison-lane.ai-only .comparison-step::after {
  animation: compareSweep 1.1s .7s forwards;
}

.comparison-stage.is-playing .comparison-lane.expert-only .comparison-step:nth-child(1)::after {
  animation: compareSweep 2.6s .9s forwards;
}

.comparison-stage.is-playing .comparison-lane.expert-only .comparison-step:nth-child(2)::after {
  animation: compareHalf 3.4s 1.2s forwards;
}

.comparison-stage.is-playing .comparison-lane.featured .comparison-step:nth-child(1)::after {
  animation: compareSweep .8s .9s forwards;
}

.comparison-stage.is-playing .comparison-lane.featured .comparison-step:nth-child(2)::after {
  animation: compareSweep .8s 1.55s forwards;
}

.comparison-stage.is-playing .comparison-lane.featured .comparison-step:nth-child(3)::after {
  animation: compareSweep .8s 2.2s forwards;
}

.comparison-outcome {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f3efee;
}

.comparison-outcome strong {
  display: block;
  font-size: 16px;
}

.comparison-outcome small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.comparison-lane.featured .comparison-outcome {
  background: var(--ink);
  color: #fff;
  transform: scale(.96);
  transition: transform .65s 2.8s cubic-bezier(.16, 1, .3, 1), box-shadow .65s 2.8s ease;
}

.comparison-lane.featured .comparison-outcome small {
  color: #d9d1d3;
}

.comparison-stage.is-playing .comparison-lane.featured .comparison-outcome {
  transform: none;
  box-shadow: 0 14px 32px rgba(32, 25, 27, .22);
}

.comparison-verdict {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 20px 22px;
  border-radius: 17px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: .7s 3.05s cubic-bezier(.16, 1, .3, 1);
}

.comparison-stage.is-playing .comparison-verdict {
  opacity: 1;
  transform: none;
}

.comparison-verdict strong {
  font-size: 17px;
}

.comparison-verdict span {
  color: #c9c0c3;
  font-size: 14px;
  text-align: right;
}

@keyframes compareSweep {
  to {
    width: 100%;
  }
}

@keyframes compareHalf {
  to {
    width: 56%;
  }
}

/* Figma-matched resource reclaim tooltip */
.resource-policy-item {
  position: relative;
  z-index: 30;
}

.resource-policy-trigger {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: help;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.resource-policy-trigger:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 3px;
}

.resource-policy-tooltip {
  position: absolute;
  z-index: 100;
  left: -18px;
  bottom: calc(100% + 14px);
  width: 360px;
  padding: 18px;
  border: .75px solid #d1cccf;
  border-radius: 16px;
  background: #fffbfb;
  box-shadow: 0 8px 11px rgba(0, 0, 0, .1);
  color: #171316;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(.98);
  transform-origin: 36px 100%;
  transition: opacity .2s ease, visibility .2s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
}

.resource-policy-item:hover .resource-policy-tooltip,
.resource-policy-item:focus-within .resource-policy-tooltip,
.resource-policy-item.is-open .resource-policy-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.resource-policy-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 21px;
}

.resource-policy-title img,
.resource-policy-step img,
.resource-policy-upgrade img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.resource-policy-step {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.resource-policy-step+.resource-policy-step {
  margin-top: 14px;
}

.resource-policy-step strong,
.resource-policy-upgrade strong {
  display: block;
  font-size: 15px;
  line-height: 18px;
}

.resource-policy-step p {
  margin: 4px 0 0;
  color: #666164;
  font-size: 14px;
  line-height: 17px;
}

.resource-policy-upgrade {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: .75px solid #bdb5ba;
  border-radius: 12px;
  background: #fbf8f9;
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-lane h3 {
    min-height: 0;
  }

  .comparison-verdict {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-verdict span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .showcase+.logos {
    padding: 20px 0 34px;
  }

  .showcase+.logos .logos-inner {
    padding: 20px;
  }

  .comparison-stage {
    width: calc(100vw - 24px);
    margin-top: 36px;
    padding: 12px;
    border-radius: 22px;
  }

  .comparison-goal {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
  }

  .comparison-goal strong {
    text-align: left;
  }

  .comparison-lane {
    padding: 19px;
  }

  .resource-policy-tooltip {
    left: -30px;
    width: min(324px, calc(100vw - 56px));
  }
}

/* Keep the mobile footer copy readable while preserving the landscape texture. */
@media (max-width: 720px) {
  .footer {
    position: relative;
    isolation: isolate;
  }

  .footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 249, 248, .99) 0%, rgba(255, 249, 248, .97) 48%, rgba(255, 249, 248, .93) 72%, rgba(255, 249, 248, .86) 100%);
    pointer-events: none;
  }

  .footer>.container {
    position: relative;
    z-index: 1;
  }

  .footer-col a,
  .footer-meta {
    color: #5b5459;
  }

  .wordmark {
    color: rgba(28, 27, 29, .12);
  }
}

@media (prefers-reduced-motion: reduce) {

  .comparison-stage::before,
  .comparison-goal,
  .comparison-lane,
  .comparison-verdict,
  .comparison-lane.featured .comparison-outcome {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .comparison-step::after {
    width: 100%;
    animation: none !important;
  }

  .comparison-lane.expert-only .comparison-step:nth-child(2)::after {
    width: 56%;
  }
}

/* Comparison is now a visual race, with copy reduced to the decision itself. */
.shift-head .section-copy {
  max-width: 500px;
}

.comparison-stage {
  padding: 22px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.comparison-lane {
  display: grid;
  grid-template-columns: 190px minmax(180px, 1fr) 170px;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 15px 18px;
  border-radius: 17px;
}

.comparison-lane.featured {
  min-height: 102px;
}

.comparison-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee8e6;
  box-shadow: inset 0 1px 2px rgba(43, 27, 31, .08);
}

.comparison-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: #9f9698;
}

.comparison-lane.featured .comparison-progress {
  background: linear-gradient(90deg, var(--red), #ff8d77);
  box-shadow: 0 0 20px rgba(255, 61, 52, .35);
}

.comparison-progress::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: inherit;
  box-shadow: 0 3px 10px rgba(43, 27, 31, .18);
  transform: translateY(-50%);
}

.comparison-result {
  opacity: 0;
  transform: translateX(-8px);
}

.comparison-result strong,
.comparison-result small {
  display: block;
}

.comparison-result strong {
  font-size: 16px;
}

.comparison-result small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.comparison-stage.is-playing .ai-only .comparison-progress {
  animation: compareToDraft 1.2s .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

.comparison-stage.is-playing .expert-only .comparison-progress {
  animation: compareToExpert 2.8s .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.comparison-stage.is-playing .featured .comparison-progress {
  animation: compareToFinish 1.7s 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.comparison-stage.is-playing .ai-only .comparison-result {
  animation: compareResultIn .45s 1.9s forwards;
}

.comparison-stage.is-playing .expert-only .comparison-result {
  animation: compareResultIn .45s 3.65s forwards;
}

.comparison-stage.is-playing .featured .comparison-result {
  animation: compareResultIn .5s 2.65s forwards;
}

.comparison-stage.is-playing .featured {
  animation: comparisonTrustPulse 1.1s 2.7s both;
}

.comparison-verdict {
  justify-content: center;
  text-align: center;
  transition-delay: 3.15s;
}

.comparison-verdict strong {
  font-size: clamp(18px, 2vw, 25px);
}

@keyframes compareToDraft {
  to {
    width: 58%;
  }
}

@keyframes compareToExpert {
  to {
    width: 82%;
  }
}

@keyframes compareToFinish {
  to {
    width: 100%;
  }
}

@keyframes compareResultIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes comparisonTrustPulse {
  50% {
    border-color: var(--red);
    box-shadow: 0 22px 56px rgba(255, 61, 52, .22);
    transform: translateY(-3px);
  }
}

@media (max-width: 700px) {
  .comparison-lane {
    grid-template-columns: 1fr;
    gap: 11px;
    min-height: 0;
    padding: 17px;
  }

  .comparison-lane.featured {
    min-height: 0;
  }

  .comparison-track {
    height: 10px;
  }

  .comparison-result {
    min-height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-progress {
    width: 100% !important;
    animation: none !important;
  }

  .comparison-lane.ai-only .comparison-progress {
    width: 58% !important;
  }

  .comparison-lane.expert-only .comparison-progress {
    width: 82% !important;
  }

  .comparison-result {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Comparison direction: three proofs, one finished outcome. */
.comparison-option-two {
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(249, 243, 241, .88));
}

.comparison-option-two .comparison-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 18px 26px;
  border: 1px solid #e5ddda;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
}

.comparison-option-two .comparison-question span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-option-two .comparison-question strong {
  font-size: clamp(20px, 2.1vw, 28px);
  text-align: right;
  letter-spacing: -.04em;
}

.comparison-option-two .comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.comparison-option-two .comparison-column {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 22px;
  border: 1px solid #e6dfdc;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .75s cubic-bezier(.16, 1, .3, 1), border-color .4s ease, box-shadow .4s ease;
}

.comparison-option-two .comparison-column:nth-child(1) {
  transition-delay: .12s;
}

.comparison-option-two .comparison-column:nth-child(2) {
  transition-delay: .25s;
}

.comparison-option-two .comparison-column:nth-child(3) {
  transition-delay: .38s;
}

.comparison-option-two.is-playing .comparison-column {
  opacity: 1;
  transform: none;
}

.comparison-option-two .comparison-column.featured {
  border-color: #ff8b7d;
  background: linear-gradient(145deg, #fff, #fff0eb);
  box-shadow: 0 20px 54px rgba(255, 61, 52, .14);
}

.comparison-column-head {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
}

.comparison-index {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d8d1cf;
  border-radius: 50%;
  color: #777073;
  font-size: 14px;
  font-weight: 800;
}

.comparison-column.featured .comparison-index {
  border-color: var(--red);
  color: var(--red);
}

.comparison-option-two .comparison-label {
  min-height: 27px;
  padding-inline: 11px;
}

.comparison-column-intro {
  min-height: 43px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.comparison-column-visual {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 270px;
  margin-top: 18px;
  padding: 22px 16px 16px;
  overflow: hidden;
  border: 1px solid #ece6e3;
  border-radius: 17px;
  background: rgba(255, 255, 255, .72);
}

.comparison-column-visual::after {
  content: "";
  position: absolute;
  inset: auto -32px -60px;
  height: 130px;
  border-radius: 50%;
  background: rgba(239, 63, 53, .06);
  filter: blur(22px);
  pointer-events: none;
}

.comparison-source {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #686164;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  box-shadow: 0 9px 20px rgba(40, 32, 34, .14);
}

.comparison-source-expert {
  border-radius: 50%;
  background: #fff;
  color: #686164;
  border: 1px solid #d7d0ce;
  font-size: 22px;
}

.comparison-fragments {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 24px 0 18px;
}

.comparison-fragments span {
  display: block;
  height: 22px;
  border: 1px solid #e7dfdc;
  border-radius: 8px;
  background: #fff;
  opacity: 0;
  transform: translateX(-18px);
}

.comparison-fragments span:nth-child(1) {
  width: 72%;
}

.comparison-fragments span:nth-child(2) {
  width: 94%;
}

.comparison-fragments span:nth-child(3) {
  width: 60%;
}

.comparison-fragments span:nth-child(4) {
  width: 84%;
}

.comparison-expert-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 24px 0 18px;
}

.comparison-expert-steps span {
  display: flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px 0 26px;
  border: 1px solid #e2dcda;
  border-radius: 8px;
  background: #fff;
  color: #5f585c;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
}

.comparison-expert-steps span::before {
  content: "✓";
  position: absolute;
  margin-left: -17px;
  color: #777073;
  font-size: 14px;
}

.comparison-agent-sources {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.comparison-agent-sources span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #ffb4a7;
  border-radius: 999px;
  background: #fff8f5;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

.comparison-agent-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 20px 0 16px;
}

.comparison-agent-steps span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px 0 30px;
  border: 1px solid #ffb0a2;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: #5c5355;
  font-size: 13px;
  font-weight: 750;
  opacity: 0;
  transform: translateX(12px);
}

.comparison-agent-steps span::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.comparison-column-result {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 15px 13px;
  border-radius: 13px;
  background: #f2eeed;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.comparison-column.featured .comparison-column-result {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(32, 25, 27, .2);
}

.comparison-column-result strong,
.comparison-column-result small {
  display: block;
}

.comparison-column-result strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.comparison-column-result small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.comparison-column.featured .comparison-column-result small {
  color: #d9d1d3;
}

.comparison-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.comparison-metric-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #d8d1cf;
  border-radius: 50%;
  color: #6f676a;
  font-size: 18px;
  font-weight: 900;
}

.comparison-column.featured .comparison-metric-icon {
  border-color: var(--red);
  color: var(--red);
}

.comparison-metric strong,
.comparison-metric small {
  display: block;
}

.comparison-metric strong {
  font-size: 15px;
}

.comparison-metric small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.comparison-option-two .comparison-verdict {
  justify-content: center;
  margin-top: 16px;
  padding: 20px 22px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s .85s ease, transform .7s .85s cubic-bezier(.16, 1, .3, 1);
}

.comparison-option-two.is-playing .comparison-verdict {
  opacity: 1;
  transform: none;
}

.comparison-option-two.is-playing .comparison-fragments span {
  animation: optionTwoFragment .42s forwards;
}

.comparison-option-two.is-playing .comparison-fragments span:nth-child(1) {
  animation-delay: .8s;
}

.comparison-option-two.is-playing .comparison-fragments span:nth-child(2) {
  animation-delay: 1s;
}

.comparison-option-two.is-playing .comparison-fragments span:nth-child(3) {
  animation-delay: 1.2s;
}

.comparison-option-two.is-playing .comparison-fragments span:nth-child(4) {
  animation-delay: 1.4s;
}

.comparison-option-two.is-playing .comparison-expert-steps span {
  animation: optionTwoStep .45s forwards;
}

.comparison-option-two.is-playing .comparison-expert-steps span:nth-child(1) {
  animation-delay: 1.05s;
}

.comparison-option-two.is-playing .comparison-expert-steps span:nth-child(2) {
  animation-delay: 1.35s;
}

.comparison-option-two.is-playing .comparison-expert-steps span:nth-child(3) {
  animation-delay: 1.65s;
}

.comparison-option-two.is-playing .comparison-agent-steps span {
  animation: optionTwoAgentStep .48s forwards;
}

.comparison-option-two.is-playing .comparison-agent-steps span:nth-child(1) {
  animation-delay: .78s;
}

.comparison-option-two.is-playing .comparison-agent-steps span:nth-child(2) {
  animation-delay: 1.15s;
}

.comparison-option-two.is-playing .comparison-agent-steps span:nth-child(3) {
  animation-delay: 1.52s;
}

.comparison-option-two.is-playing .comparison-column-result {
  animation: optionTwoResult .5s 2.05s forwards;
}

.comparison-option-two.is-playing .comparison-column:nth-child(2) .comparison-column-result {
  animation-delay: 2.15s;
}

.comparison-option-two.is-playing .comparison-column:nth-child(3) .comparison-column-result {
  animation-delay: 1.95s;
}

.comparison-option-two.is-playing .comparison-column.featured {
  animation: optionTwoTrustPulse 1.05s 2.45s both;
}

@keyframes optionTwoFragment {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes optionTwoStep {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes optionTwoAgentStep {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes optionTwoResult {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes optionTwoTrustPulse {
  50% {
    border-color: var(--red);
    box-shadow: 0 24px 60px rgba(255, 61, 52, .24);
    transform: translateY(-3px);
  }
}

@media (max-width: 900px) {
  .comparison-option-two .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-option-two .comparison-column {
    min-height: 0;
  }

  .comparison-option-two .comparison-column-visual {
    min-height: 235px;
  }
}

@media (max-width: 640px) {
  .comparison-option-two {
    width: calc(100vw - 24px);
    padding: 12px;
    border-radius: 22px;
  }

  .comparison-option-two .comparison-question {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .comparison-option-two .comparison-question strong {
    text-align: left;
    font-size: 21px;
  }

  .comparison-option-two .comparison-column {
    padding: 18px;
    border-radius: 18px;
  }

  .comparison-column-intro {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .comparison-option-two .comparison-column,
  .comparison-option-two .comparison-verdict,
  .comparison-option-two .comparison-column-result,
  .comparison-option-two .comparison-fragments span,
  .comparison-option-two .comparison-expert-steps span,
  .comparison-option-two .comparison-agent-steps span {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Signal Convergence comparison */
.signal-head {
  text-align: center;
}

.signal-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--red);
}

.signal-head .eyebrow::before {
  content: "✦";
  font-size: 18px;
}

.signal-head .section-title {
  max-width: 1110px;
  margin-inline: auto;
  font-size: clamp(42px, 4.45vw, 60px);
}

.signal-head .section-copy {
  max-width: none;
  margin-inline: auto;
}

.signal-stage {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 210px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 28px 24px;
  min-height: 590px;
  padding: 38px 36px 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 248, 245, .9));
}

.signal-stage::before {
  right: -20px;
  bottom: 20px;
  width: 360px;
  height: 360px;
  background: rgba(255, 103, 86, .22);
  filter: blur(82px);
}

.signal-question {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 28px 22px;
  border: 1px solid #e2dcd9;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(54, 42, 45, .07);
  opacity: 0;
  transform: translateX(-18px);
  transition: .75s .05s cubic-bezier(.16, 1, .3, 1);
}

.signal-stage.is-playing .signal-question {
  opacity: 1;
  transform: none;
}

.signal-quote-mark {
  position: absolute;
  top: -18px;
  left: -12px;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid #e2dcd9;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 9px 20px rgba(54, 42, 45, .08);
}

.signal-question strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.signal-question-rule {
  display: block;
  width: 32px;
  height: 2px;
  margin: 18px 0;
  background: #ffb0a4;
}

.signal-question p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.signal-lanes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 25px;
  min-width: 0;
}

.signal-lanes::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 39px;
  bottom: 40px;
  width: 1px;
  background: #e0d9d7;
}

.signal-lane {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px 130px;
  grid-template-rows: auto 24px;
  column-gap: 10px;
  align-items: center;
  opacity: 0;
  transform: translateX(-14px);
  transition: .7s cubic-bezier(.16, 1, .3, 1);
}

.signal-stage.is-playing .signal-lane {
  opacity: 1;
  transform: none;
}

.signal-stage.is-playing .signal-lane:nth-child(1) {
  transition-delay: .15s;
}

.signal-stage.is-playing .signal-lane:nth-child(2) {
  transition-delay: .85s;
}

.signal-stage.is-playing .signal-lane:nth-child(3) {
  transition-delay: 1.55s;
}

.signal-lane::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 36px;
  width: 31px;
  height: 1px;
  background: #e0d9d7;
}

.signal-lane-head {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 5px;
}

.signal-origin {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #d8d1cf;
  border-radius: 50%;
  background: #fff;
  color: #766e71;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(47, 37, 39, .08);
}

.signal-lane-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 13px;
  border-radius: 999px;
  background: #efebea;
  color: #696063;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-origin img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: .82;
  filter: grayscale(1);
}

.signal-agent .signal-origin {
  width: 64px;
  height: 56px;
  border-color: #ff9f91;
  border-radius: 18px;
  color: var(--red);
  box-shadow: 0 0 0 9px rgba(255, 112, 92, .07), 0 12px 26px rgba(255, 61, 52, .16);
}

.signal-agent .signal-origin img {
  width: 47px;
  height: 39px;
  opacity: 1;
  filter: none;
}

.signal-agent .signal-lane-head strong {
  background: var(--red);
  color: #fff;
}

.signal-track {
  position: relative;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  margin-left: 60px;
}

.signal-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #e0dcda;
  transform: translateY(-50%);
}

.signal-track-fill {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: #9e9698;
  transform: translateY(-50%);
}

.signal-track i {
  position: relative;
  z-index: 2;
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #aca4a6;
  box-shadow: 0 2px 5px rgba(44, 35, 37, .15);
  opacity: 0;
  transform: scale(.3);
}

.signal-lane-note {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: #5f585a;
  font-size: 13px;
  line-height: 1.45;
}

.signal-mini-result {
  position: relative;
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 130px;
  padding: 12px;
  border: 1px solid #ddd6d4;
  border-radius: 13px;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  transform: translateX(-8px);
  box-shadow: 0 8px 18px rgba(47, 37, 39, .06);
}

.signal-mini-result img {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  object-fit: contain;
  opacity: .72;
  filter: grayscale(1);
}

.signal-mini-result strong,
.signal-mini-result small {
  display: block;
}

.signal-mini-result strong {
  font-size: 15px;
}

.signal-mini-result small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.signal-agent {
  grid-template-columns: minmax(0, 1fr) 190px;
  padding-top: 3px;
}

.signal-agent .signal-lane-note {
  position: absolute;
  top: 0;
  right: -8px;
  width: 184px;
}

.signal-agent .signal-track::before {
  background: rgba(239, 63, 53, .24);
}

.signal-agent .signal-track-fill {
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8c73);
  box-shadow: 0 0 15px rgba(255, 61, 52, .36);
}

.signal-agent .signal-track i {
  background: var(--red);
}

.signal-ai .signal-track::before {
  background: #b7b0b2;
}

.signal-ai .signal-track-fill {
  background: #756d70;
}

.signal-expert .signal-track::before {
  background: #c9b8b1;
}

.signal-expert .signal-track-fill {
  background: #96776d;
}

.signal-stage.is-playing .signal-track-agent::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: calc(100% - 2px);
  top: 50%;
  width: 274px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff9d8e);
  box-shadow: 0 0 15px rgba(239, 63, 53, .32);
  transform: translateY(-50%) rotate(-38deg) scaleX(0);
  transform-origin: left center;
  animation: signalConnectOutcome .72s 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
}

.signal-wave {
  position: absolute;
  inset: -17px 0;
  opacity: 0;
  background: repeating-linear-gradient(168deg, transparent 0 7px, rgba(239, 63, 53, .11) 8px 9px, transparent 10px 17px);
  clip-path: polygon(0 45%, 8% 33%, 18% 57%, 29% 29%, 42% 62%, 55% 39%, 67% 54%, 80% 35%, 100% 49%, 100% 55%, 80% 44%, 67% 64%, 55% 48%, 42% 71%, 29% 38%, 18% 66%, 8% 42%, 0 56%);
}

.signal-outcome {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 31px 20px 22px;
  border: 1px solid #ff9d8e;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  text-align: center;
  box-shadow: 0 22px 52px rgba(255, 61, 52, .12);
  opacity: 0;
  transform: translateX(20px) scale(.96);
  transition: .75s 4.1s cubic-bezier(.16, 1, .3, 1);
}

.signal-outcome::before {
  display: none;
}

.signal-stage.is-playing .signal-outcome {
  opacity: 1;
  transform: none;
}

.signal-outcome-check {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: -62px auto 17px;
  border: 9px solid #fff3ef;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 25px rgba(239, 63, 53, .22);
}

.signal-outcome-check img {
  width: 51px;
  height: 42px;
  object-fit: contain;
}

.signal-outcome strong {
  display: block;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.signal-outcome p {
  margin: 14px 0 0;
  color: var(--red);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.signal-benefits {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.signal-benefits span {
  position: relative;
  flex: 1;
  padding-top: 24px;
  color: #625b5e;
  font-size: 11px;
}

.signal-benefits span::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #bcb5b7;
  border-radius: 50%;
  transform: translateX(-50%);
}

.signal-verdict {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid #e2dcda;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  text-align: center;
}

.signal-verdict strong {
  font-size: clamp(15px, 1.8vw, 21px);
}

.signal-verdict em {
  color: var(--red);
  font-style: normal;
}

.signal-stage.is-playing .signal-ai .signal-track-fill {
  animation: signalFillAI .9s .55s cubic-bezier(.16, 1, .3, 1) forwards;
}

.signal-stage.is-playing .signal-expert .signal-track-fill {
  animation: signalFillExpert 1.25s 1.55s cubic-bezier(.16, 1, .3, 1) forwards;
}

.signal-stage.is-playing .signal-agent .signal-track-fill {
  animation: signalFillAgent 1.35s 2.65s cubic-bezier(.16, 1, .3, 1) forwards;
}

.signal-stage.is-playing .signal-track i {
  animation: signalDot .35s forwards;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(1) {
  animation-delay: .75s;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(2) {
  animation-delay: .92s;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(3) {
  animation-delay: 1.09s;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(4) {
  animation-delay: 1.26s;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(5) {
  animation-delay: 1.43s;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(6) {
  animation-delay: 1.6s;
}

.signal-stage.is-playing .signal-lane i:nth-of-type(7) {
  animation-delay: 1.77s;
}

.signal-stage.is-playing .signal-expert i:nth-of-type(n+5) {
  animation-delay: 2.1s;
}

.signal-stage.is-playing .signal-wave {
  animation: signalWave 1.5s 2.65s ease forwards, signalWaveDrift 3.2s 4.15s ease-in-out infinite alternate;
}

.signal-stage.is-playing .signal-ai .signal-mini-result {
  animation: signalResult .5s 1.7s forwards;
}

.signal-stage.is-playing .signal-expert .signal-mini-result {
  animation: signalResult .5s 3.25s forwards;
}

@keyframes signalFillAI {
  to {
    width: 71%;
  }
}

@keyframes signalFillExpert {
  to {
    width: 83%;
  }
}

@keyframes signalFillAgent {
  to {
    width: 100%;
  }
}

@keyframes signalDot {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes signalResult {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes signalWave {
  to {
    opacity: 1;
  }
}

@keyframes signalWaveDrift {
  from {
    transform: translateX(-5px) scaleY(.9);
  }

  to {
    transform: translateX(5px) scaleY(1.08);
  }
}

@keyframes signalConnectOutcome {
  to {
    transform: translateY(-50%) rotate(-38deg) scaleX(1);
  }
}

@media (max-width: 1050px) {
  .signal-stage {
    grid-template-columns: 170px minmax(0, 1fr) 190px;
    gap: 24px 22px;
    padding-inline: 24px;
  }

  .signal-lane {
    grid-template-columns: minmax(0, 1fr) 125px;
    column-gap: 10px;
  }

  .signal-mini-result {
    display: none;
  }

  .signal-lane-note {
    font-size: 12px;
  }
}

@media (min-width: 761px) {
  .signal-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto 28px auto auto auto;
    align-items: start;
    gap: 0 22px;
    min-height: 520px;
    padding: 18px 28px 14px;
  }

  .signal-question {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: min(100%, 410px);
    padding: 16px 24px 14px;
    text-align: center;
  }

  .signal-question-rule {
    margin: 9px auto;
  }

  .signal-question p {
    font-size: 16px;
  }

  .signal-branch {
    position: relative;
    z-index: 2;
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    opacity: 0;
    transform: translateY(-8px);
    transition: .65s .2s cubic-bezier(.16, 1, .3, 1);
  }

  .signal-stage.is-playing .signal-branch {
    opacity: 1;
    transform: none;
  }

  .signal-branch::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 27px;
    background: #d8d1cf;
  }

  .signal-branch::after {
    content: "";
    position: absolute;
    left: 16.666%;
    right: 16.666%;
    top: 27px;
    height: 1px;
    background: #d8d1cf;
  }

  .signal-branch span {
    position: absolute;
    top: 27px;
    width: 1px;
    height: 27px;
    background: #d8d1cf;
  }

  .signal-branch span:nth-child(1) {
    left: 16.666%;
  }

  .signal-branch span:nth-child(2) {
    left: 50%;
  }

  .signal-branch span:nth-child(3) {
    left: 83.333%;
  }

  .signal-lanes {
    display: contents;
  }

  .signal-lanes::before,
  .signal-lane::before {
    display: none;
  }

  .signal-lane {
    grid-row: 3;
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 188px;
    opacity: 0;
    transform: translateY(14px);
  }

  .signal-stage.is-playing .signal-lane {
    opacity: 1;
    transform: none;
  }

  .signal-lane-head {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .signal-lane-head strong {
    justify-content: center;
    max-width: 100%;
    min-height: 30px;
    padding-inline: 15px;
    text-transform: none;
    letter-spacing: -.01em;
    font-size: 15px;
    line-height: 1.1;
  }

  .signal-origin {
    width: 48px;
    height: 48px;
  }

  .signal-origin img {
    width: 30px;
    height: 30px;
  }

  .signal-agent .signal-origin {
    width: 62px;
    height: 52px;
  }

  .signal-agent .signal-origin img {
    width: 45px;
    height: 37px;
  }

  .signal-track {
    width: 24px;
    height: 66px;
    margin: 7px 0 0;
    flex-direction: column;
    justify-content: space-between;
  }

  .signal-track::before {
    left: 50%;
    right: auto;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }

  .signal-track-fill {
    left: 50%;
    top: 0;
    width: 4px;
    height: 0;
    transform: translateX(-50%);
  }

  .signal-track i {
    flex: 0 0 auto;
  }

  .signal-lane-note {
    display: none;
  }

  .signal-mini-result {
    display: block;
    position: static;
    width: min(100%, 210px);
    min-height: 66px;
    margin: 4px auto 0;
    padding: 10px 13px;
    text-align: left;
    transform: translateY(8px);
  }

  .signal-mini-result img {
    width: 21px;
    height: 21px;
    margin-bottom: 4px;
  }

  .signal-lane-note {
    display: block;
    position: static;
    width: min(100%, 220px);
    min-height: 38px;
    margin: 8px auto 0;
    color: #5f585a;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .signal-agent .signal-lane-note {
    position: static;
    width: min(100%, 220px);
    margin: 8px auto 0;
    text-align: center;
  }

  .signal-agent .signal-track::before {
    background: rgba(239, 63, 53, .24);
  }

  .signal-agent .signal-track-fill {
    height: 0;
  }

  .signal-stage.is-playing .signal-track-agent::after {
    left: 50%;
    top: calc(100% + 54px);
    width: 3px;
    height: 105px;
    background: linear-gradient(180deg, var(--red), #ff9d8e);
    transform: translateX(-50%) scaleY(0);
    transform-origin: center top;
    animation: signalConnectOutcomeDesktop .72s 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
  }

  .signal-outcome {
    grid-column: 3;
    grid-row: 4;
    justify-self: center;
    width: min(100%, 240px);
    margin-top: 8px;
    padding: 24px 16px 18px;
    transform: translateY(14px) scale(.96);
  }

  .signal-verdict {
    grid-column: 1 / -1;
    grid-row: 5;
    width: 100%;
    margin-top: 22px;
  }

  .signal-stage.is-playing .signal-ai .signal-track-fill {
    animation-name: signalFillAIDesktop;
  }

  .signal-stage.is-playing .signal-expert .signal-track-fill {
    animation-name: signalFillExpertDesktop;
  }

  .signal-stage.is-playing .signal-agent .signal-track-fill {
    animation-name: signalFillAgentDesktop;
  }

  .signal-agent .signal-track-agent::after {
    height: 105px;
  }
}

.signal-branch {
  display: none;
}

@media (min-width: 761px) {
  .signal-branch {
    display: block;
  }
}

@keyframes signalFillAIDesktop {
  to {
    height: 71%;
  }
}

@keyframes signalFillExpertDesktop {
  to {
    height: 83%;
  }
}

@keyframes signalFillAgentDesktop {
  to {
    height: 100%;
  }
}

@keyframes signalConnectOutcomeDesktop {
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

@media (max-width: 760px) {
  .signal-head .section-title {
    font-size: clamp(37px, 11vw, 50px);
  }

  .signal-stage {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
    min-height: 0;
    padding: 26px 16px 16px;
  }

  .signal-branch {
    display: none !important;
  }

  .signal-question,
  .signal-lanes,
  .signal-outcome,
  .signal-verdict {
    grid-column: 1;
  }

  .signal-question {
    padding: 25px 20px 21px;
  }

  .signal-question strong {
    font-size: 20px;
  }

  .signal-lanes {
    gap: 28px;
  }

  .signal-lanes::before,
  .signal-lane::before {
    display: none;
  }

  .signal-lane {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .signal-lane-head,
  .signal-track,
  .signal-lane-note {
    grid-column: 1;
  }

  .signal-track {
    margin: 3px 0 0;
  }

  .signal-lane-note {
    grid-row: auto;
    margin-top: 7px;
  }

  .signal-agent .signal-lane-note {
    position: static;
    width: auto;
  }

  .signal-mini-result {
    display: block;
    position: static;
    grid-column: 1;
    grid-row: auto;
    width: auto;
    margin-top: 8px;
    opacity: 0;
  }

  .signal-outcome {
    margin-top: 16px;
  }

  .signal-stage.is-playing .signal-track-agent::after {
    left: 50%;
    top: calc(100% + 62px);
    width: 3px;
    height: 38px;
    background: linear-gradient(180deg, var(--red), #ff9d8e);
    transform: translateX(-50%) scaleY(0);
    transform-origin: center top;
    animation: signalConnectOutcomeMobile .72s 4.05s cubic-bezier(.16, 1, .3, 1) forwards;
  }

  .signal-verdict {
    padding: 18px;
  }
}

@keyframes signalConnectOutcomeMobile {
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .signal-question,
  .signal-lane,
  .signal-outcome,
  .signal-mini-result,
  .signal-verdict,
  .signal-track i,
  .signal-wave {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .signal-ai .signal-track-fill {
    width: 71%;
  }

  .signal-expert .signal-track-fill {
    width: 83%;
  }

  .signal-agent .signal-track-fill {
    width: 100%;
  }
}