:root {
  --bg: #f3f2ee;
  --bg-deep: #0c0d10;
  --surface: #ffffff;
  --ink: #12141a;
  --text: #12141a;
  --ink-soft: #3a3f4a;
  --muted: #6a707c;
  --accent: #1f6b5a;
  --accent-hover: #185647;
  --accent-soft: rgba(31, 107, 90, 0.1);
  --line: rgba(18, 20, 26, 0.1);
  --line-strong: rgba(18, 20, 26, 0.16);
  --on-dark: #f3f2ee;
  --on-dark-muted: rgba(243, 242, 238, 0.68);
  --max: 1180px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

img {
  max-width: 100%;
  display: block;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 242, 238, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.header-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.84rem;
  font-weight: 500;
}

.header-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.header-links a:hover {
  color: var(--ink);
}

.header-links .nav-emphasis,
.mobile-nav .nav-emphasis {
  color: var(--accent);
  font-weight: 600;
}

.header-links .nav-emphasis:hover {
  color: var(--accent-hover);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--on-dark) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  text-decoration: none !important;
  transition: background 0.25s var(--ease);
}

.header-cta:hover {
  background: var(--accent);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 1.35rem;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1.35rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .header-cta {
  margin-top: 0.75rem;
  justify-content: center;
  border: none;
}

@media (min-width: 880px) {
  .header-links {
    display: flex;
  }
  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.9rem 1.35rem;
  border-radius: 2px;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--on-dark);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(243, 242, 238, 0.35);
}

.btn-ghost:hover {
  border-color: var(--on-dark);
  background: rgba(243, 242, 238, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--on-dark);
}

.btn-dark:hover {
  background: var(--accent);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
}

/* -- Hero -- */
.hero {
  position: relative;
  min-height: min(92dvh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--on-dark);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 242, 238, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 242, 238, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
}

.hero-mark {
  position: absolute;
  right: -4%;
  bottom: 8%;
  width: min(62vw, 640px);
  height: auto;
  opacity: 0.95;
}

.hero-draw {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-rule 1.6s var(--ease) 0.35s forwards;
}

@keyframes draw-rule {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-glow {
  position: absolute;
  width: 55%;
  height: 70%;
  right: -8%;
  top: 10%;
  background: radial-gradient(ellipse at center, rgba(31, 107, 90, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 6.5rem 1.35rem 3.5rem;
  animation: rise 0.9s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.8vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 11ch;
  color: var(--on-dark);
}

.hero-tagline {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: 22ch;
  color: rgba(243, 242, 238, 0.92);
}

.hero-lead {
  margin-top: 1.15rem;
  max-width: 32rem;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: rgba(243, 242, 238, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* -- Intro -- */
.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.35rem;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .intro-band-inner {
    grid-template-columns: 11rem 1fr;
    gap: 2.5rem;
    align-items: baseline;
    padding: 2.75rem 1.35rem;
  }
}

.intro-kicker,
.section-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.intro-copy {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42rem;
  line-height: 1.65;
}

/* —— Sections —— */
.work-section,
.pricing-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.35rem 4rem;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0.45rem;
}

.section-aside {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28rem;
  line-height: 1.6;
}

/* —— Toolbar —— */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.kind-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.kind-toggle button {
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.kind-toggle button.is-active {
  background: var(--ink);
  color: var(--on-dark);
}

.kind-toggle button:not(.is-active):hover {
  color: var(--ink);
  background: rgba(18, 20, 26, 0.05);
}

.industry-filter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.industry-filter select {
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  cursor: pointer;
  min-width: 10.5rem;
}

.industry-filter select:focus {
  outline: none;
  border-color: var(--accent);
}

/* —— Demo gallery —— */
.demo-grid {
  display: grid;
  gap: 1.5rem 1.15rem;
}

@media (min-width: 640px) {
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .demo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.35rem;
  }
}

.demo-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.demo-card:hover {
  text-decoration: none;
}

.demo-card.is-hidden {
  display: none;
}

.demo-card-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #d8d6cf;
}

.demo-card-thumb img,
.demo-card-thumb-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.demo-card:hover .demo-card-thumb img,
.demo-card:hover .demo-card-thumb-bg {
  transform: scale(1.04);
}

.demo-card-meta {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
  color: var(--ink);
}

.demo-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.demo-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}

.demo-card:hover .demo-card-cta {
  gap: 0.55rem;
}

.empty-state {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--muted);
  display: none;
}

.empty-state.is-visible {
  display: block;
}

/* -- R200 feature (current campaign) -- */
.r200-feature {
  background: var(--bg-deep);
  color: var(--on-dark);
  border-block: none;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.r200-feature-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.35rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .r200-feature-inner {
    grid-template-columns: 1.4fr 0.85fr;
    align-items: stretch;
    gap: 2.5rem;
    padding: 3.5rem 1.35rem;
  }
}

.r200-feature-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ec8b5;
}

.r200-feature h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.55rem 0 0.85rem;
  color: var(--on-dark);
}

.r200-feature-copy > p:not(.r200-feature-kicker) {
  color: rgba(243, 242, 238, 0.78);
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.r200-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.btn-primary-on-dark {
  background: var(--on-dark);
  color: var(--bg-deep);
}

.btn-primary-on-dark:hover {
  background: #fff;
  transform: translateY(-1px);
}

.r200-feature-aside {
  background: rgba(243, 242, 238, 0.05);
  border: 1px solid rgba(243, 242, 238, 0.12);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.r200-feature-price {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--on-dark);
}

.r200-feature-price span {
  font-size: 0.45em;
  font-weight: 700;
  margin-right: 0.05em;
  vertical-align: super;
}

.r200-feature-price-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 242, 238, 0.55);
}

.r200-feature-aside ul {
  list-style: none;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(243, 242, 238, 0.12);
}

.r200-feature-aside li {
  font-size: 0.9rem;
  color: rgba(243, 242, 238, 0.78);
  padding: 0.35rem 0;
}

/* -- Offer strip (legacy) -- */
.offer-strip {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.offer-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.offer-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.55rem;
}

.offer-strip p {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.95rem;
}

/* —— Pricing —— */
.pricing-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  padding: 1.5rem 1.25rem 1.35rem;
}

.price-card.is-featured {
  background: linear-gradient(180deg, rgba(31, 107, 90, 0.07) 0%, var(--surface) 40%);
}

.price-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-amount {
  margin-top: 0.65rem;
}

.price-amount strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.price-tagline {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  min-height: 3.2em;
}

.price-features {
  list-style: none;
  margin: 1.15rem 0 1.25rem;
  flex: 1;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.price-features li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
  padding-left: 0;
}

.price-features li::before {
  content: none;
}

.price-cta {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none !important;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.price-cta:hover {
  border-color: var(--ink);
  background: rgba(18, 20, 26, 0.03);
}

.price-cta--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.price-cta--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.addons-row {
  margin-top: 2.5rem;
}

.addons-row h3 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.addons-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.addons-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.addons-list strong {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.quote-block {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  padding: 2rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

@media (min-width: 800px) {
  .quote-block {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    padding: 2.75rem;
  }
}

.quote-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.45rem;
}

.quote-copy p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.quote-email {
  margin-top: 1.25rem !important;
}

.quote-email a {
  color: var(--accent);
  font-weight: 500;
}

.quote-fields {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 520px) {
  .quote-fields {
    grid-template-columns: 1fr 1fr;
  }
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field label span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  opacity: 0.85;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.7rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.quote-submit {
  margin-top: 1.15rem;
  width: 100%;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.95rem 1.25rem;
  background: var(--ink);
  color: var(--on-dark);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.quote-submit:hover {
  background: var(--accent);
}

.quote-hint {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

/* —— Company close —— */
.company-close {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.company-close-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.35rem 4.5rem;
  text-align: center;
}

.company-close .hero-brand {
  margin: 0 auto;
  color: var(--ink);
}

.company-close h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 1rem auto 0.75rem;
  max-width: 16ch;
  line-height: 1.15;
}

.company-close p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* —— About page —— */
.about-page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.35rem 4.5rem;
}

.about-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.15rem;
}

.about-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 2.25rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.about-page p,
.about-page li {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.about-page ul {
  padding-left: 1.15rem;
}

.about-page code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  background: var(--surface);
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

.compare-table th,
.compare-table td {
  padding: 0.65rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.65rem;
}

/* R200 page inherits header/footer from hub.css — keep logo readable */
body.r200-page .logo-text,
.r200-hero ~ * .logo {
  color: inherit;
}
