:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f2f6ff;
  --surface-elevated: #f8faff;
  --ink: #0f1830;
  --ink-muted: #4b5d80;
  --line: #d6e2f8;
  --brand: #2f84e3;
  --brand-dark: #1f64ae;
  --chip-1: #6b58e9;
  --chip-2: #2f84e3;
  --chip-3: #40b9c7;
  --chip-4: #f06095;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 9px;
  --shadow-soft: 0 14px 36px rgba(30, 58, 103, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1500px 860px at 85% -8%, #e9f4ff 0%, transparent 64%),
    radial-gradient(1100px 860px at 10% 98%, #f9ecff 0%, transparent 68%), var(--bg);
  line-height: 1.45;
}

h1,
h2,
h3,
h4,
.button,
.brand {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
}

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

.container {
  width: min(1160px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(80, 126, 201, 0.16);
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.88rem;
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 5.2rem;
  height: 5.2rem;
  flex: none;
  display: block;
}

.brand-mark--lockup {
  width: clamp(10rem, 18vw, 12rem);
  height: 3.4rem;
}

.brand-wordmark {
  display: block;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}

nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 1.9rem;
  min-width: 0;
  flex-wrap: nowrap;
}

nav a {
  font-size: 0.8rem;
  color: #33496f;
  font-weight: 600;
  white-space: nowrap;
}

nav a:hover,
nav a:focus-visible {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 39px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 132, 227, 0.24);
}

.button--ghost {
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(47, 132, 227, 0.34);
}

.text-link {
  color: #385786;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(56, 87, 134, 0.35);
  text-underline-offset: 0.22em;
}

.text-link:hover,
.text-link:focus-visible {
  color: #224975;
}

.text-link--small {
  font-size: 0.82rem;
}

main {
  display: grid;
  gap: 4rem;
  padding: 2rem 0 4rem;
}

.hero {
  padding-top: 1.8rem;
}

button.button {
  cursor: pointer;
  font-family: inherit;
}

.tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  min-height: 0;
  box-sizing: border-box;
  background: rgba(15, 24, 48, 0.48);
  backdrop-filter: blur(6px);
}

.tour-overlay[hidden] {
  display: none !important;
}

.tour-overlay__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(80, 126, 201, 0.12);
}

.tour-overlay__chrome {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 251, 0.96);
  backdrop-filter: blur(8px);
}

.tour-overlay__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.tour-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(47, 132, 227, 0.22);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.tour-overlay__close:hover,
.tour-overlay__close:focus-visible {
  background: var(--surface-soft);
  border-color: rgba(47, 132, 227, 0.4);
}

.tour-overlay__frame {
  flex: 1;
  min-height: 0;
  width: 100%;
  border: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 1.2rem;
  align-items: start;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  color: #5575a5;
  font-weight: 700;
}

.hero-copy h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.25rem, 5.1vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 14ch;
  min-height: 2.7em;
}

.headline-gradient {
  color: #de4f8f;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .headline-gradient {
    background-image: linear-gradient(95deg, #6b58e9 0%, #2f84e3 48%, #40b9c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.hero-subtitle {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.62rem;
}

.proof-chips {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
  min-height: 74px;
}

.proof-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 0.7rem 0.75rem;
}

.proof-chip strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.1;
}

.proof-chip span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.brief-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 246, 255, 0.94) 100%);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.brief-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  border-bottom: 1px solid #dce7fb;
  padding-bottom: 0.65rem;
}

.brief-card__header h2 {
  font-size: 1.2rem;
}

.brief-card__header p {
  margin: 0;
  color: #5f769c;
  font-size: 0.8rem;
  font-weight: 700;
}

.brief-priorities {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.58rem;
  min-height: 350px;
}

.brief-item {
  border: 1px solid #d3e2fc;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.68rem;
}

.brief-item__title {
  font-size: 0.95rem;
  font-weight: 800;
}

.brief-item__action {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.brief-item__meta {
  margin-top: 0.46rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.meta-pill {
  border: 1px solid #d5e3fc;
  border-radius: 999px;
  min-height: 26px;
  padding: 0 0.6rem;
  display: inline-flex;
  align-items: center;
  background: var(--surface-elevated);
  color: #3f5d8a;
  font-size: 0.72rem;
  font-weight: 700;
}

.meta-link {
  margin-left: auto;
  border: 1px solid #c5dafb;
  border-radius: 999px;
  min-height: 26px;
  padding: 0 0.62rem;
  display: inline-flex;
  align-items: center;
  color: #244e82;
  background: #eef6ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.brief-card__microcopy {
  margin: 0.78rem 0 0;
  color: #536686;
  font-size: 0.82rem;
  font-weight: 600;
}

.section {
  padding: 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-subhead {
  margin: 0.62rem 0 0;
  color: var(--ink-muted);
  max-width: 72ch;
  font-size: 0.98rem;
  font-weight: 600;
}

.headline-gradient--warm {
  color: #de4d8d;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .headline-gradient--warm {
    background-image: linear-gradient(96deg, #bf32ba 0%, #ea427f 50%, #ff6b52 100%);
  }
}

.insights-loop {
  padding: 2.2rem 0;
  background: linear-gradient(180deg, rgba(240, 243, 250, 0.7) 0%, rgba(242, 245, 251, 0.92) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
}

.insights-shell {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  position: relative;
}

.insights-copy {
  padding-top: 0.2rem;
  padding-right: 0.35rem;
  position: relative;
  z-index: 2;
}

.insights-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 10.8ch;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.insights-kicker {
  margin: 0.8rem 0 0;
  color: #4f5d75;
  font-size: 0.96rem;
  font-weight: 700;
  max-width: 30ch;
}

.loop-ooda {
  margin-top: 1rem;
  border: 1px solid #ccdcf8;
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 14%, rgba(189, 221, 255, 0.4) 0%, rgba(189, 221, 255, 0) 36%),
    linear-gradient(145deg, #ffffff 0%, #f2f7ff 100%);
  padding: 0.72rem;
  box-shadow: 0 12px 28px rgba(70, 102, 166, 0.12);
}

.loop-ooda__eyebrow {
  margin: 0;
  color: #4f6792;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.loop-ooda__title {
  margin-top: 0.24rem;
  font-size: 0.98rem;
  color: #17365f;
}

.loop-ooda__description {
  margin: 0.34rem 0 0;
  color: #4f6487;
  font-size: 0.78rem;
  line-height: 1.42;
}

.loop-ooda__track {
  margin-top: 0.5rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #d8e4fb;
  overflow: hidden;
}

.loop-ooda__fill {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #6b58e9, #ef5f93);
  transition: width 280ms ease;
}

.loop-ooda__phases {
  margin: 0.56rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.loop-ooda__phase {
  border: 1px solid #d5e3fb;
  border-radius: 10px;
  background: #f6faff;
  min-height: 52px;
  padding: 0.42rem 0.46rem;
  display: grid;
  align-content: center;
  gap: 0.14rem;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.loop-ooda__phase::before {
  content: "";
  position: absolute;
  right: 0.42rem;
  top: 0.42rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #9dadcc;
  box-shadow: 0 0 0 0 rgba(95, 111, 231, 0.28);
}

.loop-ooda__phase strong {
  color: #233f67;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.loop-ooda__phase span {
  color: #587099;
  font-size: 0.67rem;
  line-height: 1.35;
}

.loop-ooda__phase.is-active {
  border-color: #8eb9f1;
  box-shadow: 0 10px 24px rgba(78, 109, 172, 0.18);
  transform: translateY(-1px);
}

.loop-ooda__phase.is-active::before {
  background: #5f6fe7;
  animation: oodaPhasePulse 1.6s ease-out infinite;
}

.loop-ooda__phase.is-complete {
  border-color: #a6c9f3;
  background: linear-gradient(135deg, #f1f7ff 0%, #f8f2ff 100%);
}

.loop-steps {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 3.2rem;
}

.loop-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.72rem;
  align-items: start;
  opacity: 0.35;
  transition: opacity 0.28s ease, transform 0.28s ease;
  cursor: pointer;
}

.loop-step__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.loop-step__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7a869a;
  opacity: 0.45;
}

.loop-step h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #6f7583;
}

.loop-step p {
  margin: 0.35rem 0 0;
  color: #9298a4;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.36;
  max-width: 24ch;
}

.loop-step.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.loop-step.is-active .loop-step__dot {
  background: #ebedff;
  border-color: #dce0ff;
}

.loop-step.is-active .loop-step__dot::after {
  background: #5f6fe7;
  opacity: 1;
}

.loop-step.is-active h3 {
  color: #0a1020;
}

.loop-step.is-active p {
  color: #1d2535;
}

.loop-stage {
  position: relative;
  min-height: 1280px;
  padding-top: 1.8rem;
  z-index: 4;
}

.loop-stage__aurora {
  position: absolute;
  inset: 2.4rem -7rem 2rem -2rem;
  border-radius: 84px;
  background:
    radial-gradient(circle at 62% 24%, rgba(146, 223, 224, 0.42) 0%, rgba(146, 223, 224, 0) 42%),
    radial-gradient(circle at 72% 78%, rgba(245, 224, 162, 0.38) 0%, rgba(245, 224, 162, 0) 52%),
    radial-gradient(circle at 36% 58%, rgba(225, 186, 241, 0.42) 0%, rgba(225, 186, 241, 0) 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  filter: blur(4px);
  pointer-events: none;
}

.loop-player {
  position: sticky;
  top: 98px;
  width: min(900px, 100%);
  border: 1px solid #dfe5f2;
  border-radius: 18px;
  background: rgba(253, 254, 255, 0.98);
  box-shadow: 0 26px 60px rgba(71, 89, 129, 0.16);
  overflow: visible;
  z-index: 6;
  transition: transform 200ms ease;
}

.loop-player__header {
  min-height: 44px;
  border-bottom: 1px solid #e8edf6;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loop-player__brand {
  font-size: 1rem;
  color: #262f40;
  line-height: 1;
}

.play-toggle {
  border: 1px solid rgba(41, 139, 229, 0.26);
  border-radius: 999px;
  background: #fff;
  color: #375a8f;
  padding: 0.34rem 0.78rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.play-toggle:hover,
.play-toggle:focus-visible {
  background: #f3f8ff;
}

.loop-player__body {
  padding: 1rem 1.05rem 0.88rem;
  min-height: 420px;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  transition: opacity 200ms ease, transform 200ms ease;
}

.chat-row {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.64rem;
  align-items: start;
}

.chat-row--user {
  margin-left: 0.75rem;
}

.chat-avatar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0;
  border: 1px solid #d4dbec;
}

.chat-avatar--user {
  background: #dec9f0;
}

.chat-avatar--assistant {
  background: linear-gradient(135deg, #f9a85f, #dc73d4);
}

.chat-bubble {
  margin: 0;
  width: fit-content;
  max-width: min(44ch, 100%);
  border: 1px solid #e4e9f5;
  border-radius: 10px;
  background: #f4f7fc;
  padding: 0.48rem 0.62rem;
  color: #303949;
  font-size: 0.81rem;
  font-weight: 600;
}

.chat-assistant h3 {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 700;
  color: #2f3848;
}

.loop-question,
.loop-decision {
  margin: 0.45rem 0 0;
  color: #404b5f;
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: 72ch;
}

.loop-events {
  list-style: none;
  margin: 0.48rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.loop-events li {
  color: #434f65;
  font-size: 0.82rem;
  line-height: 1.45;
}

.loop-decision {
  color: #2d4366;
  font-weight: 700;
}

.loop-player__footer {
  padding: 0 1.05rem 1rem;
  transition: opacity 200ms ease, transform 200ms ease;
}

.loop-player.is-swapping .loop-player__body,
.loop-player.is-swapping .loop-player__footer {
  opacity: 0.64;
  transform: translateY(6px);
}

.chat-input {
  min-height: 42px;
  border: 1px solid #e3e8f4;
  border-radius: 11px;
  padding: 0 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #242f44;
  font-size: 0.82rem;
  font-weight: 600;
}

.chat-send {
  width: 1.05rem;
  height: 1.05rem;
  border: 4px solid #0b1020;
  border-radius: 50%;
  display: block;
}

.chat-sources {
  margin: 0.52rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.chat-sources li {
  position: relative;
  padding-left: 0.72rem;
  color: #5f6c85;
  font-size: 0.73rem;
  font-weight: 600;
}

.chat-sources li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #8f9dbb;
}

.progress {
  margin-top: 0.62rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #dfe7f8;
  overflow: hidden;
}

#loop-progress {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #5e7bf0, #7f7cff, #ec4f86);
  transition: width 4.2s linear;
}

.loop-mascot {
  position: absolute;
  left: -3.8rem;
  bottom: -0.6rem;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at 28% 75%, rgba(104, 220, 224, 0.84), transparent 56%),
    radial-gradient(circle at 76% 22%, rgba(247, 156, 219, 0.88), transparent 54%),
    radial-gradient(circle at 54% 40%, rgba(255, 255, 255, 0.3), transparent 60%),
    linear-gradient(150deg, #4f6ee7 0%, #7887ff 44%, #d266d9 100%);
  box-shadow:
    inset 0 1px 12px rgba(255, 255, 255, 0.34),
    0 18px 34px rgba(110, 104, 188, 0.34),
    0 0 0 8px rgba(131, 150, 255, 0.1);
  z-index: 8;
  transition: transform 220ms ease;
  animation: mascotFloat 5s cubic-bezier(0.38, 0, 0.2, 1) infinite;
}

.loop-mascot::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(140, 163, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(139, 151, 255, 0.1);
  animation: mascotHalo 3.6s ease-in-out infinite;
}

.loop-mascot::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 16px;
  top: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.76);
  animation: mascotSparkle 2.8s ease-in-out infinite;
}

.loop-mascot__face {
  position: relative;
  width: 38px;
  height: 28px;
  display: grid;
  gap: 0.36rem;
  place-items: center;
}

.loop-mascot__visor {
  position: relative;
  width: 32px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16294d 0%, #294877 52%, #192d54 100%);
  border: 1px solid rgba(209, 224, 255, 0.45);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.loop-mascot__visor::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 55%;
  left: -65%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(123, 230, 229, 0), rgba(123, 230, 229, 0.58), rgba(123, 230, 229, 0));
  animation: mascotScan 2.8s ease-in-out infinite;
}

.loop-mascot__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8f2ff;
  box-shadow: 0 0 0 0 rgba(232, 242, 255, 0.52);
  animation: mascotPulseDot 2.7s ease-out infinite;
}

.loop-mascot__label {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(37, 43, 89, 0.45);
}

.feature-showcase {
  padding: 0.4rem 0 0.2rem;
}

.feature-block {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 0.92rem;
  align-items: stretch;
}

.feature-block--secondary {
  margin-top: 0.82rem;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.showcase-video,
.showcase-accordion,
.showcase-orbit {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.showcase-video {
  overflow: hidden;
}

#showcase-loop {
  min-height: 412px;
  display: grid;
}

.showcase-video__chrome {
  min-height: 38px;
  border-bottom: 1px solid #dce7fb;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  padding: 0 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.showcase-video__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #adc5ed;
}

.showcase-video__chrome span:nth-child(1) {
  background: #f093b5;
}

.showcase-video__chrome span:nth-child(2) {
  background: #8ea8df;
}

.showcase-video__chrome span:nth-child(3) {
  background: #8acbcf;
}

.showcase-video__chrome p {
  margin: 0 0 0 auto;
  color: #4b6590;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.showcase-video__layout {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 334px;
}

.showcase-video__rail {
  border-right: 1px solid #dce7fb;
  background: linear-gradient(180deg, #f0f5ff 0%, #e9f1ff 100%);
  padding-top: 0.72rem;
  display: grid;
  grid-auto-rows: 34px;
  justify-content: center;
  gap: 0.34rem;
}

.showcase-video__rail i {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid #cadbf9;
  background: #f8fbff;
  box-shadow: inset 0 1px 3px rgba(99, 134, 190, 0.15);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.showcase-video__rail i.is-active {
  background: linear-gradient(145deg, #e6f0ff, #ffffff);
  border-color: #93b6f4;
  transform: scale(1.06);
}

.showcase-video__pane {
  padding: 0.88rem 0.88rem 0.72rem;
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.showcase-video__mode {
  margin: 0;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  min-height: 26px;
  width: fit-content;
  padding: 0 0.58rem;
  display: inline-flex;
  align-items: center;
  background: #edf5ff;
  color: #2b578f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.showcase-video__question {
  margin: 0;
  border: 1px solid #d8e5fb;
  border-radius: 11px;
  background: #f6f9ff;
  padding: 0.56rem 0.62rem;
  color: #1f3355;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 3.3em;
}

.showcase-video__summary {
  margin: 0;
  color: #445d84;
  font-size: 0.86rem;
  line-height: 1.45;
  min-height: 4.2em;
}

.showcase-video__chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.showcase-video__chips li {
  border: 1px solid #d2e2fd;
  border-radius: 999px;
  min-height: 26px;
  padding: 0 0.56rem;
  display: inline-flex;
  align-items: center;
  background: #f4f9ff;
  color: #365b8f;
  font-size: 0.73rem;
  font-weight: 700;
}

.showcase-video__bars {
  margin-top: 0.12rem;
  display: grid;
  gap: 0.34rem;
}

.showcase-video__bars div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 0.44rem;
}

.showcase-video__bars span {
  color: #3f5d86;
  font-size: 0.75rem;
  font-weight: 700;
}

.showcase-video__bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #d9e6fc;
  overflow: hidden;
}

.showcase-video__bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  width: 0;
  background: linear-gradient(90deg, #2f84e3 0%, #6f73e9 54%, #ef5f93 100%);
  transition: width 0.42s ease;
}

.showcase-video__footer {
  border-top: 1px solid #dce7fb;
  padding: 0.58rem 0.88rem 0.48rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.showcase-video__footer p {
  margin: 0;
  color: #567198;
  font-size: 0.72rem;
  font-weight: 700;
}

.showcase-video__dots {
  display: flex;
  align-items: center;
  gap: 0.24rem;
}

.showcase-video__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b6caea;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.showcase-video__dot.is-active {
  background: #416cb5;
  transform: scale(1.12);
}

.showcase-video__progress {
  height: 3px;
  background: #dce8fb;
  overflow: hidden;
}

#showcase-reel-progress {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2f84e3, #6f73e9, #ef5f93);
}

.showcase-accordion {
  padding: 0.88rem;
}

.showcase-accordion__title {
  font-size: 1.25rem;
  line-height: 1.2;
}

.showcase-accordion__intro {
  margin: 0.48rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.showcase-accordion__list {
  margin-top: 0.65rem;
}

.showcase-item + .showcase-item {
  border-top: 1px solid #d7e3f9;
}

.showcase-item__trigger {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0.64rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
  color: #253f67;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.showcase-item__trigger i {
  width: 11px;
  height: 11px;
  border-right: 1.6px solid #56749f;
  border-bottom: 1.6px solid #56749f;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.showcase-item.is-active .showcase-item__trigger i {
  transform: rotate(-135deg);
}

.showcase-item__panel {
  padding: 0 0 0.7rem;
}

.showcase-item__panel p {
  margin: 0;
  color: #475e83;
  font-size: 0.88rem;
  line-height: 1.44;
  max-width: 44ch;
}

.showcase-orbit {
  min-height: 402px;
  display: grid;
  place-items: center;
  padding: 0.84rem;
  background:
    radial-gradient(circle at 72% 26%, rgba(200, 223, 255, 0.55) 0%, rgba(200, 223, 255, 0) 48%),
    linear-gradient(170deg, #f8fbff 0%, #eef4ff 100%);
}

.showcase-orbit__shell {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1 / 1;
  --orbit-node-radius: 172px;
  display: grid;
  place-items: center;
}

.showcase-orbit__rings,
.showcase-orbit__nodes {
  position: absolute;
  inset: 0;
}

.showcase-orbit__rings span {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(91, 123, 189, 0.38);
}

.showcase-orbit__rings span:nth-child(1) {
  width: 100%;
  height: 100%;
}

.showcase-orbit__rings span:nth-child(2) {
  width: 76%;
  height: 76%;
}

.showcase-orbit__rings span:nth-child(3) {
  width: 52%;
  height: 52%;
}

.showcase-orbit__center {
  width: 44%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #d3e1fa;
  background: radial-gradient(circle at 50% 34%, #ffffff 0%, #edf3ff 100%);
  display: grid;
  place-items: center;
  text-align: center;
  color: #284c7f;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  padding: 0.5rem;
  box-shadow: 0 12px 28px rgba(65, 98, 154, 0.18);
}

.showcase-orbit__nodes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-orbit__nodes li {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--node-angle)) translateY(calc(var(--orbit-node-radius) * -1));
  animation: showcaseOrbitNodeSpin 24s linear infinite;
}

.showcase-orbit__node-pill {
  min-width: 80px;
  border-radius: 999px;
  border: 1px solid #cfe0fb;
  background: #f3f8ff;
  color: #37567f;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  min-height: 29px;
  padding: 0 0.52rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(85, 110, 165, 0.14);
  transform: rotate(var(--node-angle-neg));
  animation: showcaseOrbitLabelCounterSpin 24s linear infinite;
}

.showcase-orbit__nodes li.is-alt .showcase-orbit__node-pill {
  background: #fff0f7;
  border-color: #f0bfd5;
  color: #84446f;
}

.risk-horizon-loop {
  padding: 0.35rem 0 0.15rem;
}

.risk-horizon-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.82rem;
  align-items: start;
}

.risk-video,
.risk-horizon-brief {
  border: 1px solid #ddd9cf;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.risk-video {
  background: linear-gradient(180deg, #f7f5ef 0%, #f2efe8 100%);
  overflow: hidden;
}

#risk-horizon-loop-player {
  min-height: 620px;
}

.risk-loop-player {
  padding: 0.76rem;
  display: grid;
  align-content: start;
  gap: 0.66rem;
}

.risk-loop__header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.risk-loop__scene {
  margin: 0;
  color: #203546;
  font-size: 1.03rem;
  font-weight: 800;
}

.risk-loop__timestamp {
  border: 1px solid #d8d4ca;
  border-radius: 999px;
  min-height: 25px;
  padding: 0 0.56rem;
  display: inline-flex;
  align-items: center;
  background: #ece8de;
  color: #4c6274;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.risk-loop__narrative {
  margin: 0;
  border: 1px solid #d9d5cb;
  border-radius: 12px;
  background: #f2efe8;
  padding: 0.62rem 0.68rem;
  color: #2f485d;
  font-size: 0.93rem;
  line-height: 1.42;
  min-height: 6.3em;
  transition: opacity 180ms ease, transform 180ms ease;
}

.risk-loop__kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.risk-kpi {
  border: 1px solid #d9d5cb;
  border-radius: 12px;
  background: #ece8de;
  padding: 0.52rem;
  display: grid;
  gap: 0.3rem;
}

.risk-kpi--watch {
  border-color: #e5c59a;
  background: #efe0cc;
}

.risk-kpi__label {
  margin: 0;
  color: #476276;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-kpi__status {
  width: fit-content;
  border-radius: 999px;
  min-height: 21px;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.risk-kpi--ok .risk-kpi__status {
  background: #c8ddd2;
  color: #2f6a58;
}

.risk-kpi--watch .risk-kpi__status {
  background: #efcc97;
  color: #7c5320;
}

.risk-kpi__value {
  color: #173041;
  font-size: 1.46rem;
  line-height: 1;
}

.risk-loop__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.54rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.risk-loop__domains,
.risk-loop__watchlist {
  border: 1px solid #ddd9cf;
  border-radius: 14px;
  background: #f8f6f1;
  padding: 0.58rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.risk-loop__panel-title {
  margin: 0;
  color: #203546;
  font-size: 0.96rem;
}

.risk-domain-card {
  border: 1px solid #d8d5cb;
  border-radius: 10px;
  background: #f0ede7;
  padding: 0.46rem;
  display: grid;
  gap: 0.24rem;
}

.risk-domain-card--watch {
  border-color: #e4bf90;
  background: #efdfcc;
}

.risk-domain-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
}

.risk-domain-card__head h5 {
  margin: 0;
  color: #21394c;
  font-size: 0.82rem;
}

.risk-domain-card__head span {
  border: 1px solid #d7d4ca;
  border-radius: 999px;
  min-height: 21px;
  padding: 0 0.48rem;
  display: inline-flex;
  align-items: center;
  background: #ebe8df;
  color: #526879;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.risk-domain-card__metric {
  margin: 0;
  color: #4f6679;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.risk-domain-card__value {
  color: #142c3e;
  font-size: 1.32rem;
  line-height: 1;
}

.risk-domain-card__state {
  width: fit-content;
  border-radius: 999px;
  min-height: 20px;
  padding: 0 0.46rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.risk-domain-card__state--ok {
  background: #c8ddd2;
  color: #2f6a58;
}

.risk-domain-card__state--watch {
  background: #efcc97;
  color: #7c5320;
}

.risk-domain-card__meter {
  height: 0.28rem;
  border-radius: 999px;
  background: #d3d1cb;
  overflow: hidden;
}

.risk-domain-card__meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f9e9f, #3c7f8d);
  transition: width 0.4s ease;
}

.risk-watch-item {
  border: 1px solid #d8d5cb;
  border-radius: 11px;
  background: #efede7;
  padding: 0.5rem;
}

.risk-watch-item--watch {
  border-color: #e4bf90;
  background: #efe0cd;
}

.risk-watch-item h5 {
  margin: 0;
  color: #1d3446;
  font-size: 1.02rem;
  line-height: 1.15;
}

.risk-watch-item p {
  margin: 0.3rem 0 0;
  color: #4f6679;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.risk-loop__footer {
  border-top: 1px solid #ddd9cf;
  padding-top: 0.52rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.risk-loop__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.risk-loop__tags li {
  border: 1px solid #d7d4ca;
  border-radius: 999px;
  min-height: 22px;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  background: #f1eee7;
  color: #4a6073;
  font-size: 0.66rem;
  font-weight: 700;
}

.risk-loop__dots {
  display: flex;
  gap: 0.24rem;
  align-items: center;
}

.risk-loop__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #b9becc;
  padding: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.risk-loop__dot.is-active {
  background: #4f6f9f;
  transform: scale(1.14);
}

.risk-loop__progress {
  height: 3px;
  border-radius: 999px;
  background: #d9d4ca;
  overflow: hidden;
}

#risk-loop-progress {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #5c87bb, #4f9e9f);
}

.risk-loop-player.is-swapping .risk-loop__narrative,
.risk-loop-player.is-swapping .risk-loop__kpi-grid,
.risk-loop-player.is-swapping .risk-loop__body {
  opacity: 0.6;
  transform: translateY(4px);
}

.risk-horizon-brief {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
  padding: 0.84rem;
  display: grid;
  align-content: start;
  gap: 0.68rem;
}

.risk-horizon-brief__title {
  margin: 0;
  color: #21394c;
  font-size: 1.02rem;
}

.risk-horizon-brief__list {
  display: grid;
  gap: 0.46rem;
}

.risk-horizon-step {
  border: 1px solid #ddd9cf;
  border-radius: 12px;
  background: #f4f1ea;
  text-align: left;
  font: inherit;
  cursor: pointer;
  padding: 0.6rem;
  display: grid;
  gap: 0.24rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.risk-horizon-step strong {
  color: #21394c;
  font-size: 0.93rem;
}

.risk-horizon-step span {
  color: #51687b;
  font-size: 0.8rem;
  line-height: 1.35;
}

.risk-horizon-step.is-active {
  border-color: #9cb4d6;
  background: #eef3fb;
}

.roles .container,
.proof .container,
.trust .container {
  position: relative;
}

.roles .container::before,
.proof .container::before,
.trust .container::before {
  content: "";
  position: absolute;
  right: 0;
  top: -12px;
  width: 240px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(196, 219, 255, 0.45) 0%, rgba(196, 219, 255, 0) 68%);
  pointer-events: none;
  z-index: -1;
}

.section-progress {
  margin-top: 0.92rem;
  border: 1px solid #c8dcfa;
  border-radius: 14px;
  background: linear-gradient(140deg, #ffffff 0%, #eef5ff 100%);
  padding: 0.66rem 0.72rem 0.62rem;
  box-shadow: 0 12px 26px rgba(84, 114, 176, 0.12);
}

.section-progress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
}

.section-progress__head p {
  margin: 0;
  color: #4e6892;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-progress__head strong {
  border: 1px solid #c9ddfb;
  border-radius: 999px;
  min-height: 23px;
  padding: 0 0.56rem;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(115deg, #eaf5ff 0%, #f1ecff 62%, #ffeef7 100%);
  color: #2f5388;
  font-size: 0.72rem;
  font-weight: 700;
}

.section-progress__track {
  margin-top: 0.5rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #d8e4fb;
  position: relative;
  overflow: visible;
}

#roles-progress-fill,
#proof-progress-fill,
#security-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
}

#roles-progress-fill {
  background: linear-gradient(90deg, #2f84e3 0%, #6b58e9 50%, #ef5f93 100%);
}

#proof-progress-fill {
  background: linear-gradient(90deg, #2f84e3 0%, #40b9c7 44%, #6b58e9 100%);
}

#security-progress-fill {
  background: linear-gradient(90deg, #2f84e3 0%, #6b58e9 48%, #40b9c7 100%);
}

#roles-progress-dot,
#proof-progress-dot,
#security-progress-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(111, 130, 236, 0.2), 0 6px 16px rgba(67, 94, 165, 0.24);
}

#roles-progress-dot {
  background: linear-gradient(145deg, #2f84e3, #6b58e9);
}

#proof-progress-dot {
  background: linear-gradient(145deg, #2f84e3, #40b9c7);
}

#security-progress-dot {
  background: linear-gradient(145deg, #6b58e9, #40b9c7);
}

.section-progress__milestones {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--milestone-count, 5), minmax(0, 1fr));
  gap: 0.2rem;
}

.section-progress__milestones li {
  color: #5d769d;
  font-size: 0.66rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.role-tabs {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.role-tab {
  border: 1px solid #cddcf7;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  color: #36527d;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.role-tab[aria-selected="true"] {
  background: linear-gradient(115deg, #e9f4ff 0%, #efe9ff 48%, #ffeaf4 100%);
  border-color: #8ab8f3;
  color: #1d4b80;
  box-shadow: 0 10px 22px rgba(86, 119, 198, 0.16);
}

.role-tab:hover {
  transform: translateY(-1px);
}

.role-panel {
  position: relative;
  margin-top: 0.95rem;
  border: 1px solid #c7daf7;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 16%, rgba(130, 211, 228, 0.2) 0%, rgba(130, 211, 228, 0) 34%),
    radial-gradient(circle at 14% 84%, rgba(236, 169, 230, 0.18) 0%, rgba(236, 169, 230, 0) 42%),
    linear-gradient(160deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 16px 36px rgba(70, 102, 166, 0.14);
  padding: 1rem;
  overflow: hidden;
}

.role-panel::after {
  content: "";
  position: absolute;
  inset: -28% 42% auto -20%;
  height: 58%;
  background: radial-gradient(circle, rgba(182, 207, 250, 0.42) 0%, rgba(182, 207, 250, 0) 74%);
  pointer-events: none;
}

.role-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.78rem;
}

.role-panel__content {
  min-width: 0;
}

.role-panel__label {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5876a5;
  font-weight: 700;
}

.role-panel h3 {
  margin-top: 0.42rem;
  font-size: 1.23rem;
  position: relative;
  z-index: 1;
}

.role-panel ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.role-panel li {
  margin-bottom: 0.32rem;
  color: #2f4568;
  font-size: 0.95rem;
}

.role-outcome {
  margin: 0.7rem 0 0;
  border: 1px solid #c7dffb;
  border-radius: var(--radius-sm);
  background: linear-gradient(110deg, #edf6ff 0%, #f6eeff 52%, #fff2f8 100%);
  padding: 0.66rem;
  color: #224a7f;
  font-size: 0.9rem;
  font-weight: 700;
}

.role-visual {
  border: 1px solid #cadcf9;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 84% 14%, rgba(164, 214, 255, 0.34) 0%, rgba(164, 214, 255, 0) 36%),
    linear-gradient(165deg, #f9fbff 0%, #f4f7ff 54%, #ffffff 100%);
  padding: 0.72rem;
  display: grid;
  gap: 0.62rem;
  position: relative;
  overflow: hidden;
}

.role-visual__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.role-visual__title {
  font-size: 0.9rem;
}

.role-visual__tag {
  border: 1px solid #cfe2ff;
  border-radius: 999px;
  min-height: 24px;
  padding: 0 0.54rem;
  display: inline-flex;
  align-items: center;
  background: #ecf5ff;
  color: #315e95;
  font-size: 0.7rem;
  font-weight: 700;
}

.role-visual__bars {
  display: grid;
  gap: 0.42rem;
  position: relative;
  z-index: 1;
}

.role-visual__bar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 0.45rem;
}

.role-visual__bar span {
  color: #3f5a83;
  font-size: 0.75rem;
  font-weight: 700;
}

.role-visual__bar i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #d9e5fb;
  overflow: hidden;
}

.role-visual__bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #6f73e9 50%, #ef5f93 100%);
  transition: width 0.34s ease;
}

.role-visual__pulse {
  margin-top: 0.2rem;
  height: 2rem;
  display: flex;
  align-items: end;
  gap: 0.22rem;
}

.role-visual__pulse span {
  width: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #6b58e9 0%, #2f84e3 54%, #40b9c7 100%);
  animation: visualPulse 2.4s ease-in-out infinite;
}

.role-visual__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.role-visual__chips span {
  border: 1px solid #d4e3fb;
  border-radius: 999px;
  min-height: 24px;
  padding: 0 0.52rem;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #47648f;
  font-size: 0.7rem;
  font-weight: 700;
}

.role-visual[data-role="ceo"] .role-visual__tag {
  background: #e8f3ff;
}

.role-visual[data-role="cfo"] .role-visual__tag {
  background: #efeaff;
}

.role-visual[data-role="coo"] .role-visual__tag {
  background: #e9fbf8;
}

.role-visual[data-role="cio"] .role-visual__tag {
  background: #f3f5ff;
}

.role-visual[data-role="cro"] .role-visual__tag,
.role-visual[data-role="ciso"] .role-visual__tag {
  background: #fff0f6;
}

.proof-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.proof-card {
  border: 1px solid #cadcf9;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 14%, rgba(186, 223, 255, 0.34) 0%, rgba(186, 223, 255, 0) 36%),
    linear-gradient(165deg, #ffffff 0%, #f5f8ff 100%);
  padding: 0.9rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 30px rgba(81, 112, 176, 0.14);
}

.proof-card.is-active {
  border-color: #8fbaf2;
  box-shadow: 0 18px 36px rgba(76, 109, 176, 0.22);
}

.proof-card.is-complete {
  border-color: #9fc7f5;
}

.proof-card__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.5rem;
}

.proof-card__icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: inline-flex;
  border: 1px solid #d6e2fb;
}

.proof-card__icon--1 {
  background: linear-gradient(140deg, rgba(47, 132, 227, 0.22), rgba(64, 185, 199, 0.35));
}

.proof-card__icon--2 {
  background: linear-gradient(140deg, rgba(107, 88, 233, 0.24), rgba(47, 132, 227, 0.3));
}

.proof-card__icon--3 {
  background: linear-gradient(140deg, rgba(240, 96, 149, 0.25), rgba(107, 88, 233, 0.26));
}

.proof-card__spark {
  display: flex;
  align-items: end;
  gap: 0.18rem;
  height: 1.6rem;
}

.proof-card__spark span {
  width: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c72eb, #2f84e3);
  animation: proofSpark 2.7s ease-in-out infinite;
}

.proof-card__metric {
  font-size: 1.7rem;
  line-height: 1;
  color: #163f73;
}

.proof-card__title {
  margin-top: 0.35rem;
  font-size: 1.03rem;
}

.proof-card__detail {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.proof-card__trend {
  margin: 0.55rem 0 0;
  color: #40608d;
  font-size: 0.78rem;
  font-weight: 700;
}

.proof-card__mini {
  margin-top: 0.62rem;
  height: 2rem;
  display: flex;
  align-items: end;
  gap: 0.2rem;
}

.proof-card__mini span {
  width: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(111, 115, 233, 0.82), rgba(47, 132, 227, 0.82));
  animation: proofSpark 2.5s ease-in-out infinite;
}

.proof-card__progress {
  margin-top: 0.58rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #dbe8fb;
  overflow: hidden;
}

.proof-card__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #6b58e9, #ef5f93);
  transition: width 0.34s ease;
}

.proof-card--1 {
  background:
    radial-gradient(circle at 88% 12%, rgba(165, 221, 237, 0.42) 0%, rgba(165, 221, 237, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f4faff 100%);
}

.proof-card--2 {
  background:
    radial-gradient(circle at 88% 12%, rgba(196, 190, 250, 0.4) 0%, rgba(196, 190, 250, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #f6f6ff 100%);
}

.proof-card--3 {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 194, 223, 0.38) 0%, rgba(247, 194, 223, 0) 38%),
    linear-gradient(165deg, #ffffff 0%, #fff6fb 100%);
}

.testimonials {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.testimonial {
  border: 1px solid #cadcf9;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #ffffff 0%, #f6f9ff 100%);
  padding: 0.95rem;
  position: relative;
  overflow: hidden;
}

.testimonial.is-active {
  border-color: #8fb9f0;
  box-shadow: 0 15px 32px rgba(75, 106, 170, 0.18);
}

.testimonial.is-complete {
  border-color: #9ec5f2;
}

.testimonial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2f84e3, #6f73e9, #ef5f93);
}

.testimonial--2::before {
  background: linear-gradient(180deg, #40b9c7, #2f84e3, #6b58e9);
}

.testimonial blockquote {
  margin: 0;
  color: #213b60;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.testimonial__meta {
  margin-top: 0.62rem;
  color: #597198;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.58rem;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.8rem;
  position: relative;
}

.trust-item__title {
  font-size: 0.96rem;
  padding-left: 1.9rem;
}

.trust-item__desc {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  min-height: 3.1em;
}

.trust-item__icon {
  position: absolute;
  left: 0.8rem;
  top: 0.86rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
}

.trust-item__icon--1 {
  background: linear-gradient(145deg, #2f84e3, #40b9c7);
}

.trust-item__icon--2 {
  background: linear-gradient(145deg, #6b58e9, #2f84e3);
}

.trust-item__icon--3 {
  background: linear-gradient(145deg, #f06095, #6b58e9);
}

.trust-item__icon--4 {
  background: linear-gradient(145deg, #40b9c7, #2f84e3);
}

.trust-item__meter {
  margin-top: 0.62rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #dde8fb;
  overflow: hidden;
}

.trust-item__meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #7c72eb);
}

.security-compliance {
  position: relative;
  padding: 2rem 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(190, 215, 255, 0.38) 0%, rgba(190, 215, 255, 0) 36%),
    radial-gradient(circle at 86% 85%, rgba(215, 196, 255, 0.3) 0%, rgba(215, 196, 255, 0) 34%),
    linear-gradient(180deg, #f8faff 0%, #f4f7fc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.security-compliance::before {
  content: "";
  position: absolute;
  inset: 4% auto auto -8%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 220, 223, 0.24) 0%, rgba(130, 220, 223, 0) 70%);
  pointer-events: none;
}

.security-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.7rem;
}

.security-certifications,
.security-controls {
  border: 1px solid #c9dbf8;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 14%, rgba(184, 219, 255, 0.26) 0%, rgba(184, 219, 255, 0) 40%),
    #fff;
  padding: 0.82rem;
  box-shadow: 0 14px 30px rgba(80, 111, 176, 0.13);
}

.security-certifications h3,
.security-controls h3 {
  margin: 0;
  color: #1f3a60;
  font-size: 1rem;
}

.security-cert-grid,
.security-control-grid {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.46rem;
}

.security-cert {
  border: 1px solid #cddffb;
  border-radius: 12px;
  background: linear-gradient(150deg, #f9fbff 0%, #f3f8ff 100%);
  padding: 0.58rem;
  display: grid;
  gap: 0.3rem;
  position: relative;
  overflow: hidden;
}

.security-cert.is-active {
  border-color: #8fb9f0;
  box-shadow: 0 14px 30px rgba(75, 106, 170, 0.2);
}

.security-cert.is-complete {
  border-color: #9ec5f2;
}

.security-cert--watch {
  border-color: #e3c090;
  background: linear-gradient(150deg, #fcf6eb 0%, #f7efe0 100%);
}

.security-cert__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.45rem;
  align-items: center;
}

.security-cert__icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 1px solid #c9ddfb;
  background: linear-gradient(145deg, #ebf5ff, #ffffff);
  box-shadow: inset 0 1px 4px rgba(124, 149, 202, 0.26);
}

.security-cert--1 .security-cert__icon {
  background: linear-gradient(145deg, #e8f5ff, #e8fff9);
}

.security-cert--2 .security-cert__icon {
  background: linear-gradient(145deg, #efe7ff, #eaf2ff);
}

.security-cert--3 .security-cert__icon {
  background: linear-gradient(145deg, #ffe9f4, #fff2e6);
}

.security-cert h4 {
  margin: 0;
  color: #1f3a60;
  font-size: 0.92rem;
}

.security-cert__status {
  width: fit-content;
  border-radius: 999px;
  min-height: 22px;
  padding: 0 0.48rem;
  display: inline-flex;
  align-items: center;
  background: #e9f2ff;
  color: #355f95;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-cert--watch .security-cert__status {
  background: #f1e1c9;
  color: #825727;
}

.security-cert p {
  margin: 0;
  color: #4d6388;
  font-size: 0.82rem;
  line-height: 1.4;
}

.security-control {
  border: 1px solid #cddffb;
  border-radius: 12px;
  background: linear-gradient(145deg, #f9fbff 0%, #f4f8ff 100%);
  padding: 0.58rem;
  display: grid;
  gap: 0.3rem;
}

.security-control.is-active {
  border-color: #8fb9f0;
  box-shadow: 0 14px 30px rgba(75, 106, 170, 0.18);
}

.security-control.is-complete {
  border-color: #9ec5f2;
}

.security-control__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.security-control__head h4 {
  margin: 0;
  color: #1f3a60;
  font-size: 0.91rem;
}

.security-control__head span {
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  min-height: 22px;
  padding: 0 0.48rem;
  display: inline-flex;
  align-items: center;
  background: #ecf4ff;
  color: #2f5d95;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-control p {
  margin: 0;
  color: #4d6388;
  font-size: 0.82rem;
  line-height: 1.4;
}

.security-control__coverage {
  color: #476791;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.security-control__meter {
  height: 0.35rem;
  border-radius: 999px;
  background: #dbe7fb;
  overflow: hidden;
}

.security-control__meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #40b9c7);
  transition: width 0.36s ease;
}

.security-control--1 .security-control__meter span {
  background: linear-gradient(90deg, #2f84e3, #40b9c7);
}

.security-control--2 .security-control__meter span {
  background: linear-gradient(90deg, #6b58e9, #2f84e3);
}

.security-control--3 .security-control__meter span {
  background: linear-gradient(90deg, #ef5f93, #6b58e9);
}

.security-control--4 .security-control__meter span {
  background: linear-gradient(90deg, #40b9c7, #2f84e3);
}

.compliance-runbook {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.compliance-step {
  position: relative;
  border: 1px solid #d8e4fa;
  border-radius: 12px;
  background: linear-gradient(150deg, #ffffff 0%, #f5f8ff 100%);
  padding: 0.62rem;
  display: grid;
  gap: 0.3rem;
  overflow: hidden;
}

.compliance-step.is-active {
  border-color: #8eb8ef;
  box-shadow: 0 14px 28px rgba(76, 109, 176, 0.18);
}

.compliance-step.is-complete {
  border-color: #9ec5f2;
}

.compliance-step__index {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7f1ff;
  color: #2f5d95;
  font-size: 0.68rem;
  font-weight: 700;
}

.compliance-step__pulse {
  position: absolute;
  right: 0.56rem;
  top: 0.56rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: #5b7ee6;
  box-shadow: 0 0 0 0 rgba(91, 126, 230, 0.48);
  animation: compliancePulse 2.8s ease-out infinite;
}

.compliance-step--2 .compliance-step__pulse {
  background: #2f84e3;
}

.compliance-step--3 .compliance-step__pulse {
  background: #40b9c7;
}

.compliance-step--4 .compliance-step__pulse {
  background: #ef5f93;
}

.compliance-step h4 {
  margin: 0;
  color: #1f3a60;
  font-size: 0.9rem;
}

.compliance-step p {
  margin: 0;
  color: #4d6388;
  font-size: 0.81rem;
  line-height: 1.38;
}

.pilot {
  position: relative;
  background: linear-gradient(160deg, #f2f7ff 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
  overflow: hidden;
}

.pilot::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto 48%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 218, 255, 0.34) 0%, rgba(177, 218, 255, 0) 72%);
  pointer-events: none;
}

.pilot-progress {
  margin-top: 0.95rem;
  border: 1px solid #c7daf7;
  border-radius: 14px;
  background: linear-gradient(140deg, #ffffff 0%, #eef5ff 100%);
  padding: 0.72rem;
  box-shadow: 0 12px 26px rgba(84, 114, 176, 0.13);
}

.pilot-progress__head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.pilot-progress__head p {
  margin: 0;
  color: #4e6892;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pilot-progress__head strong {
  border: 1px solid #c9ddfb;
  border-radius: 999px;
  min-height: 24px;
  padding: 0 0.6rem;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(115deg, #eaf5ff 0%, #f1ecff 62%, #ffeef7 100%);
  color: #2f5388;
  font-size: 0.75rem;
  font-weight: 700;
}

.pilot-progress__track {
  margin-top: 0.56rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #d8e4fb;
  position: relative;
  overflow: visible;
}

#pilot-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3 0%, #6b58e9 48%, #ef5f93 100%);
  transition: width 0.32s ease;
}

#pilot-progress-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(145deg, #2f84e3, #6b58e9);
  box-shadow: 0 0 0 3px rgba(111, 130, 236, 0.2), 0 6px 16px rgba(67, 94, 165, 0.26);
}

.pilot-progress__milestones {
  margin: 0.54rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.2rem;
}

.pilot-progress__milestones li {
  color: #5d769d;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.pilot-steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.pilot-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff 0%, #f4f8ff 100%);
  padding: 0.72rem;
  display: grid;
  gap: 0.35rem;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(84, 114, 176, 0.12);
}

.pilot-step.is-active {
  border-color: #8ebaf1;
  box-shadow: 0 16px 34px rgba(75, 108, 175, 0.2);
}

.pilot-step.is-complete {
  border-color: #9fc6f4;
}

.pilot-step__glow {
  position: absolute;
  inset: -24% -10% auto auto;
  width: 150px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 218, 255, 0.46) 0%, rgba(179, 218, 255, 0) 74%);
  pointer-events: none;
}

.pilot-step__index {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7f2ff;
  color: #225484;
  font-size: 0.72rem;
  font-weight: 700;
}

.pilot-step__icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid #cde0fc;
  background: #f2f7ff;
  color: #2f5f99;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.pilot-step__title {
  font-size: 0.96rem;
}

.pilot-step__desc {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.pilot-step__visual {
  margin-top: 0.22rem;
  height: 0.36rem;
  border-radius: 999px;
  background: #dce8fb;
  overflow: hidden;
}

.pilot-step__visual span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #7c72eb, #ef5f93);
  animation: pilotBarShift 3.6s ease-in-out infinite;
}

.pilot-step--1 .pilot-step__icon {
  background: #ecf5ff;
}

.pilot-step--2 .pilot-step__icon {
  background: #f1edff;
}

.pilot-step--3 .pilot-step__icon {
  background: #fff0f7;
}

.pilot-cards {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.pilot-card {
  border: 1px solid #cadcf9;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #ffffff 0%, #f5f9ff 100%);
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(84, 114, 176, 0.12);
}

.pilot-card.is-active {
  border-color: #8db9ef;
  box-shadow: 0 16px 34px rgba(75, 108, 175, 0.2);
}

.pilot-card.is-complete {
  border-color: #9dc4f1;
}

.pilot-card h3 {
  font-size: 0.95rem;
}

.pilot-card p {
  margin: 0.32rem 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.pilot-card__spark {
  margin-top: 0.5rem;
  height: 1.45rem;
  display: flex;
  align-items: end;
  gap: 0.16rem;
}

.pilot-card__spark span {
  width: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(111, 115, 233, 0.84), rgba(47, 132, 227, 0.84));
  animation: proofSpark 2.8s ease-in-out infinite;
}

.pilot-card__bar {
  margin-top: 0.48rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #dce8fb;
  overflow: hidden;
}

.pilot-card__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f84e3, #40b9c7, #6b58e9);
}

.pilot-card--2 .pilot-card__bar span {
  background: linear-gradient(90deg, #6b58e9, #2f84e3, #40b9c7);
}

.pilot-card--3 .pilot-card__bar span {
  background: linear-gradient(90deg, #ef5f93, #6b58e9, #2f84e3);
}

.integrations {
  padding-top: 0;
}

.integration-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.integration-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #48658f;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem;
  text-align: center;
}

.final-cta {
  padding-top: 0;
}

.final-cta__inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(125deg, #ebf4ff, #ffffff);
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 2rem 1rem;
}

.final-cta__inner .hero-actions {
  justify-content: center;
  margin-top: 1rem;
}

.final-cta__inner .text-link--small {
  display: inline-block;
  margin-top: 0.75rem;
}

.site-footer {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  background: #f8fbff;
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 1rem;
}

.footer-grid p {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  max-width: 34ch;
  font-size: 0.86rem;
}

.footer-grid h3 {
  font-size: 0.87rem;
  margin-bottom: 0.46rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.3rem;
  color: #3f577e;
  font-size: 0.86rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--brand);
}

.copyright {
  margin: 1.1rem 0 0;
  text-align: center;
  color: #6880a6;
  font-size: 0.8rem;
}

.deploy-version {
  margin: 0.45rem 0 0;
  text-align: center;
  color: #8a9fbe;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.logo-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
}

.logo-widget__toggle,
.logo-widget__close {
  font: inherit;
  cursor: pointer;
}

.logo-widget__toggle {
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(47, 132, 227, 0.28);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.96);
  color: #27466f;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.logo-widget__panel {
  width: min(22rem, calc(100vw - 2rem));
  margin-bottom: 0.7rem;
  padding: 0.9rem;
  border: 1px solid rgba(80, 126, 201, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(248, 251, 255, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.logo-widget__panel[hidden] {
  display: none;
}

.logo-widget__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.logo-widget__eyebrow {
  margin: 0;
  color: #5b6e91;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-widget__header h2 {
  margin-top: 0.18rem;
  font-size: 1rem;
}

.logo-widget__close {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(47, 132, 227, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.15rem;
}

.logo-widget__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  max-height: min(20rem, 48vh);
  overflow: auto;
  padding-right: 0.1rem;
}

.logo-widget__option {
  display: grid;
  justify-items: center;
  gap: 0.24rem;
  min-width: 0;
  min-height: 4.4rem;
  padding: 0.42rem 0.28rem;
  border: 1px solid rgba(80, 126, 201, 0.18);
  border-radius: var(--radius-md);
  background: #fff;
  color: #415579;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.logo-widget__option:hover,
.logo-widget__option:focus-visible {
  border-color: rgba(47, 132, 227, 0.46);
}

.logo-widget__option.is-active {
  border-color: rgba(47, 132, 227, 0.58);
  box-shadow: inset 0 0 0 1px rgba(47, 132, 227, 0.18);
}

.logo-widget__option img {
  width: 1.9rem;
  height: 1.9rem;
}

.logo-widget__option.is-lockup img {
  width: 3.25rem;
}

.logo-widget__option span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-widget__footer {
  margin-top: 0.72rem;
  text-align: right;
}

.logo-widget__footer a {
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

  .hero-grid,
  .proof-grid,
  .trust-grid,
  .pilot-steps,
  .pilot-cards,
  .integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-progress__milestones li {
    font-size: 0.68rem;
  }

  .insights-shell {
    grid-template-columns: 1fr;
  }

  .feature-block,
  .feature-block--secondary {
    grid-template-columns: 1fr;
  }

  .risk-horizon-shell {
    grid-template-columns: 1fr;
  }

  .security-shell,
  .compliance-runbook {
    grid-template-columns: 1fr;
  }

  .loop-steps {
    gap: 1.7rem;
    margin-top: 1.5rem;
  }

  .loop-stage {
    min-height: auto;
    padding-top: 1.2rem;
  }

  .loop-stage__aurora {
    inset: -0.2rem -3rem -1.2rem -2rem;
  }

  .loop-player {
    position: relative;
    top: auto;
  }

  .loop-mascot {
    display: none;
  }

  .showcase-orbit {
    min-height: 340px;
  }

  .showcase-orbit__shell {
    --orbit-node-radius: 146px;
  }

  #risk-horizon-loop-player {
    min-height: 560px;
  }

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

  .risk-loop__body {
    grid-template-columns: 1fr;
  }

  .role-panel__layout {
    grid-template-columns: 1fr;
  }

  .proof-chips,
  .testimonials,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 15ch;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 1rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .brand-mark--lockup {
    width: 8.6rem;
    height: 2.5rem;
  }

  .container {
    width: min(1160px, calc(100% - 1.2rem));
  }

  main {
    gap: 2.8rem;
    padding-top: 1.2rem;
  }

  .hero-grid,
  .proof-grid,
  .testimonials,
  .trust-grid,
  .compliance-runbook,
  .pilot-steps,
  .pilot-cards,
  .integration-grid,
  .proof-chips {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 8.8vw, 3rem);
    max-width: 100%;
  }

  .pilot-progress {
    padding: 0.62rem;
  }

  .section-progress {
    padding: 0.58rem;
  }

  .section-progress__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
  }

  .section-progress__head p,
  .section-progress__head strong {
    font-size: 0.68rem;
  }

  .section-progress__milestones {
    gap: 0.1rem;
  }

  .section-progress__milestones li {
    font-size: 0.6rem;
  }

  .loop-ooda {
    padding: 0.62rem;
  }

  .loop-ooda__phases {
    grid-template-columns: 1fr;
  }

  .pilot-progress__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .pilot-progress__head p {
    font-size: 0.72rem;
  }

  .pilot-progress__head strong {
    font-size: 0.72rem;
  }

  .pilot-progress__milestones {
    gap: 0.1rem;
  }

  .pilot-progress__milestones li {
    font-size: 0.62rem;
  }

  #showcase-loop {
    min-height: 386px;
  }

  .showcase-video__layout {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .showcase-video__pane {
    padding: 0.76rem 0.72rem 0.66rem;
  }

  .showcase-video__bars div {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .showcase-video__chips {
    gap: 0.28rem;
  }

  .showcase-accordion {
    padding: 0.82rem;
  }

  .showcase-accordion__title {
    font-size: 1.1rem;
  }

  .showcase-item__trigger {
    font-size: 0.96rem;
  }

  .showcase-orbit {
    min-height: 292px;
  }

  .showcase-orbit__shell {
    --orbit-node-radius: 118px;
  }

  .showcase-orbit__node-pill {
    min-width: 68px;
    min-height: 24px;
    font-size: 0.62rem;
  }

  #risk-horizon-loop-player {
    min-height: 612px;
  }

  .risk-loop-player {
    padding: 0.66rem;
  }

  .risk-loop__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.26rem;
  }

  .risk-loop__narrative {
    min-height: auto;
    font-size: 0.86rem;
  }

  .risk-loop__kpi-grid {
    grid-template-columns: 1fr;
  }

  .risk-loop__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .risk-loop__tags {
    gap: 0.24rem;
  }

  .risk-watch-item h5 {
    font-size: 0.92rem;
  }

  .risk-horizon-brief {
    padding: 0.74rem;
  }

  .insights-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
    max-width: 11.4ch;
  }

  .loop-step {
    grid-template-columns: 38px 1fr;
    gap: 0.62rem;
  }

  .loop-step__dot {
    width: 34px;
    height: 34px;
  }

  .loop-player__body {
    padding: 0.88rem 0.88rem 0.82rem;
    min-height: 380px;
  }

  .loop-player__footer {
    padding: 0 0.88rem 0.86rem;
  }

  .chat-sources {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .role-tabs {
    overflow-x: auto;
    padding-bottom: 0.3rem;
    flex-wrap: nowrap;
  }

  .role-tab {
    white-space: nowrap;
  }

  .brief-card,
  .role-panel,
  .proof-card,
  .testimonial,
  .trust-item,
  .pilot-step,
  .pilot-card,
  .final-cta__inner {
    padding: 0.82rem;
  }

  .meta-link {
    margin-left: 0;
  }

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

  .logo-widget {
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .logo-widget__panel {
    width: min(22rem, calc(100vw - 1.2rem));
  }

}

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

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

@keyframes showcaseOrbitNodeSpin {
  0% {
    transform: rotate(var(--node-angle)) translateY(calc(var(--orbit-node-radius) * -1));
  }

  100% {
    transform: rotate(calc(var(--node-angle) + 360deg)) translateY(calc(var(--orbit-node-radius) * -1));
  }
}

@keyframes showcaseOrbitLabelCounterSpin {
  0% {
    transform: rotate(var(--node-angle-neg));
  }

  100% {
    transform: rotate(calc(var(--node-angle-neg) - 360deg));
  }
}

@keyframes visualPulse {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.65;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes proofSpark {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes oodaPhasePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 111, 231, 0.3);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(95, 111, 231, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(95, 111, 231, 0);
  }
}

@keyframes compliancePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(91, 126, 230, 0.44);
  }

  60% {
    box-shadow: 0 0 0 8px rgba(91, 126, 230, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(91, 126, 230, 0);
  }
}

@keyframes pilotBarShift {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.25);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes mascotHalo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.07);
    opacity: 0.45;
  }
}

@keyframes mascotSparkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes mascotScan {
  0%,
  22% {
    transform: translateX(0);
  }

  50%,
  70% {
    transform: translateX(215%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes mascotPulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 242, 255, 0.54);
    transform: scale(0.92);
  }

  55% {
    box-shadow: 0 0 0 10px rgba(232, 242, 255, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 242, 255, 0);
    transform: scale(0.92);
  }
}
