/* ------------------------------------------------------------------
   Muse — standalone site styles
   Palette mirrors the PennyOnArc Framer template: near-black ink,
   warm off-white paper, one accent. No gradient blobs.
------------------------------------------------------------------ */
:root {
  --ink: #1a1714;
  --ink-2: #221e1a;
  --ink-3: #2b2621;
  --paper: #f4efe7;
  --paper-2: #ece4d8;
  --paper-3: #e2d7c7;
  --line: #d9cdbb;
  --mute: #7a6f63;
  --accent: #f0b39e;
  --accent-deep: #c2704f;
  --accent-soft: #fbe3d8;
  --white: #ffffff;
  --font: "Inter", "Inter Placeholder", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.44, 0, 0.56, 1);
  --radius-xl: 28px;
  --nav-h: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}
html:not(.lenis) {
  scroll-behavior: smooth;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 640px) {
  .container {
    padding-inline: 32px;
  }
}

/* Typography ------------------------------------------------------- */
.display {
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}
.h1 {
  font-size: clamp(2.3rem, 8vw, 6rem);
  max-width: 14ch;
}
.h2 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  max-width: 16ch;
}
.h3 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}
.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 36rem;
  margin: 0;
}
@media (min-width: 768px) {
  .lead {
    font-size: 18px;
  }
}
.dark .lead {
  color: rgba(255, 255, 255, 0.6);
}

/* Sections --------------------------------------------------------- */
.section {
  position: relative;
  padding-block: 88px;
  scroll-margin-top: 96px;
}
@media (min-width: 768px) {
  .section {
    padding-block: 120px;
  }
}
.section.paper-2 {
  background: var(--paper-2);
}
.section.dark,
.dark {
  background: var(--ink);
  color: var(--white);
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.section-head.left {
  align-items: flex-start;
  text-align: left;
}

/* Badge pill ------------------------------------------------------- */
/* Eyebrow label: plain small caps, no pill, no dot */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.badge.dark-badge {
  color: rgba(255, 255, 255, 0.5);
}

/* Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding-inline: 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.3s, box-shadow 0.35s var(--ease), color 0.3s;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.98);
}
.btn.sm {
  height: 36px;
  padding-inline: 16px;
  font-size: 13px;
}
.btn.dark {
  background: var(--ink);
  color: #fff;
}
.btn.dark:hover {
  background: var(--ink-3);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.5);
}
.btn.accent {
  background: var(--accent);
  color: var(--ink);
}
.btn.accent:hover {
  background: #f5c3b1;
  box-shadow: 0 12px 40px -12px rgba(240, 179, 158, 0.5);
}
.btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* Navbar ----------------------------------------------------------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 16px 16px 0;
  opacity: 0;
  transform: translateY(-24px);
  animation: navIn 0.8s var(--ease) 0.1s forwards;
}
@keyframes navIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.nav-bar {
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 23, 20, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  transition: background 0.5s, box-shadow 0.5s;
}
.nav.scrolled .nav-bar {
  background: rgba(26, 23, 20, 0.92);
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.6);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.logo svg,
.logo .logo-img {
  width: 32px;
  height: 32px;
}
.logo .logo-img {
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.nav-links {
  display: none;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.3s, color 0.3s;
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.icon-btn svg {
  width: 16px;
  height: 16px;
}
.nav .cta-desktop {
  display: none;
}
.burger {
  display: inline-flex;
  color: #fff;
}
.burger svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav .cta-desktop {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
}
.mobile-menu {
  max-width: 1200px;
  margin: 8px auto 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 23, 20, 0.95);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 16px;
  display: none;
  transform-origin: top;
}
.mobile-menu.open {
  display: block;
  animation: menuIn 0.35s var(--ease);
}
@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
}
.mobile-menu a.item {
  display: block;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.mobile-menu a.item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.mobile-menu .row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .row .btn {
  flex: 1;
}

/* Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 96px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 4s var(--ease) forwards;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, transparent 30%, rgba(244, 239, 231, 0.9) 100%),
    linear-gradient(to bottom, rgba(244, 239, 231, 0.2), transparent 30%, transparent 70%, var(--paper));
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
  will-change: transform;
}
.hero-copy {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-mascot {
  order: -1;
  margin: 0 auto;
  width: min(62vw, 260px);
}
.hero-mascot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(closest-side, #000 58%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 58%, transparent 100%);
  animation: float 7s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    text-align: left;
  }
  .hero-copy {
    align-items: flex-start;
  }
  .hero-mascot {
    order: 0;
    width: 100%;
    max-width: 560px;
  }
}
.hero .h1 {
  margin-top: 24px;
}
.hero .lead {
  margin-top: 24px;
  color: var(--mute);
}
.hero .accent {
  color: var(--accent-deep);
}

/* Appear on load (mirrors Framer appear: y 24, ease [0.16,1,0.3,1]) */
.appear {
  opacity: 0.001;
  transform: translateY(24px);
  animation: appear var(--dur, 0.5s) var(--ease) var(--delay, 0s) forwards;
}
@keyframes appear {
  to {
    opacity: 1;
    transform: none;
  }
}
/* Word-by-word headline rise */
.split .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.split .w > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: riseWord 0.9s var(--ease) var(--d, 0s) forwards;
}
@keyframes riseWord {
  to {
    transform: none;
    opacity: 1;
  }
}

/* Prompt panel (interactive prompt from the template) --------------- */
.panel-wrap {
  width: 100%;
  min-width: 0;
  max-width: 640px;
  margin-top: 40px;
  will-change: transform;
  text-align: left;
}
.hero .panel {
  border-color: rgba(26, 23, 20, 0.08);
  background: rgba(26, 23, 20, 0.06);
  box-shadow: 0 30px 80px -30px rgba(26, 23, 20, 0.45);
}
.hero .chip {
  border-color: rgba(26, 23, 20, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}
.hero .chip:hover {
  border-color: var(--accent);
  background: #fff;
}
.panel {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.panel-surface {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: rgb(15, 15, 15);
  padding: 16px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.prompt-line {
  flex: 1;
  min-height: 52px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  cursor: text;
  white-space: pre-wrap;
  word-break: break-word;
}
.prompt-line .caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  vertical-align: -0.15em;
  margin-left: 2px;
  background: #fff;
  animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
  to {
    visibility: hidden;
  }
}
.prompt-input {
  flex: 1;
  width: 100%;
  min-height: 52px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 0;
}
.prompt-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.selector {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgb(166, 166, 166);
  font-size: 12px;
  cursor: pointer;
}
.selector select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.selector svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}
.send {
  position: relative;
  width: 46px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.send:hover {
  transform: scale(1.05);
  background: #f5c3b1;
}
.send svg {
  width: 16px;
  height: 16px;
}

/* Suggestion marquee */
.suggest {
  margin-top: 20px;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.suggest:hover .track {
  animation-play-state: paused;
}
.track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.chip:hover {
  border-color: rgba(240, 179, 158, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Trust bar -------------------------------------------------------- */
.trust {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0 72px;
}
.trust p {
  margin: 0 0 32px;
  text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.trust .strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.trust .track {
  gap: 72px;
  padding-inline: 36px;
  animation-duration: 55s;
}
.trust .item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.trust .item img {
  height: 34px;
  width: auto;
}
.trust .item img.wordmark {
  height: 30px;
}
@media (max-width: 640px) {
  .trust .track {
    gap: 44px;
  }
  .trust .item {
    font-size: 24px;
    gap: 10px;
  }
  .trust .item img {
    height: 28px;
  }
  .trust .item img.wordmark {
    height: 24px;
  }
}

/* Scroll reveal (word unblur) -------------------------------------- */
.scroll-reveal {
  display: flex;
  flex-wrap: wrap;
}
.scroll-reveal .word {
  display: inline-block;
  margin-right: 0.26em;
  opacity: 0.1;
  filter: blur(3px);
  transition: filter 0.2s ease-out, opacity 0.2s ease-out;
  will-change: filter, opacity;
}
.scroll-reveal .word.accent {
  color: var(--accent-deep);
}
.dark .scroll-reveal .word.accent {
  color: var(--accent);
}

/* Reveal on scroll (IntersectionObserver) -------------------------- */
[data-reveal] {
  opacity: 0.001;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-stagger] > * {
  opacity: 0.001;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-stagger].in > * {
  opacity: 1;
  transform: none;
}
/* Headline word rise on scroll */
.rise .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.rise .w > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.rise.in .w > span {
  transform: none;
}
.no-motion [data-reveal],
.no-motion [data-stagger] > *,
.no-motion .rise .w > span,
.no-motion .appear,
.no-motion .split .w > span {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Problem ---------------------------------------------------------- */
.problem-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}
.problem-grid .h2 {
  margin-top: 24px;
  max-width: none;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: end;
}
.pain {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pain:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.35);
}
.pain .ic {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.pain:hover .ic {
  background: var(--accent);
  color: var(--ink);
}
.pain .ic svg {
  width: 20px;
  height: 20px;
}
.pain h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pain p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}

/* Feature cards ---------------------------------------------------- */
.features {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}
.feature {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.4);
}
.feature .panel-illu {
  position: relative;
  margin: 8px;
  height: 260px;
  border-radius: 22px;
  background: var(--paper-2);
  padding: 16px;
  overflow: hidden;
}
.dots-dark::after,
.dots-light::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: 22px 22px;
  border-radius: inherit;
}
.dots-dark::after {
  background-image: radial-gradient(rgba(26, 23, 20, 0.12) 1px, transparent 1px);
}
.dots-light::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
}
.feature .panel-illu.auto {
  height: auto;
  min-height: 260px;
}
.feature .body {
  padding: 16px 24px 24px;
}
.feature h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feature p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}

/* Illustration: workflow */
.workflow {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (min-width: 640px) {
  .workflow {
    gap: 12px;
  }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  animation: pulseRing 4.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@media (min-width: 640px) {
  .step {
    padding: 12px 16px;
  }
}
@keyframes pulseRing {
  0%,
  30%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 179, 158, 0);
  }
  10% {
    box-shadow: 0 0 0 6px rgba(240, 179, 158, 0.18);
  }
}
.step i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step i svg {
  width: 16px;
  height: 16px;
}
.arrow-line {
  width: 32px;
  height: 12px;
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.25);
}
@media (min-width: 640px) {
  .arrow-line {
    width: 56px;
  }
}
.arrow-line .dash {
  stroke-dasharray: 6 6;
  animation: dash 1.4s linear infinite;
}
.arrow-line .ball {
  animation: travel 3.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes travel {
  0%,
  50%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translateX(52px);
  }
  45% {
    opacity: 0;
    transform: translateX(52px);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: -24;
  }
}

/* Illustration: routing */
.routing {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.routing .query {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  font-size: 12px;
}
.routing .query span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.spinner {
  margin-left: auto;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(194, 112, 79, 0.25);
  border-top-color: var(--accent-deep);
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.routing svg.branches {
  width: 100%;
  max-width: 280px;
  height: 48px;
  color: rgba(0, 0, 0, 0.2);
}
.routing .dests {
  width: 100%;
  max-width: 280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  font-size: 10px;
  font-weight: 500;
  color: rgba(26, 23, 20, 0.7);
}
.dest .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: fadeDot 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes fadeDot {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.dest svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}

/* Illustration: inbox */
.inbox {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
}
.mail {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 12px;
}
.mail .kv {
  display: flex;
  gap: 8px;
  color: rgba(26, 23, 20, 0.6);
}
.mail .kv b {
  font-weight: 400;
  color: var(--ink);
}
.mail .kv span {
  width: 36px;
  flex: 0 0 auto;
}
.mail hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin: 8px 0;
}
.mail .subject {
  font-weight: 500;
}
.mail .line {
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.07);
  margin-top: 6px;
}
.suggestion {
  border-radius: 16px;
  border: 1px solid rgba(240, 179, 158, 0.3);
  background: rgba(240, 179, 158, 0.1);
  padding: 12px;
  animation: suggestLoop 4.5s var(--ease) infinite;
}
@keyframes suggestLoop {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  15%,
  85% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}
.suggestion .who {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 500;
}
.suggestion .who i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.suggestion .who i svg {
  width: 12px;
  height: 12px;
}
.suggestion p {
  margin: 6px 0 8px;
  color: rgba(26, 23, 20, 0.8);
}
.suggestion .mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}
.suggestion .mini svg {
  width: 12px;
  height: 12px;
}

/* Illustration: dashboard */
.dash {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
}
.dash .top {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(26, 23, 20, 0.6);
  font-weight: 400;
}
.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
}
.live-dot::before,
.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
}
.live-dot::before {
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.metric {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 12px;
}
.metric p {
  margin: 0;
  color: rgba(26, 23, 20, 0.6);
}
.metric .num {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.agents {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 12px;
}
.agents p {
  margin: 0 0 8px;
  color: rgba(26, 23, 20, 0.6);
}
.agent-row {
  margin-top: 8px;
}
.agent-row .r {
  display: flex;
  justify-content: space-between;
}
.agent-row .r span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.agent-row .r .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: fadeDot 1.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
.agent-row .r em {
  font-style: normal;
  color: rgba(26, 23, 20, 0.5);
}
.bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 4px;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--accent);
  transition: width 1.4s var(--ease);
  transition-delay: var(--d, 0s);
}
.in .bar i,
.bar.in i {
  width: var(--v);
}

/* Product overview ------------------------------------------------- */
.products {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
}
.product {
  display: grid;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .product {
    grid-template-columns: 1fr 1fr;
  }
  .product.flip .copy {
    order: 2;
  }
  .product.flip .visual {
    order: 1;
  }
}
.product .copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
@media (min-width: 640px) {
  .product .copy {
    padding: 40px;
  }
}
.product .ic {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product .ic svg {
  width: 20px;
  height: 20px;
}
.product .h3 {
  margin-top: 24px;
}
.product .lead {
  margin-top: 16px;
  font-size: 16px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.checks li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240, 179, 158, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2704f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
  flex: 0 0 auto;
}
.product .visual {
  position: relative;
  margin: 8px;
  min-height: 340px;
  border-radius: 26px;
  background: var(--ink);
  overflow: hidden;
  perspective: 1200px;
}
.product .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.mock {
  position: absolute;
  left: 10%;
  top: 16%;
  width: 110%;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 20px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  transform: rotateX(28deg) rotateY(-18deg) rotate(6deg) translateY(30px);
  opacity: 0;
  transition: transform 1.2s var(--ease), opacity 1.2s var(--ease);
  transform-style: preserve-3d;
}
.in .mock {
  opacity: 1;
  transform: rotateX(24deg) rotateY(-16deg) rotate(5deg);
}
.product .visual:hover .mock {
  transform: rotateX(8deg) rotateY(-4deg) rotate(1deg) translateY(-6px);
}
.mock .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.mock .head span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(26, 23, 20, 0.6);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
}
.mock ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--paper-2);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(0.4s + var(--i, 0) * 0.12s);
}
.in .mock li {
  opacity: 1;
  transform: none;
}
.mock li small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(26, 23, 20, 0.6);
}
.mock li small::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26, 23, 20, 0.3);
}
.mock li.done small::before {
  background: var(--accent);
}

/* Use cases -------------------------------------------------------- */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  max-width: 100%;
  overflow-x: auto;
  position: relative;
}
.tabs button {
  position: relative;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 23, 20, 0.6);
  white-space: nowrap;
  transition: color 0.3s;
  z-index: 1;
}
.tabs button.active {
  color: #fff;
}
.tabs .pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  border-radius: 999px;
  background: var(--ink);
  transition: left 0.45s var(--ease), width 0.45s var(--ease);
}
.usecase {
  margin-top: 32px;
  display: grid;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .usecase {
    grid-template-columns: 1fr 1fr;
  }
}
.usecase .visual {
  position: relative;
  min-height: 320px;
  margin: 8px;
  border-radius: 26px;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}
.usecase .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.usecase .card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 16px;
}
.usecase .card small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.usecase .card .prompt {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 500;
}
.usecase .card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.usecase .card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.usecase .card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.usecase .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}
@media (min-width: 640px) {
  .usecase .copy {
    padding: 40px;
  }
}
.usecase .copy .lead {
  margin-top: 16px;
  font-size: 16px;
}
.usecase .copy .btn {
  align-self: flex-start;
  margin-top: 32px;
}
.fade-swap {
  animation: swapIn 0.5s var(--ease);
}
@keyframes swapIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}
.visual .fade-swap {
  animation: swapVisual 0.6s var(--ease);
}
@keyframes swapVisual {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
}

/* Why Muse --------------------------------------------------------- */
.why-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}
.why .h2 {
  margin-top: 24px;
  max-width: 64rem;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
}
.mascot {
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  border-radius: 32px;
  overflow: hidden;
  background: #f3f2ee;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}
.mascot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: float 7s ease-in-out infinite;
}
.mascot figcaption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--mute);
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.msg .av.face {
  border-radius: 8px;
  object-fit: cover;
}
.pillars {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pillar {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  transition: border-color 0.5s, background 0.5s, transform 0.5s var(--ease);
}
.pillar:hover {
  border-color: rgba(240, 179, 158, 0.4);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}
.pillar .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.pillar h3 {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pillar p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

/* Built on --------------------------------------------------------- */
.builton {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.builton-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .builton-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.tile {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}
.tile small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.tile .num {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tile p {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.ring {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ring {
    width: 320px;
    height: 320px;
  }
}
.ring .r1,
.ring .r2,
.ring .r3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ring .r1 {
  inset: 0;
  border-style: dashed;
  animation: spin 40s linear infinite;
}
.ring .r2 {
  inset: 32px;
  animation: spin 28s linear infinite reverse;
}
.ring .r2::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px 4px rgba(240, 179, 158, 0.5);
}
.ring .r3 {
  inset: 64px;
  animation: spin 18s linear infinite;
}
.ring .r3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #fff;
}
.ring .core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring .core div {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: float 7s ease-in-out infinite;
}
.ring .core b {
  font-size: 30px;
  font-weight: 500;
}
.ring .core small {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Vault ------------------------------------------------------------ */
.skills {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .skills {
    grid-template-columns: repeat(3, 1fr);
  }
}
.skill {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 24px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.skill:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.4);
}
.skill .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.skill .stat {
  border-radius: 16px;
  background: var(--paper-2);
  padding: 16px;
}
.skill .stat .num {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.skill .stat p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--mute);
}
.skill .stat .bar {
  margin-top: 12px;
}
.skill .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.skill .who i {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.skill:hover .who i {
  background: var(--accent);
  color: var(--ink);
}
.skill .who i svg {
  width: 18px;
  height: 18px;
}
.skill .who h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.skill .who p {
  margin: 0;
  font-size: 12px;
  color: var(--mute);
}
.skill > p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}

/* For agents ------------------------------------------------------- */
.agents-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .agents-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.step-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}
.step-card .n {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.step-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.step-card p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}
.step-card code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
}
.note {
  margin-top: 32px;
  font-size: 15px;
  color: var(--mute);
}
.note b {
  font-weight: 500;
  color: var(--ink);
}
.console {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-2);
  color: #fff;
  padding: 20px;
  font-size: 13px;
  overflow: hidden;
}
.console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.console > * {
  position: relative;
}
.console .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.console .top .live {
  color: rgba(255, 255, 255, 0.6);
}
.console .ep {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.console .typed {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  min-height: 42px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.console .typed .caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  vertical-align: -0.15em;
  margin-left: 2px;
  background: #fff;
  animation: blink 1s steps(2, start) infinite;
}
.console .pay {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.console .pay .r {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.6);
}
.console .pay .r b {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.console .pay .r b small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.console .pay .bar {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
}
.msgs {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.msg.right {
  justify-content: flex-end;
}
.msg .av {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.msg .av svg {
  width: 28px;
  height: 28px;
}
.msg .av.ai {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
}
.bubble {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.msg:not(.right) .bubble {
  border-top-left-radius: 6px;
}
.msg.right .bubble {
  border-top-right-radius: 6px;
  background: rgba(240, 179, 158, 0.15);
  text-align: right;
}
.bubble small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.bubble .mini {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

/* FAQ -------------------------------------------------------------- */
.faq-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
  }
}
.docs-card {
  margin-top: 32px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 24px;
}
.docs-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.docs-card p {
  margin: 4px 0 16px;
  font-size: 15px;
  color: var(--mute);
}
.faq {
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding-inline: 24px;
}
.faq-item + .faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.faq-q i {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.faq-q i svg {
  width: 16px;
  height: 16px;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
}
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.45s var(--ease);
}
.faq-a p {
  margin: 0;
  padding: 0 40px 20px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
}

/* CTA -------------------------------------------------------------- */
.cta {
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 100%);
}
.cta .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .h2 {
  margin-top: 24px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.cta-form {
  position: relative;
  margin-top: 40px;
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.cta-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 15px;
}
.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cta-form .send {
  width: auto;
  height: 44px;
  padding-inline: 18px;
  border-radius: 999px;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
}

/* Footer ----------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 40px;
}
.token-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
@media (min-width: 768px) {
  .token-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.token-bar small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.token-bar .ca {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.token-bar .ca.live {
  color: #fff;
  animation: caPop 0.6s var(--ease);
}
@keyframes caPop {
  0% { transform: scale(0.96); opacity: 0.4; }
  100% { transform: none; opacity: 1; }
}
.token-bar .ca svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.token-bar .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.token-bar .actions a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.3s;
}
.token-bar .actions a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.token-bar .actions a.buy {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 500;
}
.token-bar .actions a.buy:hover {
  background: #f5c3b1;
}
.foot-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .foot-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.foot-row .about p {
  margin: 14px 0 0;
  max-width: 22rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 15px;
}
.foot-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}
.foot-links a:hover {
  color: #fff;
}
.foot-links .top {
  color: rgba(255, 255, 255, 0.45);
}
.foot-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 768px) {
  .foot-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .foot-bottom p:last-child {
    max-width: 32rem;
    text-align: right;
  }
}
.foot-bottom p {
  margin: 0;
}

/* Shared keyframes ------------------------------------------------- */
@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes shimmer {
  0%,
  70% {
    background-position: 200% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@keyframes sweep {
  from {
    left: -40%;
  }
  to {
    left: 110%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
