:root {
  --copilot-ink: #101114;
  --copilot-copy: #626a80;
  --copilot-blue-dark: #2039a8;
  --copilot-blue: #4056d8;
  --copilot-blue-bright: #5264ea;
  --copilot-violet: #7775f4;
  --copilot-lavender: #a7a8ff;
  --copilot-soft: #f7f7fa;
  --copilot-surface-blue: #f2f4ff;
  --copilot-border: #e4e5ed;
  --copilot-navy: #0b0626;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--copilot-ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

salesman-header,
salesman-footer {
  display: block;
}

.copilot-page {
  overflow: clip;
}

.copilot-page h1,
.copilot-page h2,
.copilot-page h3,
.copilot-page p {
  text-wrap: pretty;
}

.copilot-page a {
  text-decoration: none;
}

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

.copilot-page :focus-visible {
  outline: 3px solid var(--copilot-blue);
  outline-offset: 3px;
  border-radius: 7px;
}

.copilot-header-spacer {
  height: 74px;
}

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

.copilot-container--narrow {
  width: min(1000px, calc(100% - 48px));
}

.copilot-container--workflow {
  width: min(1080px, calc(100% - 48px));
}

.copilot-hero {
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 5vw, 72px);
  background: radial-gradient(900px 460px at 50% -10%, #eff1ff 0%, rgba(255, 255, 255, 0) 72%);
}

.copilot-hero__inner {
  max-width: 840px;
  text-align: center;
}

.copilot-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #eaedff;
  color: var(--copilot-blue-dark);
  font-size: 12.5px;
  font-weight: 700;
}

.copilot-pill--outline {
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid #c6cbf6;
  background: #fff;
  color: var(--copilot-blue);
  font-size: 14px;
  font-weight: 600;
}

.copilot-pill--glass {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.copilot-pill--violet {
  background: #f1f1ff;
  color: #5b58d8;
}

.copilot-hero h1 {
  margin: 22px 0 0;
  color: var(--copilot-ink);
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.copilot-hero__inner > p:not(.copilot-friction) {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--copilot-copy);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

.copilot-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.copilot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.copilot-button--demo {
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .copilot-button--demo:hover {
    box-shadow: 0 14px 30px rgba(67, 56, 202, 0.17);
  }
}

.copilot-button--demo:active {
  transform: translateY(0) scale(0.985);
}

.copilot-button--primary {
  background: linear-gradient(135deg, var(--copilot-blue-dark), var(--copilot-blue) 55%, #6670ec);
  box-shadow: 0 16px 32px -16px rgba(32, 57, 168, 0.85);
  color: #fff;
}

.copilot-button--primary:hover {
  box-shadow: 0 20px 38px -17px rgba(32, 57, 168, 0.9);
  color: #fff;
}

.copilot-button--secondary {
  border-color: #d5d8e4;
  background: #fff;
  color: var(--copilot-ink);
}

.copilot-button--secondary:hover {
  border-color: var(--copilot-lavender);
  color: var(--copilot-ink);
}

.copilot-button--compact {
  min-height: 46px;
  margin-top: 20px;
  padding: 0 22px;
  font-size: 15px;
}

.copilot-button--white {
  background: #fff;
  color: var(--copilot-blue-dark);
}

.copilot-button--white:hover {
  color: var(--copilot-blue-dark);
}

.copilot-button--glass {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.copilot-button--glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.copilot-friction {
  margin: 28px 0 0;
  color: #7c8398;
  font-size: 14px;
}

.copilot-friction strong {
  color: #3a4157;
}

.copilot-metrics {
  padding-bottom: clamp(48px, 6vw, 72px);
}

.copilot-metrics__band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 40px);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--copilot-blue-dark), var(--copilot-blue) 55%, #6670ec);
  box-shadow: 0 32px 64px -44px rgba(32, 57, 168, 0.9);
}

.copilot-metric {
  min-width: 0;
  text-align: center;
}

.copilot-metric + .copilot-metric {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.copilot-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.copilot-metric span {
  display: block;
  max-width: 250px;
  margin: 12px auto 0;
  color: #d6daff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.copilot-problem {
  padding-bottom: clamp(56px, 6vw, 88px);
}

.copilot-problem__panel {
  padding: clamp(48px, 6vw, 88px) clamp(24px, 5vw, 72px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--copilot-blue-dark), #3b51d2 50%, #6670ec);
  text-align: center;
}

.copilot-problem h2 {
  max-width: 840px;
  margin: 24px auto 0;
  color: #fff;
  font-size: clamp(27px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.copilot-problem p {
  max-width: 660px;
  margin: 20px auto 0;
  color: #d9ddff;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}

.copilot-outcomes {
  padding: clamp(8px, 2vw, 16px) 0 clamp(48px, 5vw, 64px);
}

.copilot-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  max-width: 1080px;
}

.copilot-outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.copilot-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--copilot-surface-blue);
}

.copilot-icon svg,
.copilot-workflow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--copilot-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.copilot-outcome h3 {
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
}

.copilot-outcome p {
  margin: 6px 0 0;
  color: var(--copilot-copy);
  font-size: 14.5px;
  line-height: 1.55;
}

.copilot-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

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

.copilot-section-heading {
  max-width: 660px;
}

.copilot-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.copilot-section-heading h2,
.copilot-faq__intro h2 {
  margin: 16px 0 0;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.copilot-section-heading > h2:first-child,
.copilot-faq__intro h2 {
  margin-top: 0;
}

.copilot-section-heading > p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--copilot-copy);
  font-size: 16px;
  line-height: 1.6;
}

.copilot-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(32px, 4vw, 54px);
}

.copilot-step-card {
  overflow: hidden;
  border: 1px solid var(--copilot-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 17, 20, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.copilot-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -30px rgba(16, 20, 60, 0.45);
}

.copilot-step-card__visual {
  min-height: 185px;
  padding: 22px;
  background: linear-gradient(150deg, #e6eaff, #f2f0ff);
}

.copilot-step-card__visual--brief {
  background: linear-gradient(150deg, #e3e7ff, #ede9fb);
}

.copilot-step-card__visual--followup {
  background: linear-gradient(150deg, #e6eaff, #e4f5f0);
}

.copilot-mini-card,
.copilot-ui-card {
  border: 1px solid var(--copilot-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 26px -20px rgba(16, 20, 60, 0.55);
}

.copilot-mini-card {
  padding: 14px;
}

.copilot-kicker {
  color: #8c93a6;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copilot-calendar-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.copilot-calendar-row i {
  display: block;
  height: 26px;
  border-radius: 6px;
  background: #f1f2f7;
}

.copilot-calendar-row i:nth-child(2) { background: #e4e8ff; }
.copilot-calendar-row i:nth-child(3) { background: var(--copilot-blue); }
.copilot-calendar-row i:nth-child(5) { background: #edebff; }

.copilot-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #2a3242;
  font-size: 12.5px;
  font-weight: 600;
}

.copilot-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copilot-blue);
}

.copilot-mini-heading,
.copilot-feedback-card > div,
.copilot-analysis-card > div,
.copilot-clone-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.copilot-mini-heading strong,
.copilot-mini-title {
  color: var(--copilot-ink);
  font-size: 12.5px;
  font-weight: 700;
}

.copilot-mini-heading span {
  color: var(--copilot-blue);
  font-size: 11.5px;
  font-weight: 700;
}

.copilot-progress {
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 5px;
  background: #eeeff6;
}

.copilot-progress i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--copilot-blue-dark), var(--copilot-violet));
  transform-origin: left center;
  animation: copilot-fill 3.4s ease-in-out infinite;
}

.copilot-skeleton {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.copilot-skeleton i {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: #eeeff6;
}

.copilot-skeleton i:last-child { width: 72%; }

.copilot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.copilot-tags span {
  padding: 4px 8px;
  border-radius: 6px;
  background: #eaedff;
  color: var(--copilot-blue-dark);
  font-size: 11.5px;
  font-weight: 600;
}

.copilot-tags span:nth-child(even) {
  background: #f1f1ff;
  color: #5b58d8;
}

.copilot-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px 9px;
  border: 1px solid #e4e8ff;
  border-radius: 9px;
  background: #f7f8ff;
  color: #2a3242;
  font-size: 12.5px;
  font-weight: 600;
}

.copilot-check-row i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 5px;
  background: #e4e8ff;
  font-size: 10px;
  font-style: normal;
}

.copilot-check-row--green {
  border-color: #dcefe8;
  background: #f4fbf8;
  color: var(--copilot-ink);
}

.copilot-check-row--green i {
  background: #dcf3ea;
  color: #17795c;
}

.copilot-step-card__copy {
  padding: 22px;
}

.copilot-step-label {
  color: var(--copilot-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copilot-step-card h3 {
  margin: 8px 0 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.copilot-step-card__copy p {
  margin: 8px 0 0;
  color: var(--copilot-copy);
  font-size: 14.5px;
  line-height: 1.6;
}

.copilot-capabilities {
  padding: clamp(56px, 7vw, 96px) 0;
}

.copilot-capabilities__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 116px);
}

.copilot-capability {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.copilot-capability__visual {
  padding: clamp(16px, 2.6vw, 30px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(246, 224, 239, 0.72), rgba(224, 228, 255, 0.78), rgba(223, 247, 242, 0.68));
}

.copilot-capability__visual--rehearsal {
  background: linear-gradient(135deg, rgba(224, 228, 255, 0.85), rgba(246, 224, 239, 0.6));
}

.copilot-capability__visual--analysis {
  background: linear-gradient(135deg, rgba(224, 228, 255, 0.8), rgba(223, 247, 242, 0.7));
}

.copilot-ui-card {
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 26px 50px -34px rgba(16, 20, 60, 0.5);
}

.copilot-tags--context {
  gap: 7px;
}

.copilot-tags--context span {
  padding: 5px 10px;
  border-radius: 8px;
  background: #f1f2f7;
  color: #2a3242;
  font-size: 12.5px;
}

.copilot-tags--context span:nth-child(3) {
  background: #eaedff;
  color: var(--copilot-blue-dark);
}

.copilot-tags--context span:nth-child(4) {
  background: #f1f1ff;
  color: #5b58d8;
}

.copilot-divider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: var(--copilot-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copilot-divider-label i {
  flex: 1;
  height: 1px;
  background: #edeef3;
}

.copilot-clone-card {
  padding: 14px;
  border: 1px solid #d8ddfb;
  border-radius: 13px;
  background: #fafbff;
}

.copilot-clone-card strong,
.copilot-feedback-card strong,
.copilot-analysis-card > div strong {
  font-size: 13.5px;
  font-weight: 800;
}

.copilot-clone-card > div > span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaedff;
  color: var(--copilot-blue-dark);
  font-size: 11.5px;
  font-weight: 700;
}

.copilot-clone-card p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 0;
  color: var(--copilot-copy);
  font-size: 12.5px;
}

.copilot-clone-card p span { flex: 1; }

.copilot-clone-card p i {
  width: 88px;
  height: 7px;
  border-radius: 4px;
  background: #d8ddfb;
}

.copilot-clone-card p:last-child i {
  width: 56px;
  background: #e4e8ff;
}

.copilot-capability__copy h2 {
  margin: 16px 0 0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.copilot-capability__copy > p {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--copilot-copy);
  font-size: 16.5px;
  line-height: 1.65;
}

.copilot-check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.copilot-check-list li {
  position: relative;
  min-height: 18px;
  padding-left: 28px;
  color: #2a3242;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.copilot-check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  background: #eaedff;
  color: var(--copilot-blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.copilot-check-list--violet li::before {
  background: #f1f1ff;
  color: #5b58d8;
}

.copilot-rehearsal-stack {
  display: grid;
  gap: 14px;
}

.copilot-chat {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}

.copilot-chat p {
  align-self: flex-start;
  max-width: 78%;
  margin: 0;
  padding: 10px 13px;
  border-radius: 14px 14px 14px 4px;
  background: #f1f2f7;
  color: #2a3242;
  font-size: 13px;
  font-weight: 600;
}

.copilot-chat p:last-child {
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(135deg, var(--copilot-blue-dark), var(--copilot-blue-bright));
  color: #fff;
}

.copilot-feedback-card > div > span {
  padding: 3px 9px;
  border-radius: 999px;
  background: #dcf3ea;
  color: #17795c;
  font-size: 11.5px;
  font-weight: 700;
}

.copilot-feedback-card label {
  display: block;
  margin-top: 13px;
  color: var(--copilot-copy);
  font-size: 12.5px;
}

.copilot-feedback-card label i {
  display: block;
  height: 6px;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 4px;
  background: #eeeff6;
}

.copilot-feedback-card label b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--copilot-blue);
}

.copilot-feedback-card label:last-child b { background: var(--copilot-violet); }

.copilot-analysis-card > div > span {
  color: #8c93a6;
  font-size: 11.5px;
  font-weight: 600;
}

.copilot-analysis-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.copilot-analysis-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.copilot-analysis-card time {
  width: 44px;
  color: #9aa0b2;
  font-size: 11.5px;
}

.copilot-analysis-card li > i {
  display: block;
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: #eeeff6;
}

.copilot-analysis-card li:nth-child(4) i { flex: 0 1 60%; }

.copilot-analysis-card .is-alert {
  margin-inline: -10px;
  padding: 8px 10px;
  border: 1px solid #d8ddfb;
  border-radius: 10px;
  background: #f3f5ff;
}

.copilot-analysis-card .is-alert time {
  color: var(--copilot-blue-dark);
  font-weight: 700;
}

.copilot-analysis-card .is-alert strong {
  flex: 1;
  font-size: 12.5px;
}

.copilot-analysis-card > p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid #edeef3;
  color: var(--copilot-copy);
  font-size: 12.5px;
}

.copilot-analysis-card > p span {
  padding: 5px 10px;
  border-radius: 8px;
  background: #dcf3ea;
  color: #17795c;
  font-size: 12px;
  font-weight: 700;
}

.copilot-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 48px);
}

.copilot-deal-visual {
  padding: clamp(18px, 2.6vw, 32px);
  border-radius: 24px;
  background: linear-gradient(135deg, #101128, #171934 55%, #253157);
}

.copilot-deal-card {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 60px -34px rgba(5, 8, 30, 0.8);
}

.copilot-deal-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.copilot-deal-card__heading strong {
  font-size: 13.5px;
  font-weight: 800;
}

.copilot-deal-card__heading span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaedff;
  color: var(--copilot-blue-dark);
  font-size: 11.5px;
  font-weight: 700;
}

.copilot-deal-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.copilot-deal-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #edeef3;
  border-radius: 11px;
  background: #fbfbfd;
  transition: background 250ms ease, border-color 250ms ease;
}

.copilot-deal-list > div.is-active {
  border-color: #c9cff9;
  background: var(--copilot-surface-blue);
}

.copilot-deal-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d6e2;
  transition: background 250ms ease;
}

.copilot-deal-list .is-active i { background: var(--copilot-blue); }

.copilot-deal-list strong {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
}

.copilot-deal-list span {
  display: block;
  width: 54px;
  height: 7px;
  border-radius: 4px;
  background: #e4e8ff;
}

.copilot-deal-list > div:nth-child(2) span { width: 76px; }
.copilot-deal-list > div:nth-child(3) span { width: 42px; }
.copilot-deal-list > div:nth-child(4) span { width: 66px; }
.copilot-deal-list > div:nth-child(5) span { width: 58px; }

.copilot-deal-card > p {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid #edeef3;
  color: var(--copilot-copy);
  font-size: 12.5px;
  font-weight: 600;
}

.copilot-accordion article {
  border-bottom: 1px solid var(--copilot-border);
}

.copilot-accordion button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  padding: 20px 4px;
  border: 0;
  background: none;
  color: var(--copilot-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.copilot-accordion--why button > i {
  align-self: stretch;
  width: 3px;
  border-radius: 2px;
  background: transparent;
  transition: background 250ms ease;
}

.copilot-accordion--why .is-open button > i { background: var(--copilot-blue); }

.copilot-accordion--why button span {
  flex: 1;
  font-size: 17px;
  font-weight: 800;
}

.copilot-accordion__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.copilot-accordion__answer > p {
  overflow: hidden;
}

.copilot-accordion .is-open .copilot-accordion__answer {
  grid-template-rows: 1fr;
}

.copilot-accordion--why .copilot-accordion__answer p {
  max-width: 520px;
  margin: 0 4px 20px 21px;
  color: var(--copilot-copy);
  font-size: 15.5px;
  line-height: 1.6;
}

.copilot-table-wrap {
  margin-top: clamp(28px, 3.5vw, 44px);
  overflow-x: auto;
  border: 1px solid var(--copilot-border);
  border-radius: 20px;
  box-shadow: 0 20px 44px -34px rgba(16, 20, 60, 0.35);
}

.copilot-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.copilot-table-wrap th,
.copilot-table-wrap td {
  padding: 18px 22px;
  font-size: 14.5px;
  line-height: 1.45;
  text-align: left;
}

.copilot-table-wrap thead {
  background: var(--copilot-navy);
}

.copilot-table-wrap thead th {
  color: #fff;
  font-weight: 700;
}

.copilot-table-wrap thead th:first-child {
  color: #a8adc2;
  font-size: 13.5px;
}

.copilot-table-wrap thead th:last-child {
  color: var(--copilot-lavender);
  font-weight: 800;
}

.copilot-table-wrap tbody tr {
  border-top: 1px solid #edeef3;
}

.copilot-table-wrap tbody th {
  color: var(--copilot-ink);
  font-weight: 700;
}

.copilot-table-wrap tbody td {
  color: #6c7386;
}

.copilot-table-wrap tbody td:last-child {
  background: #f7f8ff;
  color: var(--copilot-blue-dark);
  font-weight: 700;
}

.copilot-workflow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.copilot-workflow article {
  display: flex;
  flex: 0 1 190px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border: 1px solid var(--copilot-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px -24px rgba(16, 20, 60, 0.45);
  text-align: center;
}

.copilot-workflow__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--copilot-surface-blue);
}

.copilot-workflow__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--copilot-blue-dark);
  stroke-width: 1.8;
}

.copilot-workflow__icon svg .is-fill {
  fill: var(--copilot-violet);
  stroke: none;
}

.copilot-workflow article > strong {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 700;
}

.copilot-arrow {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 12px;
}

.copilot-arrow::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: #b9c0ee;
}

.copilot-arrow::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--copilot-blue);
  border-right: 2px solid var(--copilot-blue);
  transform: rotate(45deg);
}

.copilot-workflow .copilot-workflow__salesman {
  flex-basis: 220px;
  padding: 24px 16px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--copilot-blue-dark), var(--copilot-blue) 55%, #6670ec);
  box-shadow: 0 24px 44px -22px rgba(32, 57, 168, 0.85);
}

.copilot-workflow__salesman > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.copilot-workflow__salesman img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.copilot-workflow .copilot-workflow__salesman > strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.copilot-workflow__salesman small {
  color: #cbd1ff;
  font-size: 12.5px;
  font-weight: 600;
}

.copilot-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1100px;
}

.copilot-faq__intro p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--copilot-copy);
  font-size: 16px;
  line-height: 1.65;
}

.copilot-accordion--faq {
  display: grid;
  gap: 14px;
}

.copilot-accordion--faq article {
  padding: 0 20px;
  border: 1.261px solid #dde3ff;
  border-radius: 18px;
  background: #fff;
}

.copilot-accordion--faq article:first-child {
  border-top: 1.261px solid #dde3ff;
}

.copilot-accordion--faq button {
  gap: 16px;
  padding: 19px 2px;
}

.copilot-accordion--faq button span {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
}

.copilot-accordion--faq button i {
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  height: 9px;
  color: var(--copilot-blue);
  font-size: 0;
  font-style: normal;
  transition: transform 250ms ease;
}

.copilot-accordion--faq button i::before,
.copilot-accordion--faq button i::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #1949d8;
}

.copilot-accordion--faq button i::before {
  left: 0;
  transform: rotate(45deg);
}

.copilot-accordion--faq button i::after {
  right: 0;
  transform: rotate(-45deg);
}

.copilot-accordion--faq .is-open button i {
  transform: rotate(180deg);
}

.copilot-accordion--faq .copilot-accordion__answer p {
  margin: 0 2px 19px;
  color: var(--copilot-copy);
  font-size: 15.5px;
  line-height: 1.65;
}

.copilot-final-cta {
  padding: 0 0 clamp(64px, 7vw, 96px);
}

.copilot-final-cta__panel {
  padding: clamp(44px, 6vw, 86px) clamp(24px, 4vw, 64px);
  border-radius: 32px;
  background: linear-gradient(135deg, #101128, #1e2a6b 45%, var(--copilot-blue));
  box-shadow: 0 40px 80px -50px rgba(16, 20, 60, 0.9);
  text-align: center;
}

.copilot-final-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(27px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.copilot-final-cta__panel > p {
  max-width: 480px;
  margin: 18px auto 0;
  color: #c9cff3;
  font-size: 17px;
  line-height: 1.6;
}

.copilot-final-cta .copilot-actions {
  margin-top: 30px;
}

@keyframes copilot-fill {
  0% { transform: scaleX(0.14); }
  60%, 100% { transform: scaleX(1); }
}

body.copilot-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.copilot-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .copilot-step-grid {
    gap: 18px;
  }

  .copilot-step-card__visual {
    min-height: 178px;
    padding: 18px;
  }

  .copilot-workflow {
    gap: 9px;
  }

  .copilot-workflow article {
    padding-inline: 12px;
  }

  .copilot-arrow {
    flex-basis: 22px;
    width: 22px;
  }

  .copilot-arrow::before { width: 18px; }
  .copilot-arrow::after { right: 1px; }
}

@media (max-width: 860px) {
  .copilot-header-spacer {
    height: 68px;
  }

  .copilot-metrics__band,
  .copilot-outcomes__grid,
  .copilot-step-grid {
    grid-template-columns: 1fr;
  }

  .copilot-metrics__band {
    gap: 0;
  }

  .copilot-metric {
    padding: 28px 0;
  }

  .copilot-metric:first-child { padding-top: 0; }
  .copilot-metric:last-child { padding-bottom: 0; }

  .copilot-metric + .copilot-metric {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .copilot-outcomes__grid {
    gap: 26px;
  }

  .copilot-step-grid {
    max-width: 620px;
    margin-inline: auto;
    margin-top: 38px;
  }

  .copilot-step-card__visual {
    min-height: 0;
  }

  .copilot-capability,
  .copilot-why__grid,
  .copilot-faq__grid {
    grid-template-columns: 1fr;
  }

  .copilot-capability--reverse .copilot-capability__copy {
    order: 2;
  }

  .copilot-capability--reverse .copilot-capability__visual {
    order: 1;
  }

  .copilot-capability__copy > p {
    max-width: 620px;
  }

  .copilot-why__grid {
    max-width: 680px;
  }

  .copilot-workflow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin-inline: auto;
    margin-top: 38px;
  }

  .copilot-workflow article {
    width: 100%;
    height: 100%;
  }

  .copilot-workflow .copilot-arrow {
    display: none;
  }

  .copilot-faq__grid {
    gap: 38px;
  }

}

@media (max-width: 620px) {
  .copilot-container,
  .copilot-container--narrow,
  .copilot-container--workflow {
    width: min(100% - 32px, 1200px);
  }

  .copilot-hero {
    padding-top: 52px;
  }

  .copilot-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.06;
  }

  .copilot-pill--outline {
    max-width: 100%;
    font-size: 12.5px;
  }

  .copilot-actions {
    flex-direction: column;
  }

  .copilot-button {
    width: 100%;
    padding-inline: 22px;
  }

  .copilot-button--compact {
    width: auto;
  }

  .copilot-metrics__band,
  .copilot-problem__panel,
  .copilot-final-cta__panel {
    border-radius: 24px;
  }

  .copilot-problem h2,
  .copilot-final-cta h2 {
    font-size: 30px;
  }

  .copilot-outcome {
    gap: 12px;
  }

  .copilot-capability {
    gap: 28px;
  }

  .copilot-capability__visual,
  .copilot-deal-visual {
    margin-inline: -2px;
    border-radius: 20px;
  }

  .copilot-capability__copy h2,
  .copilot-section-heading h2,
  .copilot-faq__intro h2 {
    font-size: 28px;
  }

  .copilot-capability__copy > p {
    font-size: 15.5px;
  }

  .copilot-chat p {
    max-width: 88%;
  }

  .copilot-table-wrap {
    margin-inline: -4px;
  }

  .copilot-workflow {
    display: flex;
    flex-direction: column;
    max-width: 360px;
  }

  .copilot-workflow article,
  .copilot-workflow .copilot-workflow__salesman {
    flex: none;
    width: 100%;
  }

  .copilot-arrow {
    flex: 0 0 28px;
    transform: rotate(90deg);
  }

  .copilot-workflow .copilot-arrow {
    display: block;
  }

  .copilot-accordion--why button span {
    font-size: 16px;
  }

  .copilot-accordion--faq article {
    padding-inline: 16px;
    border-radius: 16px;
  }
}

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

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

  body.copilot-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
