:root {
  --bg: #08080c;
  --bg-soft: #12131a;
  --bg-elevated: rgba(18, 19, 26, 0.88);
  --text: #faf9f6;
  --text-soft: #8a8f98;
  --border: rgba(255, 255, 255, 0.06);
  --accent: #00e676;
  --accent-2: #00c6ff;
  --accent-3: #8e2de2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(0, 230, 118, 0.06), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(0, 198, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #09090d 0%, #060609 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 16px;
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-shell {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-fallback,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.custom-logo-link img {
  display: block;
  max-height: 52px;
  width: auto;
}

.brand-text,
.footer-brand {
  font-size: 1.1rem;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.65);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.nav-toggle-lines {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 12px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, top 200ms ease, box-shadow 200ms ease;
}

.nav-toggle-lines::before {
  top: 1px;
  box-shadow: 0 5px 0 currentColor;
}

.nav-toggle-lines::after {
  top: 10px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 6px;
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-toggle-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links .site-nav-menu {
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-nav-menu a {
  color: inherit;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease, opacity 180ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  will-change: transform;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #07d86f 100%);
  color: #06110b;
  box-shadow: 0 16px 40px rgba(0, 230, 118, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 48px rgba(0, 230, 118, 0.24);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(0, 230, 118, 0.3);
  background: rgba(0, 230, 118, 0.05);
}

.hero {
  padding-top: 52px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-lead,
.story-copy p,
.package-card p,
.step-card p,
.final-card p,
.faq-panel p,
.footer-branding p,
.footer-note p {
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 0;
}

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

.microcopy {
  margin: 16px 0 0;
  color: rgba(250, 249, 246, 0.68);
  font-size: 0.95rem;
}

.hero-visual,
.story-visual,
.package-card,
.chip-card,
.manifesto-card,
.step-card,
.demo-card,
.chat-card,
.log-card,
.console-card,
.final-card {
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.92), rgba(18, 19, 26, 0.78));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  padding: 18px;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.82;
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.18), transparent 65%);
}

.hero-visual::after {
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.1), transparent 64%);
}

.dotted-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
}

.prompt-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(250, 249, 246, 0.74);
  font-size: 0.92rem;
}

.prompt-cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.75);
  animation: cursor-blink 1.05s steps(1, end) infinite;
}

.visual-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.fake-browser {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 10, 0.8);
  overflow: hidden;
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.browser-body {
  padding: 24px;
}

.browser-kicker {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.browser-title {
  margin-top: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  max-width: 12ch;
}

.browser-line {
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  max-width: 90%;
}

.browser-line.short {
  max-width: 64%;
}

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

.mock-card {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-card span,
.package-meta,
.step-number,
.status-label,
.mini-label {
  display: block;
  color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-card strong {
  display: block;
  margin-top: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.card-pop {
  border-color: rgba(0, 230, 118, 0.24);
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.06), 0 0 32px rgba(0, 230, 118, 0.08);
}

.console-card,
.mini-preview,
.chat-card,
.log-card,
.demo-card {
  padding: 18px;
}

.console-card {
  display: grid;
  gap: 10px;
  background: rgba(5, 7, 10, 0.78);
}

.console-line {
  color: #95f3ba;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.84rem;
}

.mini-preview {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.96), rgba(18, 19, 26, 0.7));
}

.mini-label {
  margin-bottom: 14px;
}

.mini-mock {
  height: 132px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 230, 118, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

html.is-loaded .console-card .console-line,
html.is-loaded .log-card .console-line,
html.is-loaded .chat-bubble,
html.is-loaded .demo-card,
html.is-loaded .mini-preview {
  animation: rise-in 540ms ease both;
}

html.is-loaded .console-card .console-line:nth-child(1),
html.is-loaded .log-card .console-line:nth-child(1),
html.is-loaded .chat-bubble:nth-of-type(1) {
  animation-delay: 90ms;
}

html.is-loaded .console-card .console-line:nth-child(2),
html.is-loaded .log-card .console-line:nth-child(2),
html.is-loaded .chat-bubble:nth-of-type(2) {
  animation-delay: 220ms;
}

html.is-loaded .console-card .console-line:nth-child(3),
html.is-loaded .log-card .console-line:nth-child(3) {
  animation-delay: 350ms;
}

.trustbar {
  padding: 10px 0 28px;
}

.trustbar-inner {
  display: flex;
  justify-content: center;
}

.trustbar p {
  margin: 0;
  text-align: center;
  color: rgba(250, 249, 246, 0.85);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.story-grid {
  display: grid;
  gap: 24px;
}

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

.story-visual {
  padding: 18px;
  display: grid;
  gap: 14px;
}

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

.journey-step {
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

.journey-step.is-active {
  border-color: rgba(0, 230, 118, 0.22);
  background: linear-gradient(180deg, rgba(0, 230, 118, 0.08), rgba(255, 255, 255, 0.03));
}

.chat-card,
.log-card,
.demo-card {
  border-radius: 22px;
}

.chat-header {
  margin-bottom: 12px;
  color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-bubble {
  max-width: 92%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 18px;
  font-size: 0.94rem;
}

.bubble-user {
  margin-left: auto;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.18);
}

.bubble-system {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent);
}

.demo-card h3 {
  margin-bottom: 8px;
}

.steps-grid,
.chips-grid,
.manifesto-grid {
  display: grid;
  gap: 16px;
}

.step-card,
.package-card,
.chip-card,
.manifesto-card {
  padding: 24px;
}

.step-number {
  margin-bottom: 18px;
  color: var(--accent);
}

.bento-grid {
  display: grid;
  gap: 16px;
}

.package-card {
  position: relative;
  border-radius: var(--radius-xl);
  min-height: 220px;
}

.span-wide {
  min-height: 260px;
}

.package-meta {
  margin-bottom: 18px;
  color: var(--accent);
}

.package-use {
  margin-top: 14px;
}

.package-featured {
  border-color: rgba(0, 230, 118, 0.24);
  background:
    radial-gradient(circle at top right, rgba(0, 230, 118, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(18, 19, 26, 0.98), rgba(18, 19, 26, 0.82));
  box-shadow:
    0 0 0 1px rgba(0, 230, 118, 0.06),
    0 24px 70px rgba(0, 230, 118, 0.08),
    var(--shadow);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.24);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip-card,
.manifesto-card {
  border-radius: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-align: left;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--text-soft);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  padding: 0 20px 18px;
}

.faq-panel p {
  margin: 0;
}

.cta-final {
  padding-top: 36px;
}

.final-card {
  padding: 28px;
}

.final-card h2 {
  margin-bottom: 14px;
}

.final-card p {
  max-width: 56ch;
  margin-bottom: 20px;
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-branding p,
.footer-note p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--text-soft);
}

.footer-links .site-nav-menu {
  width: 100%;
}

.footer-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.status-value {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.92rem;
}

.status-label,
.status-value {
  white-space: nowrap;
}

.footer-note {
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.hero-copy,
.hero-visual,
.story-visual,
.package-card,
.chip-card,
.manifesto-card,
.step-card,
.chat-card,
.log-card,
.demo-card,
.final-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-visual:hover,
.story-visual:hover,
.package-card:hover,
.chip-card:hover,
.manifesto-card:hover,
.step-card:hover,
.chat-card:hover,
.log-card:hover,
.demo-card:hover,
.final-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 230, 118, 0.2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .section {
    padding: 92px 0;
  }

  .site-nav {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
  }

  .hero {
    padding-top: 72px;
  }

  .story-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }

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

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

  .span-wide {
    grid-column: span 8;
  }

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

  .package-card:not(.span-wide):not(.package-featured) {
    grid-column: 1 / -1;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .hero-grid {
    gap: 48px;
  }

  .hero-visual {
    min-height: 620px;
    padding: 24px;
  }

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

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

  .package-card {
    min-height: 280px;
  }

  .package-card:not(.package-featured) {
    min-height: 250px;
  }

  .package-featured {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .header-shell {
    gap: 10px;
    align-items: center;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .nav-toggle {
    order: 3;
  }

  .site-header .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0 0;
    width: 100%;
  }

  .js .site-header .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    z-index: 1001;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  }

  .site-header .site-nav.is-open {
    display: flex;
  }

  .site-header .site-nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .site-header .site-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 0;
    padding: 14px;
  }

  .browser-body {
    padding: 18px;
  }

  .console-card,
  .mini-preview {
    display: none;
  }

  .story-grid {
    gap: 18px;
  }

  .footer-grid {
    gap: 14px;
  }

  .footer-status {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }

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

  .prompt-cursor,
  html.is-loaded .console-card .console-line,
  html.is-loaded .log-card .console-line,
  html.is-loaded .chat-bubble,
  html.is-loaded .demo-card,
  html.is-loaded .mini-preview {
    animation: none !important;
  }
}

@keyframes cursor-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.2;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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