:root {
  --bg: #f4f6f5;
  --bg-deep: #e6ece9;
  --ink: #121816;
  --ink-soft: #2c3531;
  --mute: #5c6762;
  --line: rgba(18, 24, 22, 0.12);
  --up: #1a7a4c;
  --down: #b42318;
  --accent: #1a7a4c;
  --accent-ink: #0f3d28;
  --surface: #ffffff;
  --panel: #0f1613;
  --panel-2: #1a2420;
  --panel-text: #d7e0db;
  --shadow: 0 24px 60px rgba(18, 24, 22, 0.1);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(244, 246, 245, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.menu-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease);
}

.menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

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

.btn-solid {
  background: var(--ink);
  color: #f4f6f5;
}

.btn-solid:hover {
  background: #2a2a2a;
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(20, 20, 20, 0.05);
}

/* Shared section */
.section {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.section p {
  margin: 0;
  color: var(--mute);
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.75rem !important;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent) !important;
}

/* Mock shells */
.mock {
  background: var(--panel);
  color: var(--panel-text);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--panel-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3d4a44;
}

.mock-dots i:nth-child(1) { background: #c45c4a; }
.mock-dots i:nth-child(2) { background: #c4a24a; }
.mock-dots i:nth-child(3) { background: #4aa06a; }

.mock-tabs {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
}

.mock-tabs button {
  border: 0;
  background: transparent;
  color: #8a9a92;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
}

.mock-tabs button.is-active {
  background: rgba(26, 122, 76, 0.25);
  color: #b7ebc9;
}

.mock-body {
  padding: 1.1rem;
}

.mock-panel {
  display: none;
}

.mock-panel.is-active {
  display: block;
  animation: fade-up 0.35s var(--ease);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
  background: var(--bg);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(244, 246, 245, 0.97) 0%, rgba(244, 246, 245, 0.88) 38%, rgba(244, 246, 245, 0.35) 62%, transparent 82%),
    linear-gradient(180deg, rgba(244, 246, 245, 0.55) 0%, transparent 28%, transparent 70%, rgba(244, 246, 245, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.brand-mark {
  margin: 0 0 1rem;
}

.brand-line {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  color: var(--ink);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink-soft);
}

.hero h1 .h-line {
  display: block;
}

.hero h1 .h-accent {
  color: var(--accent-ink);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: var(--mute);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: grid;
  gap: 0.15rem;
}

.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-meta span {
  font-size: 0.82rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  right: max(1.25rem, calc((100% - 1160px) / 2));
  bottom: 2rem;
  z-index: 3;
  width: 2rem;
  height: 3rem;
  border: 1.5px solid var(--ink);
  border-radius: 99px;
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
}

.hero-scroll span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  animation: scroll-dot 1.6s var(--ease) infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Markets monitor section */
.markets {
  background: var(--bg-deep);
  padding-top: 0;
}

.markets-ticker {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  margin-bottom: 3.5rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.marquee-item b {
  color: var(--ink);
}

.markets-layout {
  padding-bottom: 5.5rem;
}

.markets-layout .section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.price-board {
  background: var(--panel);
  color: var(--panel-text);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.pair-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pair-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #8a9a92;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pair-tabs button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.pair-tabs button.is-active {
  background: rgba(26, 122, 76, 0.28);
  border-color: rgba(61, 207, 132, 0.35);
  color: #b7ebc9;
}

.board-live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a9a92;
}

.board-live .pulse-dot {
  margin: 0;
  width: 8px;
  height: 8px;
}

.board-featured {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) 1.4fr;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem 1.25rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-pair {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.featured-pair span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.featured-pair small {
  font-size: 0.95rem;
  color: #8a9a92;
}

.featured-price {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.featured-change {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.featured-change .muted {
  color: #8a9a92;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-change .vol {
  color: #a8b8b0;
  font-size: 0.92rem;
  font-weight: 500;
}

#monitorSpark {
  width: 100%;
  height: auto;
  display: block;
  min-height: 180px;
}

.board-table-wrap {
  overflow: auto;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.board-table th,
.board-table td {
  padding: 0.95rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.board-table th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9a92;
  background: rgba(255, 255, 255, 0.02);
}

.board-table tbody tr {
  cursor: pointer;
  transition: background 0.2s;
}

.board-table tbody tr:hover,
.board-table tbody tr.is-active {
  background: rgba(26, 122, 76, 0.12);
}

.board-table tbody tr:last-child td {
  border-bottom: 0;
}

.board-table .sym {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-right: 0.45rem;
}

.board-table .name {
  color: #8a9a92;
}

.board-table td:nth-child(2),
.board-table td:nth-child(3),
.board-table td:nth-child(4) {
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.up { color: #3dcf84; }
.down { color: #f07167; }

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3dcf84;
  box-shadow: 0 0 0 0 rgba(61, 207, 132, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@media (max-width: 800px) {
  .board-featured {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* About */
.about {
  background: var(--bg-deep);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.about-copy .checklist {
  margin-top: 1.75rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
}

.mock-terminal {
  min-height: 320px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.term-title {
  font-size: 0.82rem;
  color: #9aaba2;
}

.term-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #3dcf84;
}

.term-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dcf84;
}

.term-log {
  margin: 0;
  padding: 1rem 1.1rem 0.5rem;
  min-height: 220px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #b7c7be;
  white-space: pre-wrap;
}

.term-log .ok { color: #3dcf84; }
.term-log .warn { color: #e2b45c; }

.term-input {
  padding: 0.85rem 1.1rem 1.1rem;
  color: #7f9188;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.term-input span {
  color: #3dcf84;
  margin-right: 0.4rem;
}

/* Advantages */
.adv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  margin-bottom: 2rem;
}

.adv-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.25s;
}

.adv-item:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.adv-item:nth-child(even) {
  padding-left: 2rem;
}

.adv-item.is-on {
  background: rgba(26, 122, 76, 0.05);
}

.adv-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}

.mock-meter {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.25rem 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.meter-track {
  height: 8px;
  background: var(--bg-deep);
  border-radius: 99px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 28%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.5s var(--ease);
}

.meter-fill-wide {
  width: 96%;
}

/* Why */
.why {
  background: var(--bg-deep);
}

.why-layout > div:first-child {
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.why-layout > div:first-child p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.4rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  transform-style: preserve-3d;
}

.why-card:hover {
  box-shadow: var(--shadow);
}

.why-card p {
  margin-top: 0.45rem;
  max-width: none;
  font-size: 0.98rem;
}

.why-viz {
  margin-top: 1.25rem;
  min-height: 100px;
  display: flex;
  align-items: flex-end;
}

.why-bars {
  gap: 0.45rem;
  width: 100%;
}

.why-bars span {
  flex: 1;
  height: var(--h);
  background: rgba(26, 122, 76, 0.25);
  border-radius: 2px 2px 0 0;
  transition: height 0.4s var(--ease), background 0.2s;
}

.why-card:hover .why-bars span {
  background: rgba(26, 122, 76, 0.55);
}

.why-clock {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  font-family: var(--font-display);
}

.why-clock strong {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.why-clock span {
  font-size: 0.8rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#whyChart {
  width: 100%;
  height: 100px;
}

/* People */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.person-photo {
  margin-bottom: 1.1rem;
  overflow: hidden;
  border-radius: 2px;
  background: #d5ddd8;
  box-shadow: var(--shadow);
}

.person-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.person:hover .person-photo img {
  transform: scale(1.04);
}

.person h3 {
  margin-bottom: 0.15rem;
}

.person .role {
  margin: 0 0 0.55rem !important;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent) !important;
}

.person > p:last-child {
  font-size: 0.95rem;
  max-width: none;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  transition: transform 0.25s var(--ease);
}

.review > p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: none;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.review-avatar {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.review cite {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.review footer span {
  display: block;
  font-size: 0.88rem;
  color: var(--mute);
}

/* CTA band */
.cta {
  background: var(--bg);
  padding-bottom: 6rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem 3rem;
  align-items: center;
  padding: 3rem 2.75rem;
  background: var(--ink);
  color: #f4f6f5;
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(26, 122, 76, 0.45), transparent 65%);
  pointer-events: none;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-panel .eyebrow {
  color: #3dcf84 !important;
}

.cta-panel h2 {
  color: #fff;
  margin-bottom: 0.65rem;
}

.cta-panel p {
  color: rgba(244, 246, 245, 0.72);
  max-width: 28rem;
  margin: 0;
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.btn-cta {
  min-height: 3.15rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

.cta-panel .btn-solid {
  background: #fff;
  color: var(--ink);
}

.cta-panel .btn-solid:hover {
  background: #e8ece9;
}

.cta-panel .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.cta-panel .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.footer-brand p {
  margin: 0.85rem 0 0;
  color: var(--mute);
  max-width: 22rem;
  font-size: 0.98rem;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-contact p {
  margin: 0.25rem 0 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-left: auto;
}

.footer-legal-inline a {
  color: var(--mute);
  font-size: 0.9rem;
}

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

.copy {
  margin: 0;
  color: var(--mute);
  font-size: 0.9rem;
}

/* Legal pages */
.page-legal {
  padding: 7.5rem 0 5rem;
}

.legal-wrap {
  width: min(760px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.legal-wrap .eyebrow {
  margin-bottom: 0.75rem;
}

.legal-wrap h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-updated {
  margin: 0 0 2.5rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.legal-wrap h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--ink-soft);
  max-width: none;
}

.legal-wrap p {
  margin: 0 0 1rem;
}

.legal-wrap ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.legal-wrap a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header.is-static {
  background: rgba(244, 246, 245, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

/* Reveal */
.reveal {
  opacity: 0.15;
  transform: translateY(22px);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 1020px) {
  .about-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.5rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 800px) {
  .menu-btn {
    display: flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 4.25rem 0 auto;
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(244, 246, 245, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    max-height: calc(100svh - 4.25rem);
    overflow: auto;
  }

  .nav.is.open,
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .adv-list {
    grid-template-columns: 1fr;
  }

  .adv-item,
  .adv-item:nth-child(odd),
  .adv-item:nth-child(even) {
    padding: 1.4rem 0;
    border-right: 0;
  }

  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }

  .brand-line {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .people-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-legal-inline {
    margin-left: 0;
  }
}
