/* MillCraft — minimal modern */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --line-strong: #111111;
  --inverse: #ffffff;
  --shade: rgba(17, 17, 17, 0.55);
  --font: "Outfit", system-ui, sans-serif;
  --nav-h: 4.75rem;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --container: 68rem;
  --gap: clamp(3.5rem, 9vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 0.5em;
  font-weight: 500;
}
p { margin: 0 0 1em; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Nav — light, thin, always */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
  /* Do not use filter/backdrop-filter here — they trap position:fixed mobile menu */
  overflow: visible;
}
.site-header.is-scrolled,
.site-header.nav-solid {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
}
.site-header.menu-open {
  background: var(--bg);
  border-bottom-color: var(--line);
}
.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-links > li > a:not(.nav-cta),
.site-header.is-scrolled .nav-toggle,
.site-header.nav-solid .logo,
.site-header.nav-solid .nav-links > li > a:not(.nav-cta),
.site-header.nav-solid .nav-toggle,
.site-header.menu-open .logo,
.site-header.menu-open .nav-toggle {
  color: var(--ink);
}
.nav-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  z-index: 2;
}
.logo {
  display: inline-flex;
  align-items: center;
  z-index: 2;
  line-height: 0;
}
.logo img {
  height: 3rem;
  width: auto;
  max-width: 14rem;
  object-fit: contain;
  transition: filter 0.3s var(--ease);
  filter: brightness(0) invert(1);
}
@media (max-width: 560px) {
  .logo img { height: 2.35rem; max-width: 10.5rem; }
}
.site-header.is-scrolled .logo img,
.site-header.nav-solid .logo img,
.site-header.menu-open .logo img {
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0 1.75rem;
  margin: 0;
  list-style: none;
}
.nav-links > li > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 450;
  letter-spacing: -0.01em;
}
.nav-links > li > a:not(.nav-cta):hover,
.nav-links > li > a:not(.nav-cta).is-active {
  color: #ffffff;
}
.nav-links a::after { display: none; }

/* Always high-contrast: works on dark hero AND white scrolled bar */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.05rem !important;
  background: #111111 !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  border: 1px solid #111111 !important;
  opacity: 1 !important;
}
.nav-cta:hover {
  background: #2a2a2a !important;
  color: #ffffff !important;
  opacity: 1 !important;
}
.site-header.is-scrolled .nav-cta,
.site-header.nav-solid .nav-cta,
.site-header.menu-open .nav-cta {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: var(--inverse);
  cursor: pointer;
  z-index: 120;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 13.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: #111111 !important;
  font-size: 0.85rem !important;
  background: transparent;
}
.dropdown a:hover {
  background: var(--bg-soft);
  color: #111111 !important;
}
.dropdown a.is-active {
  color: #111111 !important;
  font-weight: 500;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 110;
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(var(--nav-h) + 0.75rem) 1.5rem 2.5rem;
    margin: 0;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a {
    display: block;
    font-size: 1.05rem;
    color: var(--ink) !important;
    padding: 0.9rem 0;
  }
  .nav-links a.nav-cta {
    display: inline-flex !important;
    margin-top: 1.25rem;
    padding: 0.85rem 1.05rem !important;
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #111111 !important;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: 0;
    padding: 0 0 0.75rem;
    background: transparent;
    box-shadow: none;
    min-width: 0;
  }
  .dropdown a {
    padding: 0.45rem 0;
    color: var(--muted) !important;
    font-size: 0.95rem !important;
  }
  .logo {
    z-index: 120;
    position: relative;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}
.nav-links > li > a:not(.nav-cta):focus-visible,
.nav-toggle:focus-visible {
  outline-color: #ffffff;
}
.site-header.is-scrolled .nav-links > li > a:not(.nav-cta):focus-visible,
.site-header.nav-solid .nav-links > li > a:not(.nav-cta):focus-visible,
.site-header.menu-open .nav-toggle:focus-visible {
  outline-color: #111111;
}
.nav-cta:focus-visible {
  outline-color: #ffffff;
  outline-offset: 3px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s var(--ease);
  background: transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--inverse);
}
.btn-primary:hover { opacity: 0.82; }
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--inverse);
}
.btn-ghost:hover { border-color: var(--inverse); }
.btn-ink {
  background: var(--ink);
  color: var(--inverse);
}
.btn-ink:hover { opacity: 0.82; }
.btn-outline-ink {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--inverse);
}
.section-dark .btn-primary,
.cta-band .btn-primary {
  background: #ffffff;
  color: #111111;
}
.section-dark .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: #f0f0f0;
  opacity: 1;
}
.section-dark .btn-ghost,
.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.section-dark .btn-ghost:hover,
.cta-band .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--inverse);
  overflow: hidden;
  background: #0a0a0a;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero-media video {
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.brand-mark {
  font-weight: 600;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  color: var(--inverse);
  max-width: 10ch;
}
.hero-title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin-bottom: 0.65rem;
  color: var(--inverse);
}
.hero-lead {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hero .btn-primary {
  background: #ffffff;
  color: #111111;
}
.hero .btn-primary:hover {
  background: #f0f0f0;
  opacity: 1;
}
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
.hero .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  min-height: clamp(18rem, 42vh, 26rem);
  position: relative;
  display: grid;
  align-items: end;
  color: var(--inverse);
  overflow: hidden;
  background: #0a0a0a;
}
.page-hero .hero-media::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.page-hero .hero-content { padding-bottom: 2.5rem; }
.page-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.55rem;
  font-weight: 400;
}
.page-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 500;
  margin: 0;
  max-width: 16ch;
  color: var(--inverse);
}

/* Sections */
.section { padding: var(--gap) 0; }
.section-dark {
  background: var(--ink);
  color: var(--inverse);
}
.section-dark p,
.section-dark .section-head p { color: rgba(255, 255, 255, 0.55); }
.section-muted { background: var(--bg-soft); }
.section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 36rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.section-dark .section-head h2 { color: var(--inverse); }
.section-head p { margin: 0; font-size: 0.98rem; }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}
.section-dark .eyebrow { color: rgba(255, 255, 255, 0.45); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}
.split-media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background: var(--bg-soft);
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}
.split-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  color: inherit;
}
.split-copy p { color: var(--muted); }
.section-dark .split-copy p { color: rgba(255, 255, 255, 0.55); }

/* Mosaic tiles */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mosaic { grid-template-columns: 1fr; } }
.tile {
  position: relative;
  min-height: 14.5rem;
  overflow: hidden;
  background: #1a1a1a;
  color: var(--inverse);
  display: block;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease), opacity 0.3s;
  opacity: 0.9;
}
.tile:hover img { transform: scale(1.04); opacity: 1; }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.tile-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.1rem 1.05rem 1.15rem;
}
.tile-body h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.15rem;
  letter-spacing: -0.02em;
  color: var(--inverse);
}
.tile-body p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.tile-wide { grid-column: span 2; min-height: 18rem; }
@media (max-width: 560px) { .tile-wide { grid-column: span 1; } }

.feature-list {
  display: grid;
  gap: 0;
  margin: 1.25rem 0;
}
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.section-dark .feature-list li { border-bottom-color: rgba(255, 255, 255, 0.12); }
.feature-list strong {
  font-weight: 500;
  font-size: 0.95rem;
  color: inherit;
}
.dot {
  width: 4px;
  height: 4px;
  margin-top: 0.55rem;
  background: var(--ink);
  border-radius: 0;
}
.section-dark .dot { background: var(--inverse); }

/* Product grids */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.5rem;
}
.product {
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}
.product:hover { border-color: var(--ink); }
.product-visual {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: grid;
  place-items: end start;
  padding: 0.95rem;
  color: var(--inverse);
  position: relative;
  overflow: hidden;
}
.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.product-visual .label {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.product-body { padding: 1rem 1.05rem 1.15rem; }
.product-body h3 {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.product-body p {
  font-size: 0.88rem;
  margin: 0;
}
.product-body ol {
  margin: 0.45rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.product-body ol li { margin-bottom: 0.3rem; }

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.5rem;
}
.swatch {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.swatch-chip { height: 7rem; }
.swatch figcaption {
  padding: 0.8rem 0.85rem 0.95rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}
.swatch p {
  margin: 0.2rem 0 0;
  font-weight: 400;
  font-size: 0.8rem;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 700px) { .brand-row { grid-template-columns: 1fr; } }
.brand-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 0.85rem;
  min-height: 10rem;
}
.brand-panel img {
  max-height: 2.75rem;
  width: auto;
  margin-inline: auto;
}
.brand-panel p {
  margin: 0;
  font-size: 0.85rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr; } }
.stat {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.section-dark .stat { border-top-color: rgba(255, 255, 255, 0.15); }
.stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  font-weight: 500;
  color: inherit;
}
.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}
.section-dark .stat span { color: rgba(255, 255, 255, 0.45); }

/* CTA — flat, no photo backdrop */
.cta-band {
  padding: var(--gap) 0;
  background: var(--ink);
  color: var(--inverse);
}
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  max-width: 16ch;
  margin: 0 0 0.4rem;
  color: var(--inverse);
}
.cta-band p {
  margin: 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 0;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ink);
}
textarea { min-height: 7.5rem; resize: vertical; }
.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
}
.checkbox input { width: auto; margin-top: 0.2rem; }

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0.5rem;
}
@media (max-width: 860px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-aside {
  background: var(--ink);
  color: var(--inverse);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.contact-aside h2 {
  margin-bottom: 0.75rem;
  color: var(--inverse);
  font-weight: 500;
}
.contact-aside p { color: rgba(255, 255, 255, 0.5); }
.contact-meta { display: grid; gap: 1.15rem; margin-top: 1.5rem; }
.contact-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}
.contact-meta dd { margin: 0; color: var(--inverse); }
.contact-meta a:hover { opacity: 0.7; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Footer */
.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  display: inline-block;
  margin-bottom: 0.85rem;
  line-height: 0;
}
.footer-brand img {
  height: 2.75rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
}
.brand-panel-sj p {
  color: rgba(255, 255, 255, 0.55);
}
.brand-panel-sj img {
  max-height: 3.25rem;
  filter: none;
}
.footer-grid h4 {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-grid a {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.9rem;
}
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.prose-list {
  columns: 2;
  gap: 2rem;
  margin: 1rem 0 0;
}
@media (max-width: 700px) { .prose-list { columns: 1; } }
.prose-list li {
  break-inside: avoid;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  color: var(--ink);
  font-size: 0.95rem;
}
.prose-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--ink);
  flex-shrink: 0;
}

.quote-block {
  border-left: 1px solid var(--ink);
  padding: 0.15rem 0 0.15rem 1.1rem;
  margin: 1.5rem 0;
}
.quote-block p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}
.quote-block cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
}
.checklist li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

.software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 800px) { .software-grid { grid-template-columns: 1fr; } }
.software-item {
  padding: 2rem 1.35rem;
  background: var(--bg-soft);
  color: var(--ink);
  min-height: 11rem;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  border: 1px solid var(--line);
}
.software-item::before { display: none; }
.software-item h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.software-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
