:root {
  color-scheme: dark;
  --ink: #070606;
  --charcoal: #100d0b;
  --walnut: #21180e;
  --amber: #d6a84f;
  --gold: #f2cf7a;
  --bone: #f4efe6;
  --muted: #a9a098;
  --line: rgba(242, 207, 122, 0.16);
  --line-strong: rgba(242, 207, 122, 0.28);
  --shadow: rgba(0, 0, 0, 0.55);
  --radius: 0.55rem;
  --radius-lg: 0.9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(214, 168, 79, 0.18), transparent 26rem),
    radial-gradient(circle at 8% 42%, rgba(99, 68, 27, 0.28), transparent 28rem),
    linear-gradient(135deg, var(--ink), #0d0907 45%, #15100b);
  color: var(--bone);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

/* Selection */
::selection {
  background: rgba(242, 207, 122, 0.32);
  color: var(--ink);
}

/* Scrollbar — subtle warm accent */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(242, 207, 122, 0.18);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(242, 207, 122, 0.32);
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4.75rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 6, 6, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand,
nav,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  color: var(--bone);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: opacity 200ms ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
  filter: drop-shadow(0 0 0.6rem rgba(214, 168, 79, 0.25));
  transition: filter 300ms ease, transform 300ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 0 1rem rgba(214, 168, 79, 0.45));
  transform: scale(1.05);
}

/* ─── Navigation ─── */
nav {
  gap: 0.35rem;
  color: rgba(244, 239, 230, 0.68);
  font-size: 0.96rem;
  font-weight: 700;
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

nav a:hover {
  color: var(--gold);
  background: rgba(242, 207, 122, 0.08);
  transform: translateY(-1px);
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 220ms ease;
}

nav a:hover::after {
  width: 40%;
}

nav a.nav-pill {
  border: 1px solid var(--line-strong);
  background: rgba(242, 207, 122, 0.06);
  color: var(--bone);
}

nav a.nav-pill:hover {
  background: rgba(242, 207, 122, 0.14);
  color: var(--gold);
}

nav a.nav-pill::after {
  display: none;
}

.nav-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  opacity: 0.9;
}

/* ─── Layout ─── */
main {
  width: min(1500px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(86vh - 4.75rem);
  padding: clamp(2.25rem, 5vw, 4.5rem) 0 clamp(2.25rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 207, 122, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(242, 207, 122, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(242, 207, 122, 0.04); }
}

h1,
h2 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 4.35vw, 4.9rem);
  background: linear-gradient(180deg, var(--bone) 55%, rgba(244, 239, 230, 0.72));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h3 {
  margin: 0 0 0.5rem;
  color: var(--bone);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lede,
.feature-band > p,
.workflow-copy p,
.download-panel p,
.statement p,
.section-sub {
  color: var(--muted);
  line-height: 1.75;
}

.lede {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: rgba(244, 239, 230, 0.72);
  font-size: clamp(1.04rem, 1.28vw, 1.2rem);
  line-height: 1.72;
}

/* ─── Hero CTA Row ─── */
.hero-cta-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

/* ─── Install command ─── */
.install-command {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 0.85rem;
  border: 1px solid rgba(242, 207, 122, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow-x: auto;
}

.install-command .prompt {
  color: rgba(242, 207, 122, 0.65);
  font-family: "SFMono-Regular", "Cascadia Code", "Liberation Mono", monospace;
  font-size: 0.92rem;
  user-select: none;
}

.install-command code {
  display: block;
  padding: 0.85rem 1.1rem 0.85rem 0.35rem;
  color: var(--gold);
  font-family: "SFMono-Regular", "Cascadia Code", "Liberation Mono", monospace;
  font-size: 0.92rem;
  white-space: nowrap;
}

.install-command.compact {
  width: min(100%, 34rem);
}

/* ─── Buttons ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(242, 207, 122, 0.45);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #1b1208;
  box-shadow: 0 1rem 3rem rgba(214, 168, 79, 0.24);
}

.button.primary:hover {
  box-shadow: 0 1.2rem 3.5rem rgba(214, 168, 79, 0.35);
}

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

/* ─── Download Dropdown ─── */
.download-dropdown {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.download-toggle {
  gap: 0.5rem;
}

.download-toggle .chevron {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  opacity: 0.8;
  transition: transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.download-dropdown:hover .chevron,
.download-dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.download-options {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  z-index: 20;
  display: grid;
  gap: 2px;
  min-width: 17rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(14, 11, 9, 0.98);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.65);

  opacity: 0;
  transform: translateY(-0.5rem) scale(0.97);
  pointer-events: none;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.download-dropdown:hover .download-options,
.download-dropdown:focus-within .download-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.download-options::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 2rem;
  width: 10px;
  height: 10px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(14, 11, 9, 0.98);
  transform: rotate(45deg);
}

.download-options a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  color: var(--bone);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.download-options a:hover {
  background: rgba(242, 207, 122, 0.1);
  color: var(--gold);
  transform: translateX(3px);
}

.platform-icon {
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
  fill: currentColor;
  opacity: 0.9;
}

.release-note {
  margin: 1.1rem 0 0;
  color: rgba(169, 160, 152, 0.82);
  font-size: 0.92rem;
}

.download-actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

/* ─── Hero stats strip ─── */
.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  margin: 2.2rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.hero-stats strong {
  color: var(--bone);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.hero-stats span {
  color: rgba(169, 160, 152, 0.85);
  font-size: 0.8rem;
}

/* ─── Hero Preview ─── */
.hero-preview {
  position: relative;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(242, 207, 122, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow: 0 2.5rem 8rem var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.hero-preview:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 3rem 10rem var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hero-preview::after {
  content: "";
  position: absolute;
  inset: auto 8% -1.2rem 8%;
  height: 2.2rem;
  background: radial-gradient(ellipse, rgba(214, 168, 79, 0.34), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

.hero-preview img,
.showcase img {
  width: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.hero-preview:hover img {
  transform: scale(1.03);
}

.hero-preview img {
  aspect-ratio: 3 / 2;
  min-height: clamp(28rem, 42vw, 40rem);
  object-position: center;
}

.hero-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(7, 6, 6, 0.72);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-chip-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 207, 122, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}

.showcase img {
  aspect-ratio: 16 / 10;
}

/* ─── Tech strip ─── */
.techstrip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(244, 239, 230, 0.7);
  overflow-x: auto;
  white-space: nowrap;
}

.techstrip-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.techstrip ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.techstrip li {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.techstrip li:hover {
  color: var(--gold);
  border-color: var(--line-strong);
  background: rgba(242, 207, 122, 0.06);
}

/* ─── Statement ─── */
.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.philosophy-copy blockquote {
  max-width: 900px;
  margin: 0;
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.philosophy-copy blockquote span {
  color: var(--gold);
}

.philosophy-copy p {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: rgba(244, 239, 230, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.philosophy-copy cite {
  display: block;
  margin-top: 1rem;
  color: rgba(242, 207, 122, 0.72);
  font-size: 0.9rem;
}

.nietzsche-card {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

.nietzsche-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) sepia(0.2);
}

.nietzsche-card figcaption {
  color: rgba(169, 160, 152, 0.76);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ─── Section head ─── */
.section-head {
  max-width: 44rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.section-head h2 {
  max-width: 18ch;
  margin-top: 0.35rem;
}

.section-sub {
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

/* ─── Features grid ─── */
.features {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.75rem 1.6rem 1.85rem;
  background: rgba(7, 6, 6, 0.82);
  transition: background 260ms ease, transform 260ms ease;
}

.feature-card:hover {
  background: rgba(14, 10, 7, 0.95);
  transform: translateY(-2px);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 0 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 207, 122, 0.35), transparent);
  opacity: 0;
  transition: opacity 260ms ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.6rem;
  background: rgba(242, 207, 122, 0.08);
  color: var(--gold);
}

.feature-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

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

/* ─── Feature / Workflow / Download bands ─── */
.feature-band,
.workflow,
.download-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-band h2,
.workflow h2,
.download-panel h2 {
  max-width: 10ch;
}

/* ─── Showcase ─── */
.showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 calc(50% - 50vw);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

figure {
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(7, 6, 6, 0.72);
  overflow: hidden;
}

figure img {
  border-radius: 0.35rem;
}

figure:hover img {
  transform: scale(1.02);
}

figcaption {
  margin-top: 1rem;
  color: var(--muted);
}

/* ─── Steps ─── */
.steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5.2rem;
  padding: 1rem;
  background: rgba(7, 6, 6, 0.78);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  transition: background 220ms ease;
}

.steps li:hover {
  background: rgba(7, 6, 6, 0.9);
}

.steps span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

/* ─── Shortcuts ─── */
.shortcuts {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shortcut-grid li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 6, 6, 0.62);
  color: rgba(244, 239, 230, 0.82);
  transition: border-color 200ms ease, background 200ms ease;
}

.shortcut-grid li:hover {
  border-color: var(--line-strong);
  background: rgba(14, 10, 7, 0.9);
}

.shortcut-grid li span {
  color: var(--muted);
  font-size: 0.92rem;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  padding: 0.25rem 0.55rem;
  margin-right: 0.3rem;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 0.4rem;
  background: rgba(242, 207, 122, 0.08);
  color: var(--gold);
  font-family: "SFMono-Regular", "Cascadia Code", "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ─── FAQ ─── */
.faq {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}

.faq-grid details {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 6, 6, 0.62);
  transition: border-color 200ms ease, background 200ms ease;
}

.faq-grid details[open] {
  border-color: var(--line-strong);
  background: rgba(14, 10, 7, 0.9);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--bone);
  font-weight: 800;
  letter-spacing: -0.01em;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-grid details[open] summary::after {
  content: "\2013";
  background: rgba(242, 207, 122, 0.12);
  transform: rotate(180deg);
}

.faq-grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-grid code {
  padding: 0.05rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: rgba(242, 207, 122, 0.08);
  color: var(--gold);
  font-family: "SFMono-Regular", "Cascadia Code", "Liberation Mono", monospace;
  font-size: 0.85em;
}

.download-panel {
  align-items: center;
}

/* ─── Footer ─── */
footer {
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.25rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bone);
  font-weight: 800;
}

.foot-brand img {
  width: 1.4rem;
  height: 1.4rem;
}

.foot-meta {
  color: rgba(169, 160, 152, 0.8);
  font-size: 0.88rem;
}

.foot-meta a {
  color: var(--gold);
}

.foot-meta a:hover {
  text-decoration: underline;
}

.foot-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.foot-links a:hover {
  color: var(--gold);
}

.footer-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

/* ─── Scroll-reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

.feature-card.reveal,
.shortcut-grid li.reveal,
.faq-grid details.reveal,
.steps li.reveal {
  transform: translateY(14px);
}

.feature-card.reveal-in,
.shortcut-grid li.reveal-in,
.faq-grid details.reveal-in,
.steps li.reveal-in {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  nav a {
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
  }

  .hero,
  .statement,
  .feature-band,
  .workflow,
  .download-panel,
  .showcase,
  .feature-grid,
  .faq-grid,
  .shortcut-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-preview img {
    min-height: 0;
  }

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

  .showcase {
    margin-inline: 0;
  }

  .nietzsche-card {
    border-left: 0;
    padding-left: 0;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .download-dropdown {
    width: 100%;
  }

  .download-toggle {
    width: 100%;
  }

  .download-options {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-top: 0.5rem;
    box-shadow: none;
    background: rgba(7, 6, 6, 0.55);
    border-radius: 0.6rem;
    width: 100%;
  }

  .download-options::before {
    display: none;
  }
}
