/* DRSOFT — soft clean modern */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Sora:wght@600;700&display=swap');

:root {
  --paper: #fafafa;
  --paper-white: #ffffff;
  --paper-deep: #f3f3f3;
  --ink: #111111;
  --ink-soft: #444444;
  --mute: #777777;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.12);
  --mark: #f5d547;
  --mark-deep: #e8c832;
  --mark-soft: rgba(245, 213, 71, 0.18);
  --charcoal: #2a2a2a;
  --charcoal-soft: #3d3d3d;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.8, 0.22, 1);
  --max: 1120px;
  --radius-sm: 12px;
  --radius: 14px;
  --radius-lg: 16px;
  --radius-xl: 999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(245, 213, 71, 0.12), transparent 42%),
    radial-gradient(ellipse at 100% 100%, rgba(245, 213, 71, 0.08), transparent 38%),
    var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

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

/* —— Utility strip —— */
.util-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.util-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.util-bar span:last-child { color: var(--mark); }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled,
.site-header.page-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  z-index: 2;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-word span {
  background: var(--mark-soft);
  color: var(--ink);
  padding: 0.08em 0.28em;
  border-radius: 6px;
  box-decoration-break: clone;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}

.menu-toggle {
  display: none;
  background: var(--paper-white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s;
}

.menu-toggle:hover {
  background: var(--paper);
  border-color: var(--line-strong);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  color: var(--ink-soft);
  border-radius: var(--radius-xl);
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.main-nav a.nav-cta {
  background: var(--mark);
  color: var(--ink);
  margin-left: 0.35rem;
  padding: 0.55rem 1rem;
  box-shadow: 0 1px 2px rgba(245, 213, 71, 0.4);
}

.main-nav a.nav-cta:hover {
  background: var(--mark-deep);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--mark);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(245, 213, 71, 0.35);
}

.btn-primary:hover {
  background: var(--mark-deep);
  box-shadow: 0 4px 14px rgba(245, 213, 71, 0.4);
}

.btn-ghost {
  background: var(--paper-white);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: var(--paper);
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.link-arrow {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 2px solid var(--mark);
  padding-bottom: 0.1rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.link-arrow:hover {
  color: var(--ink-soft);
  border-bottom-color: var(--mark-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 34px);
  min-height: calc(100dvh - var(--header-h) - 34px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: ken 24s ease-in-out infinite alternate;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.22) 50%, rgba(250, 250, 250, 0.92) 100%),
    linear-gradient(90deg, rgba(250, 250, 250, 0.88) 0%, rgba(250, 250, 250, 0.4) 55%, transparent 100%);
}

@keyframes ken {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, 0.8%); }
}

.hero-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 3.25rem;
}

.hero-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--mark);
  color: var(--ink);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.7s var(--ease) 0.1s forwards;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
  max-width: 8ch;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.22s forwards;
}

.hero-brand em {
  font-style: normal;
  background: var(--mark-soft);
  box-decoration-break: clone;
  padding: 0 0.12em;
  border-radius: 8px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.36s forwards;
}

.hero-content > p {
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.48s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.6s forwards;
}

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

/* —— Marquee —— */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--charcoal-soft);
  color: rgba(255, 255, 255, 0.88);
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll-x 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-track span { white-space: nowrap; }

.marquee-track em {
  font-style: normal;
  color: var(--mark);
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Sections —— */
.section {
  padding: 4.75rem 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-head-row .section-head { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--mark-soft);
  color: var(--ink);
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-xl);
  margin-bottom: 0.7rem;
}

.section-head h2,
.page-hero h1,
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.section-head p,
.page-hero p { color: var(--mute); }

/* —— Index catalogue list —— */
.cat-index {
  display: grid;
  border-top: 1px solid var(--line);
}

.cat-index a {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0.75rem;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: background 0.2s, box-shadow 0.2s;
}

.cat-index a:hover {
  background: var(--paper-white);
  box-shadow: var(--shadow-sm);
}

.cat-index .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--mute);
}

.cat-index h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.025em;
}

.cat-index p {
  grid-column: 2;
  color: var(--mute);
  font-size: 0.92rem;
  margin-top: -0.35rem;
}

.cat-index .go {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* —— Software services —— */
.service-sheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-white);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-block:hover {
  background: var(--paper-white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-block .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mute);
}

.service-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.service-block p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

.service-block .go {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

@media (max-width: 980px) {
  .service-sheet { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .service-sheet { grid-template-columns: 1fr; }
}

/* —— Product tiles —— */
.product-rail,
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.product-tile {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.product-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-tile-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.product-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-tile:hover .product-tile-media img {
  transform: scale(1.05);
}

.product-tile-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  background: var(--mark);
  color: var(--ink);
  border-radius: var(--radius-xl);
}

.brand-line { display: none; }

.product-tile h3 {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.product-tile .price {
  font-weight: 600;
  font-size: 0.92rem;
}

.product-tile .price s {
  color: var(--mute);
  margin-left: 0.35rem;
  font-weight: 500;
  font-size: 0.8rem;
}

.catalog-empty,
.catalog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--mute);
  font-weight: 500;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

/* —— Statement band —— */
.statement {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
  border-bottom: 1px solid var(--line);
}

.statement-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-white);
  border-right: 1px solid var(--line);
}

.statement-copy p + p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.statement-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.statement-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1;
}

.statement-metrics span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mute);
}

.statement-visual {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.statement-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.statement-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.12);
  pointer-events: none;
}

/* —— CTA —— */
.cta-band {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(245, 213, 71, 0.22) 0%, rgba(245, 213, 71, 0.08) 100%);
  border-bottom: 1px solid var(--line);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 0.65rem;
  line-height: 1.08;
}

.cta-band > .container > p {
  max-width: 42ch;
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
}

.cta-band .btn-ghost {
  background: var(--paper-white);
}

.cta-band .btn-primary {
  background: var(--ink);
  color: var(--paper-white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.cta-band .btn-primary:hover {
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

/* —— Inner pages —— */
.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper-white);
}

.page-body { padding: 2.5rem 0 4rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.filter-btn {
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--mark-soft);
  color: var(--ink);
  border-color: rgba(245, 213, 71, 0.5);
}

.sort-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mute);
}

.sort-wrap select {
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sort-wrap select:focus {
  border-color: var(--mark);
  box-shadow: 0 0 0 3px var(--mark-soft);
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.prose p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose strong { color: var(--ink); }

.about-facts,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-white);
  padding: 1.5rem;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.about-fact,
.contact-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.about-fact:last-child,
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }

.about-fact strong,
.contact-item h3 {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--mark-soft);
  color: var(--ink);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-xl);
  margin-bottom: 0.35rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

/* —— Contact form —— */
.contact-panel {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.contact-panel > .form-note {
  margin-bottom: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.form-row input,
.form-row textarea,
.form-row select {
  background: var(--paper-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--mark);
  box-shadow: 0 0 0 3px var(--mark-soft);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--mute);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.form-note.is-success {
  color: #1a7a3a;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(26, 122, 58, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
}

.contact-success {
  display: none;
  padding: 1.25rem 1.35rem;
  background: rgba(245, 213, 71, 0.15);
  border: 1px solid rgba(245, 213, 71, 0.45);
  border-radius: var(--radius-lg);
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}

.contact-success.is-visible {
  display: block;
}

/* —— FAQ —— */
.faq-list { display: grid; gap: 0.75rem; max-width: 760px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
  transition: background 0.2s;
}

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

.faq-item summary:hover { background: var(--paper); }

.faq-item[open] summary {
  background: var(--mark-soft);
}

.faq-item p {
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* —— Legal & blog —— */
.legal-doc { max-width: 720px; color: var(--ink-soft); }

.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.3rem;
  margin: 1.65rem 0 0.55rem;
}

.legal-doc p + p { margin-top: 0.8rem; }

.blog-list { display: grid; gap: 0.85rem; max-width: 760px; }

.blog-card {
  display: block;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-white);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.blog-card:hover {
  background: var(--paper-white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.blog-card time {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0.35rem 0 0.4rem;
  font-size: 1.25rem;
}

.blog-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* —— Footer —— */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.25rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.55rem;
}

.footer-brand p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-col h3 {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--mark); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--mark); }

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* —— Responsive —— */
@media (max-width: 980px) {
  .product-rail,
  .products-grid { grid-template-columns: repeat(3, 1fr); }

  .statement,
  .about-grid,
  .contact-layout,
  .footer-grid { grid-template-columns: 1fr; }

  .statement-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cat-index a {
    grid-template-columns: 3.25rem 1fr;
  }

  .cat-index .go { display: none; }
  .cat-index p { grid-column: 2; }
}

@media (max-width: 720px) {
  .util-bar .container { justify-content: center; text-align: center; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    border: 0;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.65rem 1.25rem;
  }

  .main-nav a.nav-cta { margin-left: 0; }

  .product-rail,
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-wrap {
    margin-left: 0;
    width: 100%;
  }

  .statement-metrics { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .product-rail,
  .products-grid { grid-template-columns: 1fr; }
}
