:root {
  --bg: #05070b;
  --panel: rgba(18, 23, 35, 0.84);
  --panel-soft: rgba(255, 255, 255, 0.052);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(152, 166, 232, 0.34);
  --text: #f7f9fc;
  --muted: rgba(229, 236, 246, 0.72);
  --muted-strong: rgba(229, 236, 246, 0.88);
  --accent: #98a6e8;
  --accent-strong: #b8c1ff;
  --mint: #83d8cc;
  --amber: #ffd25c;
  --blush: #f6a1ad;
  --sky: #a7d7ff;
  --charcoal: #202838;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Avenir Next", "Nunito Sans", "Segoe UI Rounded", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.background-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(180deg, #05070b 0%, #07101a 44%, #05080e 100%),
    #05070b;
}

.background-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(152, 166, 232, 0.18) 24%, transparent 39%),
    linear-gradient(245deg, transparent 0 24%, rgba(131, 216, 204, 0.11) 35%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%);
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

.ambient-band {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 38vh;
  transform: rotate(-8deg);
  filter: blur(18px);
  opacity: 0.52;
}

.band-one {
  top: 11vh;
  background: linear-gradient(90deg, transparent, rgba(152, 166, 232, 0.2), transparent);
  animation: bandSlide 20s ease-in-out infinite alternate;
}

.band-two {
  top: 62vh;
  background: linear-gradient(90deg, transparent, rgba(131, 216, 204, 0.14), transparent);
  animation: bandSlide 24s ease-in-out infinite alternate-reverse;
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.site-header {
  padding: 24px 0 18px;
}

.mascot-notice {
  max-width: 640px;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  margin: 0 0 18px auto;
  border: 1px solid rgba(152, 166, 232, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.mascot-notice-copy {
  flex: 1 1 auto;
}

.mascot-notice-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--mint));
  color: #061018;
  font-size: 0.82rem;
  font-weight: 900;
}

.mascot-notice p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.35;
}

.mascot-notice-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
}

.mascot-notice-progress {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.mascot-reward-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(131, 216, 204, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(152, 166, 232, 0.16), rgba(131, 216, 204, 0.18));
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 780;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease, visibility 0ms linear 220ms;
}

.mascot-reward-link.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
}

.mascot-reward-link:hover {
  background: linear-gradient(135deg, rgba(152, 166, 232, 0.22), rgba(131, 216, 204, 0.24));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(152, 166, 232, 0.2);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  display: block;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.08rem;
  line-height: 1.1;
  font-weight: 850;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 140ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 44px;
  align-items: start;
  padding: 34px 0 52px;
}

.hero-intro {
  grid-column: 1 / -1;
  max-width: 980px;
}

.hero-kicker,
.section-kicker,
.panel-label,
.step-index,
.story-row span,
.decision-strip span {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 980px;
  margin: 14px 0 0;
  font-size: clamp(2.3rem, 4.3vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-text span {
  display: block;
}

.hero-text span + span {
  margin-top: 8px;
}

.hero-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.hero-copy-card {
  padding: 20px 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.042);
  box-shadow: var(--shadow);
}

.hero-copy-card h2 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 2.35vw, 2.15rem);
  line-height: 1.1;
}

.hero-copy-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 850;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--mint));
  color: #061018;
  box-shadow: 0 18px 48px rgba(152, 166, 232, 0.2);
}

.button-primary:hover {
  box-shadow: 0 22px 58px rgba(152, 166, 232, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button.wide {
  width: 100%;
}

.button:focus-visible,
.icon-button:focus-visible,
.capability-launcher:focus-visible,
.capability-prompt:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(152, 166, 232, 0.85);
  outline-offset: 3px;
}

.hero-proof {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-proof > span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.channel-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.052);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.channel-chip:hover {
  transform: translateY(-1px);
}

.channel-chip.is-active,
.channel-chip[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(152, 166, 232, 0.22), rgba(131, 216, 204, 0.18));
  border-color: rgba(131, 216, 204, 0.34);
  color: var(--text);
}

.channel-chip:focus-visible {
  outline: 3px solid rgba(152, 166, 232, 0.85);
  outline-offset: 3px;
}

.hero-model-panel {
  max-width: 620px;
  margin-top: 14px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.hero-model-panel strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-model-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-model-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.hero-model-points span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-preview,
.decision-strip,
.info-card,
.use-case-card,
.story-row,
.offer-panel,
.metric-card,
.preview-card,
.answer-strip,
.offer-item,
.offer-cta,
.dashboard-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-preview {
  position: relative;
  overflow: visible;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(152, 166, 232, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.preview-shell {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 21, 32, 0.82);
}

.preview-head,
.preview-card-head,
.answer-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.preview-head h2 {
  margin: 6px 0 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.answer-strip {
  margin-top: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.answer-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.answer-strip strong {
  max-width: 58%;
  text-align: right;
  font-size: 0.98rem;
  line-height: 1.35;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.18fr);
  gap: 12px;
  margin-top: 12px;
}

.metric-card,
.preview-card {
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.28rem, 1.55vw, 1.62rem);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
}

.metric-card span,
.preview-card p,
.story-row p,
.info-card p,
.use-case-card p,
.offer-item p,
.offer-cta p,
.section-heading p,
.site-footer p,
.decision-strip p,
.shot-note {
  color: var(--muted);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
}

.preview-card {
  margin-top: 12px;
}

.preview-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.preview-card p {
  margin: 13px 0 0;
}

.decision-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.decision-strip article {
  position: relative;
  padding: 22px;
  background: rgba(7, 12, 20, 0.78);
}

.decision-strip article > :not(.hidden-bird),
.story-row > :not(.hidden-bird),
.offer-panel > :not(.hidden-bird) {
  position: relative;
  z-index: 1;
}

.decision-strip strong {
  display: block;
  margin-top: 9px;
  font-size: 1.15rem;
}

.decision-strip p {
  margin: 8px 0 0;
}

.section {
  padding: 58px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 30px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.offer-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.offer-heading p {
  max-width: 760px;
  font-size: 1rem;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.story-list {
  display: grid;
  gap: 12px;
}

.story-row {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.story-row strong {
  display: block;
  margin-top: 7px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.story-row p {
  margin: 8px 0 0;
}

.steps-grid,
.use-case-grid,
.offer-grid {
  display: grid;
  gap: 16px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.info-card {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.info-card h3 {
  margin: 12px 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.info-card p {
  margin: 10px 0 0;
}

.use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.use-case-card {
  min-height: 156px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.038);
  box-shadow: none;
}

.use-case-card span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(152, 166, 232, 0.24);
  border-radius: 999px;
  background: rgba(152, 166, 232, 0.08);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 820;
}

.use-case-card p {
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.offer-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 22, 0.9);
}

.offer-stack {
  display: grid;
  gap: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card,
.model-explorer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.price-card {
  padding: 18px;
}

.price-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  line-height: 0.96;
}

.price-card strong span {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--muted);
}

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

.price-action {
  margin-top: 16px;
}

.price-card.featured {
  background:
    linear-gradient(135deg, rgba(152, 166, 232, 0.14), rgba(131, 216, 204, 0.12)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(131, 216, 204, 0.34);
}

.model-explorer {
  padding: 18px;
}

.model-explorer-head,
.model-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.model-explorer-head h3 {
  margin: 6px 0 0;
  font-size: 1.26rem;
  line-height: 1.2;
}

.model-note,
.model-price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 780;
  white-space: nowrap;
}

.model-price-badge {
  background: rgba(131, 216, 204, 0.13);
  border-color: rgba(131, 216, 204, 0.34);
  color: var(--text);
}

.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.model-tab {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 760;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

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

.model-tab.is-active,
.model-tab[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(152, 166, 232, 0.22), rgba(131, 216, 204, 0.18));
  border-color: rgba(131, 216, 204, 0.34);
  color: var(--text);
}

.model-tab:focus-visible {
  outline: 3px solid rgba(152, 166, 232, 0.85);
  outline-offset: 3px;
}

.model-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 15, 25, 0.56);
}

.model-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 1.14rem;
  line-height: 1.24;
}

.model-panel-copy {
  margin: 12px 0 0;
  color: var(--muted);
}

.model-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.model-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 760;
}

.hidden-bird {
  position: absolute;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0.96;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.26));
  transform: translateY(0) rotate(-3deg);
  transition: opacity 220ms ease, transform 260ms ease, filter 260ms ease;
  z-index: 2;
  animation: birdFloat 5.4s ease-in-out infinite;
}

.bird-nest-base {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 84px;
  height: 34px;
  background: center / contain no-repeat url("./assets/nest-base.svg");
  opacity: 0;
  transform: translateX(-50%) translateY(10px) scale(0.92);
  transition: opacity 260ms ease, transform 320ms ease;
  pointer-events: none;
}

.hidden-bird img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.hidden-bird:hover,
.hidden-bird:focus-visible,
.hidden-bird.is-found {
  opacity: 1;
  transform: translateY(-4px) rotate(0deg) scale(1.05);
}

.hidden-bird.is-found {
  animation: birdSettle 520ms ease both;
}

.hidden-bird.is-happy img {
  animation: happyPulse 900ms ease both;
}

.hidden-bird.is-nested .bird-nest-base {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  animation: nestFadeIn 420ms ease both;
}

.hidden-bird-preview {
  position: fixed;
  right: 24px;
  top: 96px;
  left: auto;
  bottom: auto;
  z-index: 18;
}

.hidden-bird-strip {
  right: 18px;
  top: 10px;
}

.hidden-bird-story {
  right: 14px;
  top: 16px;
}

.hidden-bird-offer {
  right: 18px;
  top: 18px;
  width: 78px;
  height: 78px;
}

.bird-mint {
  filter: hue-rotate(75deg) saturate(0.92) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.26));
}

.bird-blush {
  filter: hue-rotate(168deg) saturate(1.1) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.26));
}

.bird-sunshine {
  filter: hue-rotate(218deg) saturate(1.1) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.26));
}

.capability-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(131, 216, 204, 0.36);
  border-radius: 999px;
  background: rgba(13, 19, 30, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease, box-shadow 180ms ease;
  animation: launcherFadeIn 520ms ease both;
}

.capability-launcher.is-unlocked {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.capability-launcher:hover {
  background: rgba(18, 26, 40, 0.98);
}

.capability-launcher-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.capability-panel {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 28;
  width: min(500px, calc(100vw - 28px));
  min-height: 560px;
  max-height: min(78vh, 760px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 19, 30, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
  overflow: hidden;
}

.capability-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.capability-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 0;
}

.capability-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.capability-panel-head strong {
  display: block;
  margin-top: 5px;
  font-size: 1.12rem;
  line-height: 1.24;
}

.capability-close {
  flex: 0 0 auto;
}

.capability-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  align-content: start;
  overflow: auto;
  padding-right: 4px;
}

.capability-prompt {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.3;
  text-align: left;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.capability-prompt:hover {
  transform: translateY(-1px);
}

.capability-prompt.is-active {
  background: linear-gradient(135deg, rgba(152, 166, 232, 0.22), rgba(131, 216, 204, 0.18));
  border-color: rgba(131, 216, 204, 0.34);
  color: var(--text);
}

.capability-answer {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.6;
}

.capability-reward {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(131, 216, 204, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(152, 166, 232, 0.08), rgba(131, 216, 204, 0.06));
}

.capability-reward strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
}

.capability-reward p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.capability-reward-link {
  margin-top: 12px;
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(0.2);
}

.capability-reward-link.is-visible {
  opacity: 1;
  pointer-events: auto;
  filter: none;
}

.mascot-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 20;
  min-width: min(340px, calc(100% - 32px));
  padding: 13px 16px;
  border: 1px solid rgba(152, 166, 232, 0.34);
  border-radius: var(--radius);
  background: rgba(14, 20, 31, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.intake-modal {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.intake-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.intake-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(10px);
}

.intake-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 19, 30, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(14px);
  transition: transform 220ms ease;
}

.intake-modal.is-open .intake-dialog {
  transform: translateY(0);
}

.intake-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.intake-head strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.intake-close {
  flex: 0 0 auto;
}

.intake-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intake-form label {
  display: grid;
  gap: 7px;
}

.intake-form label span {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 780;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
  padding: 12px 13px;
  font-size: 0.98rem;
  line-height: 1.45;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.intake-form textarea {
  resize: vertical;
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: rgba(229, 236, 246, 0.44);
}

.intake-form input:focus,
.intake-form textarea:focus {
  border-color: rgba(131, 216, 204, 0.48);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(152, 166, 232, 0.18);
}

.intake-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.intake-status.is-success {
  color: var(--mint);
}

.intake-status.is-error {
  color: var(--blush);
}

.intake-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.dance-party {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(152, 166, 232, 0.22), transparent 34%),
    rgba(5, 7, 11, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.dance-party.is-dancing {
  opacity: 1;
  pointer-events: auto;
}

.dance-stage {
  position: relative;
  width: min(420px, 100%);
  min-height: 250px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(152, 166, 232, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(13, 19, 30, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dance-stage::before,
.dance-stage::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(131, 216, 204, 0.24);
  border-radius: 999px;
  animation: danceRing 820ms steps(4, end) infinite;
}

.dance-stage::after {
  inset: 54px;
  border-color: rgba(255, 210, 92, 0.22);
  animation-delay: 110ms;
}

.dance-stage p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-weight: 760;
  text-align: center;
}

.dance-bird {
  position: absolute;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
  animation: dancePop 480ms steps(4, end) infinite;
}

.dance-bird-one {
  left: 38%;
  top: 28px;
  width: 126px;
  height: 126px;
}

.dance-bird-two {
  left: 19%;
  top: 82px;
  width: 94px;
  height: 94px;
  animation-delay: 120ms;
  filter: hue-rotate(75deg) saturate(0.92) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.dance-bird-three {
  right: 16%;
  top: 88px;
  width: 100px;
  height: 100px;
  animation-delay: 240ms;
  filter: hue-rotate(168deg) saturate(1.1) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.offer-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.offer-list {
  display: grid;
  gap: 12px;
}

.offer-item,
.offer-cta {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.offer-item strong,
.offer-cta h3 {
  display: block;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.22;
}

.offer-item p,
.offer-cta p {
  margin: 9px 0 0;
}

.cta-stack {
  margin-top: 18px;
}

.dashboard-showcase {
  padding-top: 34px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-shot {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(7, 13, 22, 0.9);
}

.shot-toolbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.shot-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.82;
}

.shot-toolbar span:nth-child(2) {
  background: var(--mint);
}

.shot-toolbar span:nth-child(3) {
  background: var(--amber);
}

.shot-toolbar strong {
  margin-left: 6px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.shot-window {
  min-height: 260px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(131, 216, 204, 0.11), transparent 34%),
    rgba(10, 15, 25, 0.5);
}

.shot-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.shot-kpi-row div,
.shot-list p,
.shot-actions li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.shot-kpi-row div {
  padding: 14px;
}

.shot-kpi-row span,
.shot-list span,
.shot-bar span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.shot-kpi-row strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.shot-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.shot-list p {
  margin: 0;
  padding: 12px;
}

.shot-list strong {
  display: block;
  margin-top: 4px;
  font-size: 0.94rem;
  line-height: 1.25;
}

.shot-bar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.shot-bar i {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.shot-bar i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-strong), var(--mint));
}

.shot-bar strong {
  font-size: 0.92rem;
  text-align: right;
}

.shot-note {
  margin: 20px 0 0;
  padding: 13px;
  border: 1px solid rgba(152, 166, 232, 0.2);
  border-radius: var(--radius);
  background: rgba(152, 166, 232, 0.07);
  font-size: 0.93rem;
  line-height: 1.5;
}

.shot-actions {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.shot-actions li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.35;
}

.shot-actions span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(131, 216, 204, 0.13);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
}

.site-footer {
  padding: 26px 0 44px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 540px;
  margin: 14px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 620ms ease forwards;
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-one {
  animation-delay: 120ms;
  transition-delay: 120ms;
}

.delay-two {
  animation-delay: 220ms;
  transition-delay: 220ms;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundDrift {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(1%, 2%, 0) scale(1.03);
  }
}

@keyframes bandSlide {
  0% {
    transform: translateX(-3%) rotate(-8deg);
  }
  100% {
    transform: translateX(3%) rotate(-8deg);
  }
}

@keyframes birdSettle {
  0% {
    transform: translateY(14px) rotate(-3deg) scale(0.98);
    opacity: 0.72;
  }
  55% {
    transform: translateY(-5px) rotate(1deg) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1.05);
    opacity: 1;
  }
}

@keyframes happyPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes giftGlow {
  0% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.12) rotate(-4deg);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes birdFloat {
  0% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(-3deg);
  }
}

@keyframes nestFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes launcherFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dancePop {
  0% {
    transform: translateY(0) rotate(-5deg);
  }
  25% {
    transform: translateY(-10px) rotate(6deg);
  }
  50% {
    transform: translateY(0) rotate(4deg) scale(1.03);
  }
  75% {
    transform: translateY(-7px) rotate(-7deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}

@keyframes danceRing {
  0% {
    transform: rotate(0deg) scale(0.96);
    opacity: 0.34;
  }
  50% {
    transform: rotate(90deg) scale(1.04);
    opacity: 0.58;
  }
  100% {
    transform: rotate(180deg) scale(0.96);
    opacity: 0.34;
  }
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .offer-grid,
  .pricing-grid,
  .steps-grid,
  .use-case-grid,
  .screenshot-grid,
  .preview-grid,
  .decision-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hidden-bird-preview {
    left: auto;
    right: -20px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .mascot-notice {
    width: 100%;
    margin-right: 0;
    border-radius: var(--radius);
  }

  .mascot-notice-row {
    align-items: flex-start;
  }

  .site-nav,
  .footer-links {
    gap: 13px;
  }

  .hero {
    gap: 28px;
    padding-top: 20px;
  }

  .hero-intro {
    grid-column: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .hero-text,
  .section-heading p {
    font-size: 1rem;
  }

  .answer-strip,
  .preview-head,
  .preview-card-head,
  .model-explorer-head,
  .model-panel-head {
    display: grid;
  }

  .answer-strip strong {
    max-width: none;
    text-align: left;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 44px 0;
  }

  .offer-panel,
  .preview-shell {
    padding: 18px;
  }

  .hidden-bird {
    width: 60px;
    height: 60px;
  }

  .hidden-bird-preview {
    right: 14px;
    top: 112px;
  }

  .ambient-band {
    display: none;
  }

  .dance-stage {
    min-height: 230px;
  }

  .dance-bird-one {
    left: 49%;
  }

  .dance-bird-two {
    left: 11%;
  }

  .dance-bird-three {
    right: 9%;
  }

  .capability-launcher {
    right: 14px;
    bottom: 14px;
    padding-right: 14px;
  }

  .capability-panel {
    right: 14px;
    bottom: 78px;
    width: min(380px, calc(100vw - 28px));
    min-height: 0;
    max-height: min(76vh, 700px);
  }

  .capability-prompts {
    grid-template-columns: 1fr;
  }

  .intake-modal {
    padding: 12px;
  }

  .intake-dialog {
    max-height: min(88vh, 860px);
    padding: 18px;
  }

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

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
