/* ============================================================
   EPOCH Solutions — design tokens
   ============================================================ */
:root {
  --ink: #0b0c0e;
  --ink-raised: #131519;
  --ink-line: rgba(255, 255, 255, 0.12);
  --ink-line-soft: rgba(255, 255, 255, 0.07);
  --ink-text: #f3f1ec;
  --ink-text-soft: #c9c7c2;
  --ink-text-faint: #8b8a86;

  --paper: #f3efe6;
  --paper-raised: #fbf9f4;
  --paper-ink: #17140f;
  --paper-ink-soft: #57534a;
  --paper-line: rgba(23, 20, 15, 0.14);

  --emerald: #1f6f5c;
  --emerald-deep: #144c3f;
  --emerald-bright: #59d6b0;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --header-h: 84px;
  --container: 1180px;

  --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }
}

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

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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--emerald-bright);
  color: var(--emerald-deep);
}

:focus-visible {
  outline: 2px solid var(--emerald-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 900px) {
  .container {
    padding-inline: 40px;
  }
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-bright);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--emerald-bright);
  color: var(--emerald-deep);
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--emerald-bright);
  color: #0c2e25;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(89, 214, 176, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-text);
  border: 1px solid var(--ink-line);
}

.btn--ghost:hover {
  border-color: var(--ink-text-soft);
  transform: translateY(-2px);
}

.btn--on-paper {
  background: var(--paper-ink);
  color: var(--paper);
}

.btn--on-paper:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 20, 15, 0.25);
}

.btn--sm {
  padding: 11px 18px;
  font-size: 13.5px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  height: 30px;
  width: auto;
}

.nav-primary {
  display: none;
}

@media (min-width: 900px) {
  .nav-primary {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .nav-primary a {
    font-size: 14.5px;
    color: var(--ink-text-soft);
    transition: color 0.2s var(--ease);
  }
  .nav-primary a:hover {
    color: var(--ink-text);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .btn {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink-text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 90;
  background: var(--ink);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-mobile a {
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--ink-line-soft);
}

.nav-mobile .btn {
  margin-top: 20px;
  align-self: flex-start;
}

@media (min-width: 900px) {
  .nav-mobile {
    display: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 88px));
  padding-bottom: clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(31, 111, 92, 0.35), transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  max-width: 880px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink-text);
  margin-block: 22px 24px;
}

.hero__title.reveal-blur {
  filter: blur(14px);
  opacity: 0;
  transform: translateY(10px);
}

.hero__title.reveal-blur.is-revealed {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
  transition: filter 1.1s var(--ease), opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--ink-text-soft);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__byline {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line-soft);
  font-size: 14px;
  color: var(--ink-text-faint);
  max-width: 52ch;
}

.hero__byline strong {
  color: var(--ink-text-soft);
  font-weight: 700;
}

/* ============================================================
   Diagonal divider (brand cut-line motif)
   ============================================================ */
.cut-divider {
  height: 1px;
  background: var(--ink-line);
  position: relative;
  margin-inline: 24px;
}

.cut-divider::after {
  content: "";
  position: absolute;
  right: 0;
  top: -1px;
  width: 46px;
  height: 3px;
  background: var(--emerald-bright);
  transform: skewX(-30deg);
  transform-origin: right;
}

@media (min-width: 900px) {
  .cut-divider {
    margin-inline: 40px;
  }
}

/* ============================================================
   Section heading pattern
   ============================================================ */
.section-head {
  max-width: 620px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  margin-top: 14px;
  color: inherit;
}

.section-head p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--ink-text-soft);
  line-height: 1.6;
}

.section--paper {
  background: var(--paper);
  color: var(--paper-ink);
}

.section--paper .section-head p {
  color: var(--paper-ink-soft);
}

.section--paper .eyebrow {
  color: var(--emerald);
}

/* ============================================================
   Catalog stack (signature element)
   ============================================================ */
.stack-section {
  background: var(--ink);
}

.stack-section .section-head {
  margin-bottom: 28px;
}

.stack {
  position: relative;
  padding-bottom: 8px;
}

.stack__item {
  position: sticky;
  top: calc(var(--header-h) + 14px);
  min-height: clamp(380px, 52vw, 460px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 18px;
  border: 1px solid rgba(23, 20, 15, 0.06);
  box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.5), 0 2px 0 rgba(255, 255, 255, 0.4) inset;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 760px) {
  .stack__item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: clamp(30px, 3vw, 48px);
  }
}

.stack__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--emerald);
  color: var(--paper-raised);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.stack__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--paper-ink-soft);
}

.stack__item h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 27px);
  margin-top: 14px;
  line-height: 1.2;
}

.stack__item p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--paper-ink-soft);
  line-height: 1.6;
  max-width: 40ch;
}

.mock {
  border-radius: var(--radius-md);
  background: var(--paper-raised);
  border: 1px solid var(--paper-line);
  padding: 16px;
  height: 100%;
  min-height: 200px;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--paper-ink-soft);
  margin-bottom: 14px;
}

.mock__bar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--paper-ink-soft);
}

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

.mock__swatch {
  aspect-ratio: 3/4;
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(31, 111, 92, 0.16), rgba(31, 111, 92, 0.05));
  border: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock__swatch svg {
  width: 46%;
  height: 46%;
  color: var(--emerald);
  opacity: 0.75;
}

.mock__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mock__chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--paper-line);
  color: var(--paper-ink-soft);
}

.mock__chip.is-active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--paper-raised);
}

.mock__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock__row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  padding: 10px 12px;
}

.mock__row .mock__thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(31, 111, 92, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock__row .mock__thumb svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
}

.mock__line {
  height: 8px;
  border-radius: 4px;
  background: var(--paper-line);
}

.mock__row .mock__lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock__total {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--paper-ink-soft);
  border-top: 1px dashed var(--paper-line);
  padding-top: 12px;
}

.mock__handoff {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.mock__handoff .mock__thumb {
  width: 52px;
  height: 52px;
}

.mock__handoff .mock__thumb svg {
  width: 24px;
  height: 24px;
}

.mock__badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--emerald);
  letter-spacing: 0.06em;
}

.stack-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ============================================================
   Card grids (services / features)
   ============================================================ */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--ink-raised);
  border: 1px solid var(--ink-line-soft);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: var(--ink-line);
  transform: translateY(-3px);
}

.card__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-bright);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-top: 4px;
}

.card p {
  font-size: 14.5px;
  color: var(--ink-text-soft);
  line-height: 1.6;
  flex: 1;
}

.card .btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* Feature list (catalog capabilities) */
.feature-list {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

@media (min-width: 700px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  border: 1px solid var(--ink-line-soft);
}

.feature-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(89, 214, 176, 0.12);
  color: var(--emerald-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item__icon svg {
  width: 18px;
  height: 18px;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-text);
}

.feature-item p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-text-soft);
  line-height: 1.55;
}

/* ============================================================
   Diferenciais
   ============================================================ */
.diff-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diff-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--paper-raised);
  border: 1px solid var(--paper-line);
}

.diff-card .num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--emerald);
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-top: 12px;
  color: var(--paper-ink);
}

.diff-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--paper-ink-soft);
  line-height: 1.6;
}

/* ============================================================
   Process (real sequence — numbered)
   ============================================================ */
.process {
  counter-reset: step;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

@media (min-width: 760px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.process__step {
  counter-increment: step;
  padding: 24px 0;
  border-top: 1px solid var(--ink-line-soft);
  position: relative;
}

@media (min-width: 760px) {
  .process__step {
    padding: 0 20px 0 0;
    border-top: none;
    border-left: 1px solid var(--ink-line-soft);
    padding-left: 20px;
  }
}

.process__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--emerald-bright);
  display: block;
  margin-bottom: 10px;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-text);
}

.process__step p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-text-soft);
  line-height: 1.6;
}

.process-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-text-faint);
  border-left: 2px solid var(--ink-line);
  padding-left: 14px;
}

/* ============================================================
   Maintenance
   ============================================================ */
.maint-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .maint-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.maint-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-line-soft);
}

.maint-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.maint-item p {
  font-size: 14.5px;
  color: var(--ink-text-soft);
  line-height: 1.55;
}

.maint-footnote {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-text-faint);
}

/* ============================================================
   Pending / placeholder blocks (portfolio, testimonials)
   ============================================================ */
.pending {
  border: 1px dashed var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  color: var(--ink-text-soft);
}

.pending svg {
  width: 26px;
  height: 26px;
  color: var(--emerald-bright);
  margin-bottom: 14px;
}

.pending h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-text);
}

.pending p {
  margin-top: 8px;
  font-size: 14.5px;
  max-width: 46ch;
  margin-inline: auto;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

@media (min-width: 700px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-slot {
  border: 1px dashed var(--ink-line);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.faq-item {
  border: 1px solid var(--ink-line-soft);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-text);
}

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

.faq-item summary .plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--emerald-bright);
  transition: transform 0.25s var(--ease);
}

.faq-item summary .plus::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item summary .plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[open] summary .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item .faq-body {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-text-soft);
  line-height: 1.65;
  max-width: 62ch;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(160deg, var(--emerald-deep), var(--ink) 65%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 72px);
  text-align: center;
  margin-inline: 24px;
}

@media (min-width: 900px) {
  .final-cta {
    margin-inline: 40px;
  }
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  max-width: 18ch;
  margin-inline: auto;
}

.final-cta p {
  margin-top: 14px;
  color: var(--ink-text-soft);
  font-size: 16px;
  max-width: 46ch;
  margin-inline: auto;
}

.final-cta .btn {
  margin-top: 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-block: 48px 32px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand img {
  height: 26px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--ink-text-faint);
  max-width: 32ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--ink-text-soft);
}

.footer-nav a:hover {
  color: var(--ink-text);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--ink-line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-text-faint);
}

/* ============================================================
   Scroll reveal (generic, respects reduced motion)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__title.reveal-blur {
    filter: none;
    opacity: 1;
    transform: none;
  }
}
