:root {
  --background-deep: #020203;
  --background-base: #050506;
  --background-elevated: #0a0a0c;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --foreground: #ededef;
  --foreground-muted: #8a8f98;
  --foreground-subtle: rgba(255, 255, 255, 0.6);
  --accent: #5e6ad2;
  --accent-bright: #6872d9;
  --accent-glow: rgba(94, 106, 210, 0.3);
  --border-default: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(94, 106, 210, 0.3);
  --shadow-card: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 2px 20px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(94, 106, 210, 0.1);
  --shadow-button: 0 0 0 1px rgba(94, 106, 210, 0.5), 0 4px 12px rgba(94, 106, 210, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: min(1180px, calc(100vw - 40px));
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --hero-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(ellipse at top, rgba(18, 20, 36, 0.9) 0%, rgba(5, 5, 6, 0.96) 52%, rgba(2, 2, 3, 1) 100%),
    linear-gradient(180deg, rgba(7, 7, 10, 1) 0%, rgba(2, 2, 3, 1) 100%);
  overflow-x: hidden;
}

::selection {
  background: rgba(94, 106, 210, 0.3);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

.page {
  position: relative;
}

.ambient-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-grid,
.ambient-noise {
  position: absolute;
  inset: 0;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.84), transparent 95%);
}

.ambient-noise {
  opacity: 0.04;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 10s ease-in-out infinite;
}

.blob-primary {
  top: -12%;
  left: 20%;
  width: min(58vw, 920px);
  height: min(72vw, 1280px);
  background: radial-gradient(circle, rgba(94, 106, 210, 0.28), transparent 70%);
}

.blob-secondary {
  top: 24%;
  left: -18%;
  width: min(48vw, 680px);
  height: min(60vw, 880px);
  background: radial-gradient(circle, rgba(110, 89, 195, 0.18), transparent 70%);
  animation-duration: 8s;
}

.blob-tertiary {
  top: 12%;
  right: -12%;
  width: min(42vw, 560px);
  height: min(54vw, 760px);
  background: radial-gradient(circle, rgba(72, 120, 255, 0.16), transparent 70%);
  animation-duration: 9s;
}

.blob-bottom {
  bottom: -18%;
  left: 32%;
  width: min(42vw, 620px);
  height: min(36vw, 420px);
  background: radial-gradient(circle, rgba(94, 106, 210, 0.14), transparent 72%);
  animation: pulseFloat 9s ease-in-out infinite;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.78), rgba(5, 5, 6, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(94, 106, 210, 1), rgba(72, 120, 255, 0.64));
  box-shadow: var(--shadow-button);
}

.brand-mark-image {
  width: 64px;
  height: 46px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--foreground-muted);
  font-size: 0.74rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-link {
  padding: 10px 16px;
  color: var(--foreground-muted);
  border-radius: 999px;
  transition:
    color 220ms var(--easing),
    background-color 220ms var(--easing);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  border-radius: 999px;
  transition: transform 220ms var(--easing), opacity 220ms var(--easing), top 220ms var(--easing);
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 0;
  font-weight: 600;
  transition:
    transform 220ms var(--easing),
    box-shadow 220ms var(--easing),
    background-color 220ms var(--easing),
    color 220ms var(--easing);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: var(--shadow-button);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 0 0 1px rgba(94, 106, 210, 0.6),
    0 10px 28px rgba(94, 106, 210, 0.35),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.22);
}

.button-secondary {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost {
  color: var(--foreground-muted);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.04);
}

.full-width {
  width: 100%;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-first {
  padding-top: 72px;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--container-width);
  max-width: calc(100vw - 40px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero {
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 12, 0.92) 0%, rgba(4, 10, 18, 0.82) 30%, rgba(4, 10, 18, 0.56) 58%, rgba(3, 6, 11, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.22) 0%, rgba(5, 5, 6, 0.5) 100%),
    url("assets/clawclaw-bg.png");
  background-position: center center, center center, center right;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.02);
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(103, 234, 255, 0.18), transparent 24%),
    radial-gradient(circle at 58% 18%, rgba(83, 181, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18) 0%, rgba(5, 5, 6, 0.46) 100%);
}

.hero-grid,
.pricing-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-stack,
.hero-visual {
  transform:
    translateY(calc(var(--hero-progress) * 64px))
    scale(calc(1 - var(--hero-progress) * 0.04));
  opacity: calc(1 - var(--hero-progress) * 0.38);
}

.eyebrow,
.card-label,
.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-gradient {
  background: linear-gradient(90deg, rgba(104, 114, 217, 1), rgba(143, 158, 255, 0.92), rgba(104, 114, 217, 1));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

.hero-lead,
.section-heading p,
.pricing-copy p,
.price-description,
.faq-card p,
.scenario-card p,
.timeline-card p,
.bento-card p,
.mini-card p,
.pricing-note p,
.cta-panel p {
  margin: 0;
  color: var(--foreground-muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 22px;
  font-size: 1.125rem;
}

.page-home .hero .hero-copy {
  max-width: 700px;
}

.page-home .hero .hero-lead {
  color: rgba(237, 237, 239, 0.84);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.page-home .hero .eyebrow {
  color: rgba(215, 245, 255, 0.84);
}

.page-home .hero .pill {
  background: rgba(6, 17, 28, 0.44);
  border-color: rgba(144, 227, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill,
.status-badge,
.badge-soft,
.badge-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.pill,
.badge-soft,
.status-badge {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-accent {
  color: white;
  background: rgba(94, 106, 210, 0.22);
  border: 1px solid rgba(94, 106, 210, 0.38);
}

.spotlight-card,
.hero-panel,
.mini-card,
.bento-card,
.timeline-card,
.scenario-card,
.pricing-note,
.price-card,
.table-shell,
.faq-card,
.cta-panel,
.pricing-teaser {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-default);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.74);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  transition:
    transform 240ms var(--easing),
    box-shadow 240ms var(--easing),
    border-color 240ms var(--easing);
}

.spotlight-card::before,
.hero-panel::before,
.pricing-teaser::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(
      320px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
      rgba(94, 106, 210, 0.16),
      transparent 70%
    );
  opacity: 0;
  transition: opacity 240ms var(--easing);
  pointer-events: none;
}

.spotlight-card:hover,
.hero-panel:hover,
.pricing-teaser:hover,
.cta-panel:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.spotlight-card:hover::before,
.hero-panel:hover::before,
.pricing-teaser:hover::before,
.cta-panel:hover::before {
  opacity: 1;
}

.hero-panel {
  padding: 24px;
}

.page-home .hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 14, 20, 0.72);
  border-color: rgba(161, 234, 255, 0.1);
}

.window-bar {
  display: flex;
  gap: 8px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.panel-header h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.flow-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  color: white;
  background: linear-gradient(135deg, rgba(104, 114, 217, 0.95), rgba(94, 106, 210, 0.35));
}

.flow-copy strong,
.pricing-copy h2,
.pricing-note h2,
.price-card h2,
.faq-card h3,
.scenario-card h3,
.timeline-card h3,
.bento-card h3,
.mini-card h3,
.cta-panel h2,
.section-heading h2 {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(1.36rem, 2vw, 2.55rem);
  letter-spacing: -0.04em;
}

.flow-copy p {
  margin: 0;
  color: var(--foreground-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.flow-tag {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metrics span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.hero-metrics strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.mini-grid,
.timeline,
.scenario-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.mini-grid,
.scenario-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.timeline-card,
.scenario-card,
.faq-card {
  padding: 28px;
}

.mini-index {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255, 255, 255, 0.55);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  grid-auto-rows: minmax(190px, auto);
}

.bento-card {
  min-height: 100%;
  padding: 28px;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-row-2 {
  grid-row: span 2;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.card-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.05);
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  min-height: 100%;
}

.pricing-teaser,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.pricing-snapshot {
  display: grid;
  gap: 12px;
}

.snapshot-tier {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.snapshot-tier span,
.snapshot-tier small {
  display: block;
  color: var(--foreground-muted);
}

.snapshot-tier strong {
  display: block;
  margin: 6px 0;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.snapshot-tier.featured {
  border-color: rgba(94, 106, 210, 0.24);
  box-shadow: inset 0 0 0 1px rgba(94, 106, 210, 0.12);
}

.pricing-hero {
  padding-bottom: 84px;
}

.pricing-note {
  padding: 32px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  gap: 22px;
  height: 100%;
  padding: 28px;
}

.price-card-head {
  display: grid;
  gap: 18px;
  min-height: 138px;
}

.price-ribbon-row {
  display: flex;
  align-items: flex-start;
  min-height: 30px;
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.price-top > div {
  display: grid;
  gap: 10px;
}

.price-top .card-label {
  margin-bottom: 0;
}

.price-top h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.price-top .badge-soft,
.price-top .badge-accent {
  flex-shrink: 0;
  margin-top: 4px;
}

.price-amount {
  min-height: 118px;
}

.price-amount strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.price-amount span {
  color: var(--foreground-muted);
}

.price-facts {
  display: grid;
  gap: 8px;
  min-height: 58px;
}

.price-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.price-description {
  min-height: 126px;
}

.feature-list {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(104, 114, 217, 1), rgba(94, 106, 210, 0.32));
  box-shadow: 0 0 12px rgba(94, 106, 210, 0.42);
}

.featured-card {
  border-color: rgba(94, 106, 210, 0.32);
  box-shadow:
    0 0 0 1px rgba(94, 106, 210, 0.18),
    0 14px 42px rgba(0, 0, 0, 0.52),
    0 0 90px rgba(94, 106, 210, 0.16);
}

.featured-ribbon {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(94, 106, 210, 0.24);
  border: 1px solid rgba(94, 106, 210, 0.36);
}

.price-card .full-width {
  align-self: end;
  margin-top: 0;
}

.table-shell {
  padding: 12px;
}

.comparison-table {
  display: grid;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 1fr 1fr 0.9fr;
}

.comparison-row span {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
}

.comparison-head span {
  color: rgba(255, 255, 255, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-row span:first-child {
  color: var(--foreground);
}

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

.status-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #18794e;
  background: rgba(87, 232, 135, 0.18);
  border: 1px solid rgba(87, 232, 135, 0.24);
  font-weight: 600;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-footer {
  position: relative;
  padding: 28px 0 48px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--foreground-muted);
}

.footer-links a {
  transition: color 220ms var(--easing);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--foreground);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms var(--easing),
    transform 600ms var(--easing);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.03);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .pricing-hero-layout,
  .pricing-teaser,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .mini-grid,
  .scenario-grid,
  .faq-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .span-2,
  .span-3,
  .span-4 {
    grid-column: span 1;
  }

  .span-row-2 {
    grid-row: span 1;
  }
}

@media (max-width: 860px) {
  :root {
    --container-width: min(1180px, calc(100vw - 28px));
  }

  .site-header {
    backdrop-filter: blur(22px);
  }

  .header-row {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 6, 0.95);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms var(--easing),
      opacity 220ms var(--easing);
  }

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

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-link {
    border-radius: 14px;
  }

  .nav-cta {
    width: 100%;
  }

  .section {
    padding: 92px 0;
  }

  .section-first {
    padding-top: 52px;
  }

  .display-title {
    max-width: 14ch;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-background {
    background-position: center center, center center, calc(100% + 28px) 88px;
    background-size: cover, cover, min(560px, 138vw) auto;
    transform: none;
  }

  .page-home .hero .hero-copy {
    position: relative;
  }

  .page-home .hero .hero-copy::before {
    content: "";
    position: absolute;
    inset: -18px -14px;
    z-index: -1;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(3, 8, 14, 0.82) 0%, rgba(3, 8, 14, 0.52) 48%, rgba(3, 8, 14, 0.08) 100%);
    filter: blur(18px);
  }

  .hero-metrics,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row span {
    padding: 14px 12px;
  }

  .comparison-row span:first-child {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .comparison-head {
    display: none;
  }
}

@media (max-width: 640px) {
  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-panel,
  .mini-card,
  .bento-card,
  .timeline-card,
  .scenario-card,
  .pricing-note,
  .price-card,
  .faq-card,
  .pricing-teaser,
  .cta-panel {
    padding: 22px;
  }

  .price-card-head,
  .price-top,
  .price-description,
  .price-amount,
  .price-facts {
    min-height: 0;
  }

  .flow-item {
    grid-template-columns: auto 1fr;
  }

  .flow-tag {
    grid-column: 2;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-background {
    background-position: center center, center center, calc(100% + 18px) 96px;
    background-size: cover, cover, min(430px, 132vw) auto;
  }
}

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

  .hero-stack,
  .hero-visual {
    transform: none;
    opacity: 1;
  }

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