/* Self-hosted Fontshare fonts — Clash Display & Satoshi */
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

/* ============================================================
   Mac Utilities — storefront ’26
   Dark, type-driven, one electric lime accent. Same family feel
   as fahidjavid.com, its own voice.
   ============================================================ */

:root {
  --bg: #0e0e12;
  --bg-soft: #15151b;
  --ink: #ecece6;
  --body: #c6c6c0;
  --muted: #8a8a93;
  --accent: #d4ff3f;
  --line: rgba(236, 236, 230, 0.14);
  --font-display: "Clash Display", "Arial Narrow", sans-serif;
  --font-body: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section-gap: clamp(5rem, 12vw, 10rem);
}

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

html { scroll-behavior: smooth; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--bg); }

/* ============ Ambient side glow ============ */
/* Two fixed radial washes hugging the viewport edges. Kept faint so the
   black canvas stays black; they breathe slowly to make the page feel alive. */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 50%;
  width: clamp(18rem, 32vw, 34rem);
  height: min(120vh, 68rem);
  z-index: -1;
  pointer-events: none;
  animation: glow-breathe 9s ease-in-out infinite alternate;
}

body::before {
  left: 0;
  transform: translate(-55%, -50%);
  background: radial-gradient(closest-side, rgba(212, 255, 63, 0.07), transparent 70%);
}

body::after {
  right: 0;
  transform: translate(55%, -42%);
  background: radial-gradient(closest-side, rgba(120, 190, 255, 0.06), transparent 70%);
  animation-delay: -4.5s;
}

@keyframes glow-breathe {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============ Cursor ============ */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block; position: fixed; inset: 0; z-index: 99; pointer-events: none;
    opacity: 0; transition: opacity 0.3s ease; /* revealed on first pointermove */
  }
  .cursor--visible { opacity: 1; }
  /* Idle: invisible. Only appears as a label bubble over [data-cursor] targets. */
  .cursor__ring {
    position: absolute; top: 0; left: 0;
    width: 0; height: 0; border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.22s ease;
  }
  .cursor__label {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
    color: var(--bg); opacity: 0; transition: opacity 0.2s ease;
  }
  .cursor--active .cursor__ring { width: 52px; height: 52px; opacity: 1; }
  .cursor--active .cursor__label { opacity: 1; }
}

/* ============ WordPress admin bar ============ */
.admin-bar .bar,
.admin-bar .sheet { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .bar,
  .admin-bar .sheet { top: 46px; }
}

/* ============ Menu-bar nav ============ */
.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.4rem) var(--pad);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.bar--scrolled {
  background: rgba(14, 14, 18, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.bar__logo {
  display: inline-flex; align-items: center; gap: 0.42em;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.bar__dot {
  width: 0.3em; height: 0.3em; border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.bar__logo:hover .bar__dot { transform: scale(1.5); }

.bar__links {
  display: flex; gap: clamp(1.25rem, 3vw, 2.25rem);
  background: rgba(236, 236, 230, 0.07);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 99px;
  padding: 0.65rem 1.6rem;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.bar--scrolled .bar__links {
  background: transparent;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.bar__links a {
  font-size: 0.92rem; font-weight: 500;
  position: relative; padding: 0.25rem 0;
}

.bar__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.bar__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.bar__links a[aria-current="page"] { color: var(--accent); }
.bar__links a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--accent);
}

.bar__cta {
  font-size: 0.92rem; font-weight: 700; color: #000;
  background: #fff; border-radius: 99px;
  padding: 0.6rem 1.3rem;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  will-change: transform;
}

.bar__cta:hover { background: var(--accent); }

.bar__burger {
  display: none;
  background: rgba(236, 236, 230, 0.07);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 50%;
  width: 48px; height: 48px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}

.bar__burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

/* ============ Mobile sheet ============ */
.sheet {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding: var(--pad);
  background: rgba(14, 14, 18, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.sheet__links { display: flex; flex-direction: column; gap: 0.5rem; }

.sheet__links a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.sheet__links a em {
  font-family: var(--font-body); font-style: normal;
  font-size: 0.85rem; font-weight: 700;
  color: var(--accent);
}

.sheet__foot {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.92rem; color: var(--muted);
}

.sheet__cta {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.3rem;
  color: var(--accent);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 99px;
  padding: 0.85rem 1.7rem;
  font-weight: 700; font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.btn em { font-style: normal; opacity: 0.65; font-weight: 500; }

.btn--primary,
.btn--trial {
  background: var(--accent);
  color: var(--bg);
}

.btn--primary:hover,
.btn--trial:hover {
  background: var(--ink);
  box-shadow: 0 10px 35px rgba(212, 255, 63, 0.25);
}

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

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

.btn--buy {
  background: #fff;
  color: #000;
}

.btn--buy:hover { background: var(--accent); color: var(--bg); }

/* ============ Hero ============ */
.hero,
.page-hero {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100svh;
  padding: calc(clamp(1rem, 2.5vw, 1.5rem) + 6rem) var(--pad) 3.5rem;
}

.page-hero {
  min-height: auto;
  padding-bottom: 1rem;
}

.hero__kicker,
.page-hero__kicker {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.hero__title,
.page-hero__title {
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.7rem, 8.4vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero__mask {
  display: block; overflow: hidden;
  padding-block: 0.04em; /* keep descenders inside the mask */
}

.hero__mask .line { display: block; will-change: transform; }

.line--stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.line--stroke em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero__sub,
.page-hero__sub {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero__actions {
  display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center;
  margin-top: clamp(1.8rem, 3.5vw, 2.4rem);
}

.hero__hint {
  margin-top: 1.1rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ============ Dock ============ */
.dock {
  display: flex; align-items: flex-end; gap: 0.9rem;
  margin-top: clamp(2.6rem, 6vh, 4rem);
  padding: 0.9rem 1.3rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(236, 236, 230, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.dock__item {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  width: 64px;
  will-change: transform;
  transform-origin: bottom center;
}

.dock__item img {
  width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
}

.dock__dot {
  width: 4px; height: 4px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--muted);
  transition: background-color 0.25s ease;
}

.dock__item:hover .dock__dot { background: var(--accent); }

.dock__item::after {
  /* tooltip */
  content: attr(data-dock-tip);
  position: absolute;
  bottom: calc(100% + 0.9rem);
  left: 50%;
  translate: -50% 4px;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.78rem; font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, translate 0.18s ease;
}

.dock__item:hover::after { opacity: 1; translate: -50% 0; }

/* ============ Marquee ============ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex; align-items: center; gap: 2rem;
  width: max-content;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--font-display); font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__track i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--accent);
}

/* ============ Section head ============ */
section { padding: var(--section-gap) var(--pad) 0; }

section .section-head { padding-inline: 0; }

.section-head {
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-head__index {
  font-size: 0.85rem; color: var(--accent); font-weight: 700;
}

.section-head__label {
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

.section-head__note {
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: right;
}

/* ============ App showcase ============ */
.apps { max-width: 76rem; margin: 0 auto; }

.app[id] { scroll-margin-top: 110px; }

.app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.app:last-of-type { border-bottom: 0; }
.app:nth-of-type(even) .app__media { order: 2; }

.app__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  will-change: transform;
}

.app__media svg { width: 100%; height: auto; }

.app__id { display: flex; align-items: center; gap: 1.1rem; }

.app__icon {
  width: 64px; height: 64px; flex: 0 0 auto;
  border-radius: 15px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.app__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.05; letter-spacing: -0.015em;
}

.app__tagline { color: var(--muted); margin-top: 0.25rem; }

.app__desc {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  color: var(--body);
  max-width: 36rem;
}

.app__features {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.4rem;
}

.app__features li {
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--line); border-radius: 99px;
  padding: 0.35rem 0.9rem;
}

.app__meta {
  margin-top: 1.4rem;
  font-size: 0.88rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.app__meta i { font-style: normal; color: var(--accent); padding: 0 0.35rem; }

.app__buy {
  margin-top: 1.6rem;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}

.app__price {
  margin-left: auto;
  display: flex; align-items: baseline; gap: 0.6rem;
}

.app__price strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  letter-spacing: -0.01em;
  line-height: 1;
}

.app__price small {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.88rem; color: var(--muted);
}

/* ============ Why buy here ============ */
.why { max-width: 76rem; margin: 0 auto; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.why__card {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 2.8rem);
  transition: background-color 0.4s ease;
}

.why__card:hover { background: var(--bg-soft); }

.why__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: 0.85rem; font-weight: 700;
  color: var(--accent);
  transition: border-color 0.4s ease;
}

.why__card:hover .why__num { border-color: var(--accent); }

.why__card h3 {
  margin-top: 1.3rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.01em;
}

.why__card p {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 30rem;
}

/* ============ Unsigned note ============ */
.note {
  max-width: 76rem;
  margin: 0 auto;
  padding-top: clamp(2.5rem, 5vw, 4rem); /* sits close to the section above */
}

.note p {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  max-width: 52rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.note strong { color: var(--ink); font-weight: 700; }

/* ============ Support page ============ */
.support-cta {
  display: flex; justify-content: center;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.support-cta__card {
  display: flex; align-items: center; gap: 1.4rem;
  width: min(42rem, 100%);
  padding: 1.6rem 2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}

.support-cta__card:hover {
  border-color: var(--accent);
  background: rgba(212, 255, 63, 0.05);
}

.support-cta__glyph {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 54px; height: 54px;
  border-radius: 15px;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.4rem;
}

.support-cta__text {
  display: flex; flex-direction: column; gap: 0.15rem;
  min-width: 0;
}

.support-cta__text strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.support-cta__text small { color: var(--muted); font-size: 0.92rem; }

.support-cta__arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.support-cta__card:hover .support-cta__arrow { transform: translateX(5px); }

.support-info { max-width: 76rem; margin: 0 auto; }

.support-info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem);
}

.support-info__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

.support-info__list em {
  grid-row: span 2;
  font-style: normal;
  font-size: 0.9rem; font-weight: 700;
  color: var(--accent);
  padding-top: 0.45rem;
}

.support-info__list strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
}

.support-info__list span {
  display: block;
  color: var(--body);
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.7;
  margin-top: 0.5rem;
  max-width: 30rem;
}

/* ============ FAQ ============ */
/* Full-width rows in the fahidjavid journal-list idiom:
   index | question | plus, hairline separated. */
.faq { max-width: 76rem; margin: 0 auto; padding-bottom: 1rem; }

.faq__list { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary em {
  font-style: normal;
  font-size: 0.9rem; font-weight: 700;
  color: var(--accent);
}

.faq__q {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.faq__plus {
  font-size: 1.6rem; font-weight: 400;
  color: var(--muted);
  transition: rotate 0.35s cubic-bezier(0.65, 0, 0.35, 1), color 0.35s ease;
}

.faq__item[open] .faq__plus,
.faq__item summary:hover .faq__plus { color: var(--accent); }
.faq__item[open] .faq__plus { rotate: 45deg; }
.faq__item summary:hover .faq__q { color: var(--accent); }

.faq__item p {
  /* answer aligns under the question column */
  margin-left: calc(5rem + clamp(1rem, 3vw, 2.5rem));
  padding-bottom: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 46rem;
  color: var(--body);
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.faq__more {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.faq__more a {
  color: var(--accent);
  border-bottom: 1px solid rgba(212, 255, 63, 0.4);
}

/* ============ Prose (legal + generic pages) ============ */
/* Mirrors fahidjavid's post layout: 56rem head, 46rem reading column. */
.prose {
  max-width: 56rem;
  margin: 0 auto;
  padding: calc(clamp(1rem, 2.5vw, 1.5rem) + 7rem) var(--pad) 4rem;
}

.prose__back {
  display: inline-block;
  margin-bottom: 2.2rem;
  font-size: 0.88rem; font-weight: 700;
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.prose__meta {
  display: flex; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}

.prose__meta i { font-style: normal; color: var(--muted); }

.prose__title {
  margin-top: 0.9rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.02em;
}

.prose__excerpt {
  margin-top: 1.2rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 42rem;
}

.prose__body {
  max-width: 46rem;
  margin: 2.8rem auto 0;
}

.prose__body h2 {
  margin: 2.6rem 0 1rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.prose__body p,
.prose__body li {
  color: var(--body);
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.prose__body p + p { margin-top: 0.8rem; }
.prose__body strong { color: var(--ink); }

.prose__body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(212, 255, 63, 0.4);
  transition: border-color 0.2s ease;
}

.prose__body a:hover { border-bottom-color: var(--accent); }

.prose__body ul {
  margin: 0.9rem 0;
  padding-left: 1.4rem;
  list-style: disc;
}

.prose__body li + li { margin-top: 0.5rem; }
.prose__body li::marker { color: var(--accent); }

.prose__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4rem;
}

.prose__nav a {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.prose__nav a:hover {
  border-color: var(--accent);
  background: rgba(212, 255, 63, 0.05);
}

.prose__nav small {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

.prose__nav strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem;
}

/* ============ 404 ============ */
.notfound {
  min-height: 88svh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(clamp(1rem, 2.5vw, 1.5rem) + 6rem) var(--pad) 3rem;
}

.notfound__window {
  width: min(32rem, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.notfound__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.notfound__chrome span { width: 11px; height: 11px; border-radius: 50%; }
.notfound__chrome span:nth-child(1) { background: #ff5f57; }
.notfound__chrome span:nth-child(2) { background: #febc2e; }
.notfound__chrome span:nth-child(3) { background: #28c840; }

.notfound__chrome em {
  margin-inline: auto;
  font-style: normal;
  font-size: 0.8rem; font-weight: 700;
  color: var(--muted);
  translate: -20px 0; /* visually centre despite the lights */
}

.notfound__body {
  padding: 2.6rem 2.2rem 2.2rem;
  text-align: center;
}

.notfound__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
}

.notfound__body h1 {
  margin-top: 1.4rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.notfound__body p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.notfound__actions {
  display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* ============ Footer ============ */
.footer {
  margin-top: var(--section-gap);
  padding: clamp(4rem, 9vw, 8rem) var(--pad) 2rem;
  border-top: 1px solid var(--line);
}

.footer__cta { text-align: center; }

.footer__kicker {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.footer__title { display: block; margin-top: 1rem; }

.footer__line {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.95; letter-spacing: -0.025em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer__line--stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.footer__line em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.footer__title:hover .footer__line { color: var(--accent); }
.footer__title:hover .footer__line--stroke {
  color: transparent;
  -webkit-text-stroke-color: var(--accent);
}

.footer__note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__note em { font-style: normal; color: var(--accent); padding-right: 0.15rem; }

.footer__nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem 3rem; flex-wrap: wrap;
  margin-top: clamp(4rem, 8vw, 6.5rem);
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
}

.footer__group {
  display: flex; align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  flex-wrap: wrap;
}

.footer__group a {
  position: relative;
  font-size: 0.92rem; font-weight: 500;
  padding: 0.25rem 0;
}

.footer__group a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.footer__group a:hover { color: var(--accent); }
.footer__group a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer__group--legal a { color: var(--muted); }

.footer__base {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem 2rem; flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.footer__top {
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s ease;
}

.footer__top:hover { color: var(--accent); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .app {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app:nth-of-type(even) .app__media { order: 0; }

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

  .footer__nav { flex-direction: column; align-items: flex-start; }

  .section-head__note { flex-basis: 100%; margin-left: 0; text-align: left; }
  .section-head { flex-wrap: wrap; row-gap: 0.4rem; }
}

@media (max-width: 760px) {
  .bar__links,
  .bar__cta { display: none; }

  .bar__burger { display: flex; }

  .hero { min-height: 100svh; }

  .dock {
    gap: 0.6rem;
    padding: 0.65rem 0.9rem 0.55rem;
    border-radius: 20px;
  }

  .dock__item { width: 46px; }

  .support-info__list { grid-template-columns: 1fr; }

  .faq__item summary { grid-template-columns: 1fr auto; row-gap: 0.4rem; }
  .faq__item summary em { grid-column: 1 / -1; }
  .faq__item p { margin-left: 0; }

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

  .support-cta__arrow { display: none; }
}
