/* MacToys marketing site. Palette lifted from the app itself:
   near-black ground, soft dark cards, systemBlue accent. */
:root {
  --bg: #0b0c10;
  --bg-raised: #14151a;
  --card: #1a1b21;
  --card-border: rgba(255, 255, 255, 0.06);
  --text: #f2f3f7;
  --text-dim: #9a9daa;
  --text-faint: #6b6e7b;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.14);
  --accent-hover: #60a5fa;
  --accent-2: #8b5cf6;
  --green: #34d399;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- links ---------- */
/* Without a base rule a bare <a> falls through to the browser defaults —
   #0000EE unvisited, #551A8B visited — which is where the purple came from.
   :visited is pinned to the same colour as :link so browsing history never
   changes how the page looks. Component anchors (.btn, nav, footer) restate
   :visited too: `a:visited` outranks a plain class like `.btn`, so without it
   a clicked button would repaint itself. */
a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(96, 165, 250, 0.45);
  transition: color .15s, text-decoration-color .15s;
}
a:visited { color: var(--accent); }
a:hover,
a:visited:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}


/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 12, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 60px;
}
.brand,
.brand:visited { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a,
.nav-links a:visited { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

.btn,
.btn:visited {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 20px; font-size: 15px; font-weight: 600;
  /* A <button> does not inherit the page font, and the buy button is one. */
  font-family: inherit;
  text-decoration: none; cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.btn:hover { background: #4c8dff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.35); }
.btn.small { padding: 7px 14px; font-size: 13.5px; border-radius: 8px; }
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.16);
}
.btn.ghost:hover { background: rgba(255,255,255,.06); box-shadow: none; }
.btn.big { padding: 14px 30px; font-size: 17px; border-radius: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 40px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% -20% auto;
  height: 720px;
  background:
    radial-gradient(600px 380px at 30% 20%, rgba(59,130,246,.22), transparent 65%),
    radial-gradient(520px 340px at 72% 12%, rgba(139,92,246,.16), transparent 65%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-icon { width: 108px; height: 108px; border-radius: 25px; box-shadow: 0 18px 60px rgba(59,130,246,.35); margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.08; letter-spacing: -0.02em; font-weight: 800;
  max-width: 800px; margin: 0 auto 20px;
}
.hero h1 .grad {
  background: linear-gradient(92deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub {
  font-size: 19px; color: var(--text-dim);
  max-width: 640px; margin: 0 auto 34px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13.5px; color: var(--text-faint); }
.hero-shot {
  margin: 64px auto 0; max-width: 980px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03);
}
.hero-shot img { width: 100%; display: block; }

/* ---------- stats strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; padding: 56px 0;
}
.stat { text-align: center; }
.stat b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.stat b .accent { color: var(--accent); }
.stat span { color: var(--text-dim); font-size: 14px; }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; margin-bottom: 12px; }
.section-head p { color: var(--text-dim); font-size: 17px; }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

/* ---------- feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .16s, border-color .16s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,.35); }
.card .ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-bottom: 16px;
  background: var(--accent-soft);
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }

/* ---------- showcase rows ---------- */
.show {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  align-items: center; padding: 44px 0;
}
.show.flip { grid-template-columns: 1.2fr 1fr; }
.show.flip .show-copy { order: 2; }
.show.flip .show-img { order: 1; }
.show-copy h3 { font-size: 27px; letter-spacing: -0.01em; margin-bottom: 14px; }
.show-copy p { color: var(--text-dim); font-size: 16px; margin-bottom: 18px; }
.show-copy ul { list-style: none; }
.show-copy li { color: var(--text-dim); font-size: 15px; padding: 5px 0 5px 28px; position: relative; }
.show-copy li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}
.show-img {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.show-img img { width: 100%; display: block; }

/* ---------- everything list ---------- */
.all-tools {
  columns: 4; column-gap: 20px;
  font-size: 14px; color: var(--text-dim);
}
.all-tools li { list-style: none; padding: 6px 0; break-inside: avoid; }
.all-tools li::before { content: "· "; color: var(--accent); font-weight: 700; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 780px; margin: 0 auto; }
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px; padding: 36px 32px;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: rgba(59,130,246,.5);
  background: linear-gradient(180deg, rgba(59,130,246,.10), var(--card) 42%);
  position: relative;
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  border-radius: 99px; padding: 4px 14px;
}
.price-card h3 { font-size: 19px; margin-bottom: 6px; }
.price { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 2px; }
.price small { font-size: 15px; color: var(--text-dim); font-weight: 500; }
.price-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }
.price-card ul { list-style: none; margin-bottom: 28px; flex: 1; }
.price-card li { color: var(--text-dim); font-size: 14.5px; padding: 6px 0 6px 26px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 15.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: "+"; color: var(--text-faint); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 22px 18px; color: var(--text-dim); font-size: 14.5px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--card-border);
  padding: 44px 0 56px; margin-top: 40px;
  color: var(--text-faint); font-size: 13.5px;
}
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot a,
.foot a:visited { color: var(--text-dim); text-decoration: none; }
.foot a:hover { color: var(--text); }
.foot-brand { display: flex; align-items: center; gap: 9px; }
.foot-brand img { width: 22px; height: 22px; border-radius: 6px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .show, .show.flip { grid-template-columns: 1fr; gap: 26px; }
  .show.flip .show-copy { order: 1; }
  .show.flip .show-img { order: 2; }
  .all-tools { columns: 2; }
  .pricing { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .all-tools { columns: 1; }
}

/* ---------- account portal + purchase page ---------- */
.narrow-page { max-width: 720px; padding-top: 64px; padding-bottom: 96px; }
.narrow-page h1 { font-size: 30px; line-height: 1.2; margin: 6px 0 10px; }
.narrow-page h2 { font-size: 18px; margin: 28px 0 12px; }

.panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.panel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.muted { color: var(--text-dim); line-height: 1.6; }
.small { font-size: 13px; }

.key-box {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 18px 20px; margin: 22px 0;
}
.key-box code {
  font-family: "SF Mono", Menlo, monospace; font-size: 18px;
  letter-spacing: 1.5px; color: var(--accent); user-select: all;
  overflow-wrap: anywhere;
}

.steps { color: var(--text-dim); line-height: 1.8; padding-left: 20px; margin: 0; }

/* forms */
.stack { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13px; color: var(--text-dim); }
.field em { font-style: normal; color: var(--text-faint); }
.field input,
.field select,
.field textarea {
  background: var(--bg); color: var(--text);
  border: 1px solid var(--card-border); border-radius: 10px;
  padding: 11px 13px; font: inherit; font-size: 15px;
  /* Without this a select and a textarea render in the OS light theme, which
     on a dark page reads as two white boxes. */
  appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
/* The chevron the appearance reset removed, drawn as a background so no inline
   style is needed (the CSP blocks those). */
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: right 18px top 50%, right 13px top 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.hint { font-size: 12px; color: var(--text-faint); }
.form-error { color: #f87171; font-size: 14px; margin: 0; }
.checkout-note { color: #f87171; font-size: 13px; margin: 12px 0 0; }

.linklike {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--accent); cursor: pointer; text-decoration: underline;
}

/* portal */
.portal-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.portal-head h1 { margin: 6px 0 0; }
.section-label { font-size: 14px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }

.license-card { padding: 22px 24px; }
.license-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.license-key {
  font-family: "SF Mono", Menlo, monospace; font-size: 17px;
  letter-spacing: 1.5px; color: var(--accent); user-select: all; overflow-wrap: anywhere;
}

.badge {
  font-size: 11px; text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, .07); color: var(--text-dim);
}
.badge-active { background: rgba(52, 211, 153, .14); color: var(--green); }
.badge-revoked, .badge-suspended { background: rgba(248, 113, 113, .14); color: #f87171; }

.device-list { list-style: none; margin: 18px 0 0; padding: 0; }
.device-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0; border-top: 1px solid var(--card-border);
}
.device-list strong { font-weight: 600; font-size: 14px; }

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--card-border); }
.data-table th { color: var(--text-faint); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.data-table td { color: var(--text-dim); }

@media (max-width: 560px) {
  .key-box { flex-direction: column; align-items: stretch; gap: 12px; }
  .device-list li { flex-direction: column; align-items: flex-start; }
}
.form-note { color: var(--green); font-size: 14px; margin: 0; }
.license-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

/* The UA rule for [hidden] is display:none, but any class here that sets its
   own display beats it on specificity, which silently un-hides every element
   the portal toggles. This is the standard fix and has to stay last. */
[hidden] { display: none !important; }

/* Alternating full-width band behind a section. A class rather than an inline
   style attribute: the CSP is `style-src 'self'`, which blocks inline styles,
   so these sections were silently losing their background and borders. */
.band {
  background: var(--bg-raised);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

/* Turnstile widget on the sign-in panel. min-height reserves the space before
   the iframe loads, so the form does not jump when the challenge appears. */
.turnstile { display: flex; justify-content: center; min-height: 65px; }
.challenge-error { color: #f87171; font-size: 13px; text-align: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Boomera mark, last child of the footer so space-between parks it hard right,
   opposite the product name. Dimmed so it reads as an attribution rather than
   competing with the MacToys brand. */
.foot-partner,
.foot-partner:visited { display: inline-flex; align-items: center; text-decoration: none; }
/* Shown at full strength: this is a colour wordmark, and dimming it turns the
   red muddy rather than making it recede the way it would a mono logo. */
.foot-partner img { height: 20px; width: auto; opacity: .9; transition: opacity .15s; }
.foot-partner:hover img { opacity: 1; }

/* ============================================================
   Marketing v2

   Direction: "instrument panel". The product is a menu bar full of live
   readouts, so the page borrows that language: real numbers, monospace
   labels, keycaps, and a running ledger. Type stays on the system stack
   on purpose. This sells a macOS utility, the screenshots are rendered in
   SF, and the CSP loads nothing from a third party, so the platform's own
   voice is the honest choice here.
   ============================================================ */

:root {
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
  --amber: #f5b544;
  --red: #f87171;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- hero menu bar ---------- */
/* A mock of a real macOS menu bar above the headline. The product lives in
   that strip, so showing it is faster than explaining it. */
.menubar-strip {
  max-width: 940px; margin: 0 auto 40px;
  border: 1px solid var(--card-border); border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  display: flex; align-items: center; gap: 18px;
  padding: 9px 16px; font-size: 13px; color: var(--text-dim);
  overflow-x: auto; scrollbar-width: none;
}
.menubar-strip::-webkit-scrollbar { display: none; }
.menubar-strip .mb-app { color: var(--text); font-weight: 600; }
.menubar-strip .spacer { flex: 1; min-width: 20px; }
.menubar-strip .mb-item { font-family: var(--mono); font-size: 12.5px; white-space: nowrap; }
.menubar-strip .mb-live { color: var(--green); }
.menubar-strip .mb-toys {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 3px 9px; border-radius: 7px;
  background: var(--accent-soft); color: #a9c8ff;
  border: 1px solid rgba(59,130,246,.35); white-space: nowrap;
}
.menubar-strip .mb-toys img { width: 14px; height: 14px; border-radius: 4px; }
/* The tool icons MacToys itself puts in the bar. Monochrome and stroked, the
   way the real ones are, so the strip reads as a menu bar and not a toolbar. */
.menubar-strip .mb-glyph { display: inline-flex; align-items: center; color: var(--text-dim); }
.menubar-strip .mb-glyph svg { display: block; }

/* ---------- keycaps ---------- */
kbd, .kbd {
  font-family: var(--mono); font-size: .85em; line-height: 1;
  padding: 4px 7px; border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-bottom-width: 2px;
  color: var(--text);
}

/* ---------- the replaces ledger ---------- */
.ledger {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.ledger-list { display: flex; flex-direction: column; }
.ledger-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--card-border);
}
.ledger-row .what { flex: 1; color: var(--text-dim); }
.ledger-row .what b { color: var(--text); font-weight: 600; }
.ledger-row .cost {
  font-family: var(--mono); font-size: 14px; color: var(--text-faint);
  text-decoration: line-through; text-decoration-color: var(--red);
}
.ledger-row .got { font-family: var(--mono); font-size: 12px; color: var(--green); white-space: nowrap; }
.ledger-total {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; padding-top: 18px; margin-top: 4px;
}
.ledger-total .label { color: var(--text-dim); font-size: 15px; }
.ledger-total .sum { font-family: var(--mono); font-size: 22px; color: var(--red); text-decoration: line-through; }

.swap {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 34px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.swap::before {
  content: ""; position: absolute; inset: -60% 50% auto -20%; height: 240px;
  background: radial-gradient(closest-side, rgba(59,130,246,.20), transparent);
  pointer-events: none;
}
.swap .eyebrow { position: relative; }
.swap .swap-price {
  position: relative;
  font-size: 68px; font-weight: 800; letter-spacing: -.03em; line-height: 1;
  margin: 12px 0 6px;
  background: linear-gradient(120deg, #fff 20%, var(--accent) 55%, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.swap .swap-sub { position: relative; color: var(--text-dim); margin-bottom: 22px; }
.swap .btn { position: relative; }
.swap-note { position: relative; margin-top: 14px; font-size: 13px; color: var(--text-faint); }

/* ---------- menu bar panels ---------- */
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.panel-shot { text-align: center; }
.panel-shot img {
  width: 100%; max-width: 310px; height: auto; display: block; margin: 0 auto 18px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.55));
}
.panel-shot h3 { font-size: 17px; margin-bottom: 7px; }
.panel-shot p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* ---------- carousel ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
  padding-bottom: 6px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; }
.slide img {
  width: 100%; height: auto; display: block; border-radius: 12px;
  border: 1px solid var(--card-border);
}
.slide-caption { display: flex; align-items: baseline; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.slide-caption h3 { font-size: 18px; }
.slide-caption p { color: var(--text-dim); font-size: 15px; flex: 1; min-width: 260px; }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.carousel-dots { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.carousel-dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: none; background: rgba(255,255,255,.18); cursor: pointer;
  transition: background .15s, transform .15s;
}
.carousel-dots button[aria-current="true"] { background: var(--accent); transform: scale(1.4); }
.carousel-arrow {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%;
  border: 1px solid var(--card-border); background: var(--card);
  color: var(--text); font-size: 16px; cursor: pointer; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.carousel-arrow:hover { background: var(--bg-raised); border-color: rgba(255,255,255,.2); }
.carousel-arrow:disabled { opacity: .3; cursor: default; }

/* ---------- highlights ---------- */
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.hl {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .18s, transform .18s;
}
.hl:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }
.hl .hl-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.hl h3 { font-size: 18px; margin: 10px 0 8px; letter-spacing: -.01em; }
.hl p { color: var(--text-dim); font-size: 14.5px; line-height: 1.65; }
.hl.wide { grid-column: span 2; }

/* ---------- cta band ---------- */
.cta-band {
  border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(59,130,246,.14), transparent),
    var(--bg-raised);
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -.02em; margin-bottom: 12px; }
.cta-band p { color: var(--text-dim); max-width: 560px; margin: 0 auto 26px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- all features page ---------- */
.feature-cat { margin-bottom: 52px; }
.feature-cat h2 {
  font-size: 15px; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.feature-cat .cat-count { font-size: 13px; color: var(--text-faint); margin-bottom: 20px; }
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 2px; }
.feature-item {
  padding: 16px 18px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--card-border);
}
.feature-item h3 { font-size: 15.5px; margin-bottom: 5px; }
.feature-item p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .ledger { grid-template-columns: 1fr; gap: 34px; }
  .panels { grid-template-columns: 1fr; gap: 44px; }
  .hl.wide { grid-column: span 1; }
}
.cta-row-spaced { margin-top: 44px; }
