/* Roomy marketing landing — tokens aligned with RoomyTheme (dark) + roomy_12_landing_page.md */

:root {
  --bg-base: #0f1014;
  --bg-elevated: #1a1b22;
  --bg-inset: #0c0d11;
  --accent: #4f8ff7;
  --accent-hover: #6ba3ff;
  --accent-subtle: rgba(79, 143, 247, 0.14);
  --accent-tint-wash: rgba(79, 143, 247, 0.04);
  --text-primary: #ececf1;
  --text-secondary: #9b9ba8;
  --text-tertiary: #65656b;
  --text-inverted: #f8fafc;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-default: rgba(255, 255, 255, 0.14);
  --status-active: #34d399;
  --status-recent: #38bdf8;
  --status-inactive: #fbbf24;
  --status-dormant: #f87171;
  --shadow-window: 0 32px 80px rgba(0, 0, 0, 0.6);
  --max-content: 1120px;
  --nav-h: 60px;
  --font-sans: "Geist Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "Geist Sans", var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.mono {
  font-family: "Geist Mono", var(--font-mono);
  font-size: 13px;
  font-weight: 400;
}

/* —— Typography scale —— */
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
}

.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
}

.caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.caption-strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.nav-text {
  font-size: 14px;
  font-weight: 500;
}

.cta-text {
  font-size: 15px;
  font-weight: 600;
}

/* —— Layout —— */
.wrap {
  width: 100%;
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 900px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 420px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* —— Nav —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(15, 16, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 200ms ease;
}

.site-nav.nav--scrolled {
  background: rgba(15, 16, 20, 0.95);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-content);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
}

.nav-center a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms ease;
}

.nav-center a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 120ms ease;
}

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

.btn-nav-secondary {
  height: 32px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
}

.btn-nav-secondary:hover {
  border-color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.03);
}

.btn-nav-primary {
  height: 32px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.btn-nav-primary:hover {
  background: var(--accent-hover);
}

.btn-hero-secondary {
  height: 40px;
  padding: 0 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-hero-primary {
  height: 40px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
}

.btn-block {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

.btn-block + .btn-block {
  margin-top: 8px;
}

.btn-pricing-secondary {
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}

.btn-pricing-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 420px) {
  .nav-download {
    display: none;
  }
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out;
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-shot {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease-out,
    transform 700ms ease-out;
}

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

.reveal-shot.reveal-delay-shot {
  transition-delay: 120ms;
}

/* —— Hero —— */
.hero {
  padding-top: calc(120px + var(--nav-h));
  padding-bottom: 80px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-subtle);
  border: 1px solid rgba(79, 143, 247, 0.4);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-line-secondary {
  color: var(--text-secondary);
}

.hero-sub {
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-meta {
  margin-top: 12px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.hero-window-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

@media (max-width: 768px) {
  .hero-window-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-window {
    width: min(900px, calc(100vw - 48px));
  }
}

.hero-window {
  width: min(900px, 100%);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease-out,
    transform 600ms ease-out;
  transition-delay: 200ms;
}

.hero-window.hero-window--ready {
  opacity: 1;
  transform: translateY(0);
}

.mac-window {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-window);
  overflow: hidden;
}

.mac-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.traffic .r {
  background: #ff5f56;
}
.traffic .y {
  background: #ffbd2e;
}
.traffic .g {
  background: #27c93f;
}

.titlebar-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Mock S03 Results Overview */
.mock-s03 {
  padding: 20px 24px 28px;
  min-height: 320px;
  text-align: left;
}

.mock-hero-stat {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.mock-hero-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.mock-bars {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mock-bar-row {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.mock-bar-track {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-inset);
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.85;
}

.mock-age {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.mock-age-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.mock-age-bar {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.mock-age-seg {
  flex: 1;
}
.mock-age-seg:nth-child(1) {
  background: var(--status-dormant);
}
.mock-age-seg:nth-child(2) {
  background: var(--status-inactive);
}
.mock-age-seg:nth-child(3) {
  background: var(--status-recent);
}
.mock-age-seg:nth-child(4) {
  background: var(--status-active);
}

/* —— Social proof —— */
.social-strip {
  height: 72px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(26, 27, 34, 0.5);
  display: flex;
  align-items: center;
}

.social-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 48px;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 900px) {
  .social-inner {
    padding: 12px 24px;
    height: auto;
    min-height: 72px;
  }
}

.social-aside {
  color: var(--text-tertiary);
  font-size: 13px;
  white-space: nowrap;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.press-logos svg {
  height: 18px;
  width: auto;
  opacity: 0.45;
  color: var(--text-tertiary);
}

/* —— Feature rows —— */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 901px) {
  .feature-grid--shot-left {
    grid-template-columns: 3fr 2fr;
  }

  .feature-grid--shot-right {
    grid-template-columns: 2fr 3fr;
  }

  .feature-grid--shot-right .copy-col {
    order: 1;
  }

  .feature-grid--shot-right .mock-col {
    order: 2;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Mobile: copy then screenshot (roomy_12 responsive notes) */
  .feature-grid .copy-col {
    order: 1;
  }

  .feature-grid .mock-col {
    order: 2;
  }
}

.feature-grid .copy-col {
  max-width: 480px;
}

@media (max-width: 900px) {
  .feature-grid .copy-col {
    max-width: none;
  }
}

.feature-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.feature-bullets li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-secondary);
}

.feature-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Mock S02 */
.mock-s02 {
  padding: 16px;
  min-height: 280px;
  font-size: 12px;
}

.mock-scan-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--text-tertiary);
}

.mock-ticker {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-inset);
  max-height: 160px;
  overflow: hidden;
}

.mock-ticker-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.mock-ticker-row:last-child {
  border-bottom: none;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.mock-stat-box {
  padding: 10px;
  border-radius: 8px;
  background: rgba(79, 143, 247, 0.08);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.mock-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.mock-stat-lbl {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* Mock S04 list */
.mock-s04 {
  padding: 12px;
  min-height: 280px;
}

.mock-row {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 12px;
}

.mock-row.dormant {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.mock-row.active {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.mock-path {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
}

.mock-meta {
  color: var(--text-tertiary);
  font-size: 11px;
}

/* Mock S06 */
.mock-s06 {
  padding: 16px;
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 16px;
}

@media (max-width: 600px) {
  .mock-s06 {
    grid-template-columns: 1fr;
  }
}

.mock-list-panel {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-inset);
  padding: 8px;
}

.mock-side-panel {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
  font-size: 11px;
  color: var(--text-tertiary);
}

.mock-disk-bars {
  margin: 12px 0;
}

.mock-disk-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-base);
  margin-bottom: 6px;
  overflow: hidden;
}

.mock-disk-bar .fill {
  height: 100%;
  background: var(--accent);
  width: 72%;
}

.mock-delete-btn {
  margin-top: 16px;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.25);
  color: #fecaca;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.trust-callout {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-callout p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* —— Philosophy —— */
.philo {
  padding: 80px 24px;
}

.philo-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.philo-quote {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.philo-quote .qm {
  color: var(--accent);
}

.philo-pills {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pill svg {
  width: 12px;
  height: 12px;
  color: var(--text-tertiary);
}

/* —— Testimonials —— */
.testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.t-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.t-card:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.t-stars span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.t-quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.t-sep {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 16px 0;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-inset);
  border: 1px solid var(--border-subtle);
}

.t-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.t-role {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* —— Pricing —— */
.pricing-section {
  text-align: center;
}

.pricing-card {
  max-width: 440px;
  margin: 32px auto 0;
  padding: 32px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-default);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(79, 143, 247, 0.2);
  text-align: center;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 11px;
  overflow: hidden;
  line-height: 0;
}

.pricing-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.price-big {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-sub {
  font-size: 16px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.pricing-list {
  text-align: left;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-list svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent);
}

.download-spec-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.pricing-actions {
  margin-top: 24px;
}

.faq-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 24px auto 0;
  text-align: left;
}

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

.faq-item h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.faq-divider {
  display: none;
}

@media (min-width: 769px) {
  .faq-grid-wrap {
    display: flex;
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 24px auto 0;
  }

  .faq-item {
    flex: 1;
    padding: 0 16px;
    border-left: 1px solid var(--border-subtle);
  }

  .faq-item:first-child {
    border-left: none;
    padding-left: 0;
  }

  .faq-item:last-child {
    padding-right: 0;
  }
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-col-center {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 32px;
}

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

  .footer-col-center {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-tertiary);
  max-width: 260px;
}

.footer-links h5 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-right {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  color: var(--text-tertiary);
  transition: color 150ms ease;
}

.footer-social a:hover {
  color: var(--text-secondary);
}

/* —— Mobile: simplify window chrome —— */
@media (max-width: 420px) {
  .mac-titlebar {
    display: none;
  }

  .mac-window {
    border-radius: 8px;
  }

  .hero-window {
    width: 100%;
  }
}

/* Parallax helper */
[data-parallax] {
  will-change: transform;
}

.parallax-layer {
  width: 100%;
}

/* Anchor offset for fixed nav */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
