/* ═══════════════════════════════════════════════════════════════════
   SAME — statelessagent.com
   Terminal noir. Blue brand. Red punch. Green action.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --bg:          #0d1117;
  --bg-surface:  #161b22;
  --bg-inset:    #010409;
  --border:      #21262d;
  --border-light:#30363d;

  --text:        #e6edf3;
  --text-dim:    #7d8590;
  --text-bright: #ffffff;

  --blue:        #4A90D9;
  --blue-light:  #7ab8e8;
  --blue-glow:   rgba(74, 144, 217, 0.15);
  --red:         #ff1a1a;
  --cyan:        #58a6ff;
  --green:       #3fb950;
  --amber:       #d29922;

  --mono:  'JetBrains Mono', 'SF Mono', 'Cascadia Code', monospace;
  --sans:  'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --max-w: 980px;
  --gutter: 1.5rem;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--blue-light); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.8; }

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

code { font-family: var(--mono); font-size: 0.9em; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

::selection { background: rgba(74, 144, 217, 0.25); color: var(--text); }

/* ── Layout ────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 3.5rem 0;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

/* ── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
* { scrollbar-width: thin; scrollbar-color: var(--border-light) var(--bg); }

/* ── Skip Link ─────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--cyan); color: var(--bg);
  padding: 0.5rem 1rem; font-size: 0.85rem; z-index: 200;
}
.skip-link:focus { top: 0; }


/* ═══════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-bright);
  text-shadow: 0 0 20px rgba(74, 144, 217, 0.2);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--blue-light); opacity: 1; }

.nav-links {
  display: flex; gap: 1.5rem; align-items: center; list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

.nav-cta {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg) !important;
  -webkit-text-fill-color: var(--bg) !important;
  background: var(--green);
  padding: 0.35rem 0.9rem;
  border-radius: 5px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85 !important; }


/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  padding: 7rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 550px;
  background: radial-gradient(ellipse, rgba(74, 144, 217, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.12s;
}

.hero-label-name {
  font-family: var(--mono);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.15s;
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.18s;
}

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-bright);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}

.hero-resolve {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--red);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.54s;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.72s;
}

/* Works-with integration strip */
.works-with-strip {
  margin: 1.25rem 0 0.75rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.58s;
}

.works-with-tagline {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

/* Marquee auto-scroll strip */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: inline-flex;
  gap: 1.75rem;
  animation: marquee-scroll 30s linear infinite;
  padding: 0.25rem 0;
}

.marquee-track > * {
  flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.works-with-badge {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(1, 4, 9, 0.7);
  border: 1px solid var(--border-light);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  height: 36px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.works-with-badge:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(88, 166, 255, 0.12);
}

.works-with-any {
  color: var(--text-dim);
  font-weight: 400;
  border-style: dashed;
}

/* Install block with OS tabs */
.install-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.90s;
}

.install-block[id] {
  scroll-margin-top: 80px;
}

.install-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.install-tab {
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.85rem;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}

.install-tab + .install-tab {
  border-left: 1px solid var(--border);
}

.install-tab.active {
  background: var(--bg-surface);
  color: var(--text);
}

.install-tab:hover:not(.active) {
  color: var(--text);
}

.install-cmd.install-os {
  display: none;
}

.install-cmd.install-os.active {
  display: inline-flex;
}

/* Install command block */
.install-cmd {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-inset);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  margin-bottom: 0;
  position: relative;
  box-shadow: 0 0 40px rgba(63, 185, 80, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.install-cmd:hover {
  border-color: rgba(63, 185, 80, 0.3);
  box-shadow: 0 0 40px rgba(63, 185, 80, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.install-cmd code {
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  color: var(--green);
  white-space: nowrap;
}

.install-cmd .prompt {
  color: var(--text-dim);
  user-select: none;
}

.copy-btn {
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.copy-btn:hover { color: var(--text); border-color: var(--text-dim); }

/* Demo CTA block */
.hero-demo-cta {
  margin: 1.25rem 0 0.75rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.96s;
}

.demo-cta-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.demo-cmd {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 32px rgba(88, 166, 255, 0.10), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.demo-cmd:hover {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 40px rgba(88, 166, 255, 0.18), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.demo-cmd code {
  color: var(--cyan) !important;
  font-weight: 600;
}

.demo-cta-hook {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.hero-after-install {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1.02s;
}

.hero-after-install code {
  color: var(--green);
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1.14s;
}

.hero-links a {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}
.hero-links a:hover { color: var(--text); border-color: var(--text-dim); opacity: 1; }

.hero-links .star-link {
  border-color: var(--border-light);
  color: var(--text);
}

.inspect-link {
  text-decoration: underline;
  text-decoration-color: var(--border-light);
  text-underline-offset: 2px;
}

/* Social proof strip */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1.26s;
}

.proof-item { white-space: nowrap; }

.proof-sep {
  color: var(--border-light);
  user-select: none;
}

.proof-link {
  color: var(--text-dim);
  text-decoration: underline;
  text-decoration-color: var(--border-light);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.proof-link:hover { color: var(--text); opacity: 1; }

/* Alt install methods (inline on landing page) */
.alt-install {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1.02s;
}

.alt-install summary {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.alt-install summary::-webkit-details-marker { display: none; }
.alt-install summary::before { content: '+ '; }
.alt-install[open] summary::before { content: '- '; }

.alt-install summary:hover { color: var(--text); }

.alt-install-grid {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.alt-install-option {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.alt-install-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  min-width: 10ch;
}

.alt-install-option code {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--green);
  word-break: break-all;
}


/* ═══════════════════════════════════════════════════════════════════
   HANDOFF PROOF
   ═══════════════════════════════════════════════════════════════════ */
.handoff-proof {
  padding: 0 0 2rem;
}

.handoff-intro {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 1.25rem;
}

.handoff-terminal {
  max-width: 540px;
  margin: 0 auto;
}

.handoff-terminal .terminal-body {
  min-height: auto;
  padding: 1rem 1.5rem;
}

.handoff-terminal.terminal:not(.is-visible) .term-line,
.handoff-terminal .term-line {
  opacity: 1;
  animation: none;
}

.handoff-caption {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1rem;
}


/* ═══════════════════════════════════════════════════════════════════
   WHAT YOU GET
   ═══════════════════════════════════════════════════════════════════ */
.whatyouget {
  padding: 0 0 2rem;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wyg-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-surface);
  transition: border-color 0.25s;
}

.wyg-item:hover {
  border-color: var(--border-light);
}

.wyg-icon-text {
  font-family: var(--mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 20px rgba(74, 144, 217, 0.25);
}

.wyg-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.wyg-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wyg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .wyg-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .wyg-desc { font-size: 0.75rem; }
}


/* ═══════════════════════════════════════════════════════════════════
   TERMINAL DEMO
   ═══════════════════════════════════════════════════════════════════ */
.terminal-section {
  padding: 0 0 3rem;
}

.terminal {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-inset);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(74, 144, 217, 0.06);
  position: relative;
}

.terminal::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-right: 42px;
}

.terminal-body {
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  min-height: 320px;
}

.term-line {
  font-family: var(--mono);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Terminal stays hidden until observed */
.terminal:not(.is-visible) .term-line { opacity: 0; }

.terminal.is-visible .term-line {
  opacity: 0;
  animation: termFade 0.35s ease forwards;
  animation-delay: var(--d, 0s);
}

.term-blank { height: 0.85em; }

.term-prompt { color: var(--text-dim); }
.term-cmd    { color: var(--green); }
.term-user   { color: var(--text); }
.term-same   { color: var(--blue-light); font-weight: 600; }
.term-file   { color: var(--text-dim); padding-left: 1.5ch; }
.term-resp   { color: var(--text); }
.term-warn   { color: var(--red); font-weight: 600; }
.term-dim    { color: var(--text-dim); }
.term-ok     { color: var(--green); }

@keyframes termFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}

.terminal-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.terminal-dot.active {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.terminal-dot:hover {
  border-color: var(--text-dim);
}


/* ═══════════════════════════════════════════════════════════════════
   PAIN STRIP
   ═══════════════════════════════════════════════════════════════════ */
.pain {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 4.5rem 0;
  margin-top: 1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.pain-divider {
  background: var(--border-light);
  align-self: stretch;
}

.pain-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.pain-without .pain-title { color: var(--text-dim); }
.pain-with .pain-title    { color: var(--blue-light); }

.pain-item {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.pain-item:last-child { margin-bottom: 0; }

.pain-marker {
  font-family: var(--mono);
  font-size: 0.7rem;
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
}

.pain-without .pain-marker { color: var(--text-dim); }
.pain-without .pain-item   { color: var(--text-dim); }
.pain-with .pain-marker    { color: var(--green); }
.pain-with .pain-item      { color: var(--text); }

.pain-punchline {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
}

.pain-without .pain-punchline { color: var(--text-dim); }
.pain-with .pain-punchline    { color: var(--blue-light); }


/* ═══════════════════════════════════════════════════════════════════
   SEED VAULTS
   ═══════════════════════════════════════════════════════════════════ */
.seeds {
  padding: 3rem 0 3rem;
}

.seeds h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.seeds-install {
  margin-bottom: 1rem;
}

.seeds-install .install-cmd {
  opacity: 1;
  animation: none;
}

.seeds-stats {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.seeds-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.seed-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.seeds-community {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.seed-pill {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.seed-pill:hover {
  border-color: var(--border-light);
  color: var(--text);
  opacity: 1;
}

.seeds-cta {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.seeds-cta a {
  font-size: 0.9rem;
  margin-left: 0.25rem;
}


/* ═══════════════════════════════════════════════════════════════════
   WEB DASHBOARD
   ═══════════════════════════════════════════════════════════════════ */
.dashboard {
  padding: 3rem 0 3rem;
}

.dashboard::before {
  content: '';
  display: block;
  height: 1px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-light) 20%,
    var(--blue) 50%,
    var(--border-light) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

.dashboard h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.dashboard-install {
  margin-bottom: 1rem;
}

.dashboard-install .install-cmd {
  opacity: 1;
  animation: none;
}

.dashboard-tagline {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

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

@media (max-width: 768px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   COMPASS / WHY SAME
   ═══════════════════════════════════════════════════════════════════ */
.compass {
  padding: 2.5rem 0 5rem;
}

.compass h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.compass-intro {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

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

/* Cards flow naturally in 3-column grid */

.compass-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.compass-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(74, 144, 217, 0.06);
}

.compass-card h3 {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.6rem;
}

.compass-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.compass-card .accent {
  color: var(--blue-light);
}

/* Memory Integrity — featured card */
.compass-card--integrity {
  grid-column: 1 / -1;
  border-color: var(--cyan);
  border-width: 1px;
  box-shadow: 0 0 24px rgba(88, 166, 255, 0.08), 0 0 0 1px rgba(88, 166, 255, 0.06);
  padding: 2.25rem 2.5rem;
}

.compass-card--integrity:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 32px rgba(88, 166, 255, 0.14), 0 0 0 1px rgba(88, 166, 255, 0.10);
}

.compass-card--integrity h3 {
  font-size: 1.1rem;
  color: var(--cyan);
}

.compass-card--integrity p {
  font-size: 0.95rem;
  max-width: 640px;
}

.compat {
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compat-label { color: var(--text-dim); white-space: nowrap; }

.compat-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.compat-item {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.compat-item:hover { border-color: var(--border-light); color: var(--text); opacity: 1; }


/* ═══════════════════════════════════════════════════════════════════
   METRICS
   ═══════════════════════════════════════════════════════════════════ */
.metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 3rem 0;
}

.metrics h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 2.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(22, 27, 34, 0.5);
}

.metric-value {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-light);
  text-shadow: 0 0 20px rgba(74, 144, 217, 0.3);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.metrics-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
}

.metrics-note a { font-size: 0.85rem; }

.metrics-footnote {
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.metrics-footnote a { font-size: 0.75rem; }


/* ═══════════════════════════════════════════════════════════════════
   COMPOUNDING
   ═══════════════════════════════════════════════════════════════════ */
.compound {
  padding: 3.5rem 0;
}

.compound h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 3rem;
}

.sessions {
  display: grid;
  gap: 2rem;
  max-width: 640px;
}

.session {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.session-num {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  min-width: 2.5ch;
}

.session:nth-child(1) .session-num { color: var(--text-dim); }
.session:nth-child(2) .session-num { color: var(--text); }
.session:nth-child(3) .session-num { color: var(--blue-light); }

.session-text h3 {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.session:nth-child(1) .session-text h3 { color: var(--text-dim); }
.session:nth-child(3) .session-text h3 { color: var(--text-bright); }

.session-text p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.how {
  padding: 3.5rem 0;
}

/* Gradient line separators for premium feel */
.seeds::before,
.compass::before,
.how::before,
.founder::before {
  content: '';
  display: block;
  height: 1px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-light) 20%,
    var(--blue) 50%,
    var(--border-light) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

.how h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 2.5rem;
}

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

.step {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-surface);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.step:hover {
  border-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(74, 144, 217, 0.06);
}

.step-num {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.arch-note {
  padding: 1rem 1.25rem;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.arch-note a { font-size: 0.8rem; white-space: nowrap; }


/* ═══════════════════════════════════════════════════════════════════
   CLAUDE.MD COMPARISON
   ═══════════════════════════════════════════════════════════════════ */
.comparison {
  padding: 3rem 0;
}

.comparison::before {
  content: '';
  display: block;
  height: 1px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-light) 20%,
    var(--blue) 50%,
    var(--border-light) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

.comparison h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.comparison-text {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.75;
}

.comparison-text em {
  color: var(--text);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════════════════════════════════ */
.founder {
  padding: 3.5rem 0;
}

.founder-content {
  max-width: 620px;
}

.founder-quote {
  border-left: 2px solid var(--blue);
  padding-left: 1.5rem;
  margin: 0;
}

.founder-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.founder-quote p:last-child { margin-bottom: 0; }

.founder-attribution {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.founder-name {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
}

.founder-role {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.founder-role a {
  font-size: 0.78rem;
}


/* ═══════════════════════════════════════════════════════════════════
   ALTERNATIVES COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════════ */
.alternatives {
  padding: 3rem 0;
}

.alternatives::before {
  content: '';
  display: block;
  height: 1px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-light) 20%,
    var(--blue) 50%,
    var(--border-light) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

.alternatives h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.alternatives-intro {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.alternatives-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.alternatives-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.82rem;
}

.alternatives-table thead th {
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-bright);
  border-bottom: 2px solid var(--border-light);
  background: var(--bg-surface);
  white-space: nowrap;
}

.alternatives-table thead th:first-child {
  text-align: left;
}

.alternatives-table thead th:nth-child(2) {
  color: var(--blue-light);
  text-shadow: 0 0 12px rgba(74, 144, 217, 0.25);
}

.alternatives-table tbody td {
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  white-space: nowrap;
}

.alternatives-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.alternatives-table tbody tr:hover {
  background: rgba(22, 27, 34, 0.5);
}

.alternatives-table .alt-yes {
  color: var(--green);
  font-weight: 600;
}

.alternatives-table .alt-no {
  color: var(--text-dim);
  opacity: 0.7;
}

.alternatives-table .alt-neutral {
  color: var(--text-dim);
}

/* SAME features grid (replaces table as primary view) */
.same-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.same-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s;
}

.same-feature:hover {
  border-color: var(--border-light);
}

.same-feature-check {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.same-feature-name {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.2rem;
}

.same-feature-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Collapsible comparison details */
.comparison-details {
  margin-top: 0.5rem;
}

.comparison-details summary {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

.comparison-details summary::-webkit-details-marker { display: none; }
.comparison-details summary::before { content: '+ '; }
.comparison-details[open] summary::before { content: '- '; }
.comparison-details summary:hover { color: var(--text); }

.comparison-details .alternatives-table-wrap {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .same-features-grid { grid-template-columns: 1fr; }
  .alternatives-table { font-size: 0.72rem; }
  .alternatives-table thead th,
  .alternatives-table tbody td { padding: 0.5rem 0.6rem; }
}


/* ═══════════════════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════════════════ */
.cta {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 65%);
  pointer-events: none;
}

.cta h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
}

.cta .install-block {
  margin-bottom: 1.25rem;
  opacity: 1;
  animation: none;
}

.cta-demo {
  margin: 1.25rem 0 1.5rem;
}

.cta-demo .demo-cta-label,
.cta-demo .demo-cta-hook {
  text-align: center;
}

.cta-demo .install-cmd {
  opacity: 1;
  animation: none;
}

.cta-sub {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-links a {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.cta-links a:hover { color: var(--text); opacity: 1; }


/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  opacity: 0.7;
}

.footer-brand span {
  color: var(--blue-light);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(74, 144, 217, 0.2);
}

.footer-links {
  display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--text); opacity: 1; }


/* ═══════════════════════════════════════════════════════════════════
   SCROLL-DRIVEN ANIMATIONS (CSS native, no JS)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScaleUp {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeSlideUpSubtle {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-driven: supported browsers ─────────────────────────── */
@supports (animation-timeline: view()) {
  /* Default: fade + slide up */
  .reveal-on-scroll {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  /* Stats / metrics: scale up for a "count-up" feel */
  .reveal-scale {
    animation: fadeScaleUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* Handoff terminal: slide in from left */
  .reveal-from-left {
    animation: slideFromLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* Simple fade for text-heavy sections */
  .reveal-fade {
    animation: fadeIn 0.8s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* Subtle slide up for smaller child elements */
  .reveal-subtle {
    animation: fadeSlideUpSubtle 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  /* ── Stagger delays for child cards ────────────────────────── */
  .reveal-stagger-1 { animation-range: entry 0% entry 35%; }
  .reveal-stagger-2 { animation-range: entry 3% entry 38%; }
  .reveal-stagger-3 { animation-range: entry 6% entry 41%; }
  .reveal-stagger-4 { animation-range: entry 9% entry 44%; }
  .reveal-stagger-5 { animation-range: entry 12% entry 47%; }
  .reveal-stagger-6 { animation-range: entry 15% entry 50%; }
  .reveal-stagger-7 { animation-range: entry 18% entry 53%; }

  /* Tool badges: sequential subtle fade */
  .reveal-badge {
    animation: fadeSlideUpSubtle 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
  }
}

/* ── Fallback: JS-driven reveal for browsers without scroll-driven animations ── */
@supports not (animation-timeline: view()) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  [data-reveal-d="1"] { transition-delay: 0.08s; }
  [data-reveal-d="2"] { transition-delay: 0.16s; }
  [data-reveal-d="3"] { transition-delay: 0.24s; }
  [data-reveal-d="4"] { transition-delay: 0.32s; }
  [data-reveal-d="5"] { transition-delay: 0.40s; }
  [data-reveal-d="6"] { transition-delay: 0.48s; }
  [data-reveal-d="7"] { transition-delay: 0.56s; }
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 4.5rem 0 1.5rem; }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pain-divider { display: none; }

  .seeds-featured { grid-template-columns: 1fr; }

  .compass-grid { grid-template-columns: 1fr; }
  /* Cards stack single-column on mobile */

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

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

  .session { grid-template-columns: 1fr; gap: 0.5rem; }
  .session-num { font-size: 1.8rem; }

  .nav-links .hide-mobile { display: none; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-left { align-items: center; }

  .hero-links { gap: 0.75rem; }

  .term-desktop { display: none; }

  .terminal-body { min-height: 260px; }
}

@media (max-width: 480px) {
  .hero h1,
  .hero-resolve { font-size: 1.8rem; }

  .install-cmd {
    max-width: 100%;
    overflow-x: auto;
  }
  .install-cmd code { font-size: 0.68rem; }

  .nav-links { gap: 0.75rem; }
  .nav-cta { padding: 0.3rem 0.65rem; }

  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .arch-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
