@import "./tokens.css";

:root {
  --font-display: var(--zw-font-display);
  --font-body: var(--zw-font-body);
  --font-mono: var(--zw-font-mono);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--zw-canvas);
  color: var(--zw-ink);
  letter-spacing: -0.01em;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}

.mono {
  font-family: var(--font-mono);
}

/* —— Shell —— */
.site {
  max-width: 1400px;
  margin: 0 auto;
  border-left: 1px solid var(--zw-line);
  border-right: 1px solid var(--zw-line);
  background: var(--zw-canvas);
}

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--zw-line);
  background: color-mix(in srgb, var(--zw-canvas) 92%, white);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zw-muted);
}

.nav a:hover {
  color: var(--zw-ink);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* —— Frame + ticks —— */
.frame {
  position: relative;
  border-bottom: 1px solid var(--zw-line);
}

.tick {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--zw-ink);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.tick-tl {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.tick-tr {
  top: -1px;
  right: -1px;
  border-width: 1px 1px 0 0;
}

.tick-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 1px 1px;
}

.tick-br {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.hatch {
  height: 3.5rem;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(18, 26, 15, 0.05) 3px,
      rgba(18, 26, 15, 0.05) 4px
    );
  border-bottom: 1px solid var(--zw-line);
}

/* —— Eyebrow —— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--zw-ink);
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--zw-accent);
}

/* —— Buttons —— */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--zw-accent);
  color: #f4fbef;
}

.btn-ghost {
  background: transparent;
  color: var(--zw-ink);
  border: 1px solid var(--zw-line);
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  opacity: 0.55;
  pointer-events: none;
}

.btn::before {
  top: 3px;
  left: 3px;
  border-right: 0;
  border-bottom: 0;
}

.btn::after {
  bottom: 3px;
  right: 3px;
  border-left: 0;
  border-top: 0;
}

/* Install CTA — browser icon + four corner ticks */
.btn-install {
  gap: 0.55rem;
  padding-left: 1.1rem;
  padding-right: 1.15rem;
  isolation: isolate;
  color: #f4fbef;
  background-color: var(--zw-accent);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size:
    6px 1.5px,
    1.5px 6px,
    6px 1.5px,
    1.5px 6px,
    6px 1.5px,
    1.5px 6px,
    6px 1.5px,
    1.5px 6px;
  background-position:
    left 4px top 4px,
    left 4px top 4px,
    right 4px top 4px,
    right 4px top 4px,
    left 4px bottom 4px,
    left 4px bottom 4px,
    right 4px bottom 4px,
    right 4px bottom 4px;
  background-repeat: no-repeat;
}

.btn-install::before,
.btn-install::after {
  display: none;
}

.btn-install__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: inherit;
}

.btn-install__icon svg {
  display: block;
}

.btn-install__label {
  white-space: nowrap;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 5.5rem 1.25rem 0;
  text-align: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  z-index: -1;
  width: min(720px, 90vw);
  height: 280px;
  transform: translateX(-50%);
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(11, 110, 79, 0.28) 0%,
      rgba(159, 232, 201, 0.18) 35%,
      transparent 70%
    );
  filter: blur(28px);
  pointer-events: none;
}

.hero h1 {
  margin: 1.75rem auto 0;
  max-width: 17ch;
  font-size: clamp(1.75rem, 5.2vw, 3.875rem);
  line-height: 1.04;
}

.hero-lead {
  margin: 1.25rem auto 0;
  max-width: 48ch;
  color: var(--zw-muted);
  font-size: clamp(0.875rem, 1.6vw, 1.0625rem);
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Three-device stack — extension popup shots */
.hero-collage-wrap {
  position: relative;
  margin: 3rem 0 0;
  padding: 2.75rem 1rem 3.75rem;
  overflow: hidden;
  border-top: 1px solid var(--zw-line);
  background:
    radial-gradient(circle, rgba(11, 110, 79, 0.1) 1px, transparent 1px)
      0 0 / 18px 18px,
    linear-gradient(
      180deg,
      rgba(159, 232, 201, 0.2) 0%,
      rgba(238, 243, 242, 0.45) 55%,
      var(--zw-canvas) 100%
    );
}

.hero-collage-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(640px, 80%);
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(11, 110, 79, 0.28) 0%,
    rgba(159, 232, 201, 0.12) 40%,
    transparent 72%
  );
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.hero-collage {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  height: clamp(420px, 62vw, 620px);
  margin: 0 auto;
}

.phone {
  position: absolute;
  width: clamp(200px, 30vw, 290px);
  aspect-ratio: 9 / 16;
  border-radius: 0.5rem;
  border: 3px solid var(--zw-hero-band);
  outline: 1px solid color-mix(in srgb, var(--zw-ink) 10%, transparent);
  background: var(--zw-hero-band);
  overflow: hidden;
  box-shadow:
    0 20px 44px rgba(12, 26, 22, 0.12),
    0 4px 14px rgba(12, 26, 22, 0.06);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-left {
  left: 15%;
  top: 10%;
  transform: none;
  z-index: 1;
}

.phone-right {
  right: 15%;
  top: 10%;
  transform: none;
  z-index: 1;
}

.phone-center {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
  width: clamp(240px, 36vw, 340px);
  border-width: 3px;
  box-shadow:
    0 28px 56px rgba(12, 26, 22, 0.15),
    0 8px 18px rgba(12, 26, 22, 0.07);
}

@media (max-width: 640px) {
  .hero-collage {
    height: 460px;
  }

  .phone-left {
    left: 12%;
  }

  .phone-right {
    right: 12%;
  }
}

.hero-shot {
  margin: 2.5rem auto 0;
  max-width: 420px;
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--zw-line);
  border-bottom: 1px solid var(--zw-line);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 2rem 1.25rem;
  border-left: 1px solid var(--zw-line);
}

.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  color: var(--zw-accent);
}

.stat-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.stats .stat:nth-child(odd) {
  border-left: 0;
}

@media (min-width: 768px) {
  .stats .stat {
    border-left: 1px solid var(--zw-line);
  }
  .stats .stat:first-child {
    border-left: 0;
  }
  .stat:nth-child(n + 3) {
    border-top: 0;
  }
}

.stat:nth-child(n + 3) {
  border-top: 1px solid var(--zw-line);
}

@media (min-width: 768px) {
  .stat:nth-child(n + 3) {
    border-top: 0;
  }
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zw-accent);
}

.stat p {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  color: var(--zw-muted);
}

.section-index {
  padding: 1.5rem 1.25rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zw-dim);
}

.section-index span {
  color: var(--zw-ink);
}

/* —— Feature sections —— */
.section {
  padding: 4.5rem 1.25rem 0;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head h2 {
  margin-top: 1.75rem;
  max-width: 18ch;
  font-size: clamp(1.55rem, 3.3vw, 2.5rem);
}

.section-head p {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-size: 1rem;
  color: var(--zw-muted);
}

.feature-grid {
  margin-top: 3.5rem;
  display: grid;
  border-top: 1px solid var(--zw-line);
  border-bottom: 1px solid var(--zw-line);
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.75rem;
  border-top: 1px solid var(--zw-line);
}

@media (min-width: 900px) {
  .feature {
    border-top: 0;
    border-left: 1px solid var(--zw-line);
  }
  .feature:first-child {
    border-left: 0;
  }
}

.feature:first-child {
  border-top: 0;
}

.feature-shot {
  height: 220px;
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  overflow: hidden;
}

.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature h3 {
  margin-top: 1.35rem;
  font-size: 1.2rem;
}

.feature p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--zw-muted);
}

/* —— Product mocks (no screenshots) —— */
.mock {
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  border-radius: 1rem;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: 0 10px 28px rgba(18, 26, 15, 0.06);
  text-align: left;
  min-height: 220px;
}

.mock-kicker {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zw-dim);
}

.mock-hero-num {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.mock-hero-num--sm {
  font-size: 1.35rem;
}

.mock-cents {
  color: var(--zw-dim);
  font-size: 0.72em;
}

.mock-sub {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--zw-muted);
}

.mock-pill {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--zw-accent-2);
  color: #0a3d2c;
  font-weight: 600;
  font-size: 0.68rem;
}

.mock-cols,
.mock-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.4rem;
  align-items: center;
}

.mock-cols {
  margin-top: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--zw-line-soft);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zw-dim);
}

.mock-row {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--zw-line-soft);
  font-size: 0.78rem;
}

.mock-mask {
  letter-spacing: 0.12em;
  color: var(--zw-dim);
  font-weight: 600;
}

.mock-dim {
  color: var(--zw-dim);
}

.tabular {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.mock-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.75rem 0 0.85rem;
}

.mock-chip {
  padding: 0.3rem 0.55rem;
  border-radius: 0.65rem;
  border: 1px solid var(--zw-line);
  background: var(--zw-panel);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--zw-muted);
}

.mock-chip.is-on {
  background: var(--zw-ink);
  border-color: var(--zw-ink);
  color: #f4fbef;
}

.mock-panel {
  border: 1px solid var(--zw-line-soft);
  background: var(--zw-panel);
  border-radius: 0.75rem;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.45rem;
}

.mock-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zw-dim);
}

.mock-line {
  margin-top: 0.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.mock-ok {
  color: var(--zw-accent);
}

.mock-slide {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  border-radius: 999px;
  background: var(--zw-accent);
  color: #f4fbef;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-tvs-body {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.mock-pie {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.mock-reward-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.mock-mini {
  border-radius: 0.7rem;
  background: var(--zw-panel);
  border: 1px solid var(--zw-line-soft);
  padding: 0.55rem 0.65rem;
}

.mock-mini .tabular {
  margin-top: 0.2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.mock-bars {
  margin-top: 1rem;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
}

.mock-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 0.25rem 0.25rem 0 0;
  background: #c5e4d8;
}

.mock-bars span.is-hot {
  background: var(--zw-accent);
}

.mock-wallet {
  min-height: 0;
}

.mock-decrypt {
  background: #0a1612;
  border-color: rgba(255, 255, 255, 0.12);
  color: #eef1ec;
}

.mock-decrypt .mock-kicker,
.mock-decrypt .mock-label,
.mock-decrypt .mock-mask {
  color: #8f978c;
}

.mock-decrypt-row {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
}

.mock-decrypt-row.is-open {
  border-color: rgba(159, 232, 201, 0.35);
}

.mock-eye {
  color: #8f978c;
}

.mock-eye.is-on {
  color: var(--zw-accent-2);
}

.mock-note {
  margin-top: 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7c857f;
}

.dark-band .mock-decrypt {
  box-shadow: none;
}

/* —— Box mode grid (Talise-style cells) —— */
.box-grid {
  position: relative;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--zw-line);
  background:
    linear-gradient(var(--zw-ink), var(--zw-ink)) 0 0 / 8px 1px no-repeat,
    linear-gradient(var(--zw-ink), var(--zw-ink)) 100% 0 / 8px 1px no-repeat,
    linear-gradient(var(--zw-ink), var(--zw-ink)) 0 100% / 8px 1px no-repeat,
    linear-gradient(var(--zw-ink), var(--zw-ink)) 100% 100% / 8px 1px no-repeat,
    var(--zw-canvas);
}

@media (min-width: 900px) {
  .box-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.box-cell {
  position: relative;
  padding: 1.35rem 1.15rem 1.45rem;
  border-right: 1px solid var(--zw-line);
  border-bottom: 1px solid var(--zw-line);
  text-align: left;
}

.box-cell:nth-child(2n) {
  border-right: 0;
}

@media (min-width: 900px) {
  .box-cell:nth-child(2n) {
    border-right: 1px solid var(--zw-line);
  }
  .box-cell:nth-child(4n) {
    border-right: 0;
  }
  .box-cell:nth-child(n + 5) {
    border-bottom: 0;
  }
}

.box-cell::before,
.box-cell::after {
  content: "+";
  position: absolute;
  font-size: 0.65rem;
  line-height: 1;
  color: var(--zw-accent);
  font-weight: 600;
}

.box-cell::before {
  top: -0.35rem;
  left: -0.28rem;
}

.box-cell::after {
  bottom: -0.35rem;
  right: -0.28rem;
}

.box-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  color: var(--zw-accent);
  font-size: 0.85rem;
}

.box-cell h3 {
  margin: 0.9rem 0 0;
  font-size: 1.05rem;
}

.box-cell p {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--zw-muted);
  letter-spacing: -0.01em;
}

/* —— Split —— */
.split {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--zw-line);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding: 4.5rem 2rem;
  }
}

.split-copy h2 {
  margin-top: 1.5rem;
  max-width: 15ch;
  font-size: clamp(1.55rem, 3.3vw, 2.5rem);
}

.split-copy p {
  margin-top: 1.25rem;
  max-width: 46ch;
  color: var(--zw-muted);
}

.split-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--zw-line);
}

.split-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--zw-line);
  font-size: 0.95rem;
}

.check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--zw-accent-2) 55%, transparent);
  display: grid;
  place-items: center;
  color: var(--zw-accent);
  font-size: 0.75rem;
}

.split-shot {
  border: 1px solid var(--zw-line);
  background: var(--zw-white);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Dark band —— */
.dark-band {
  background: var(--zw-dark);
  color: var(--zw-dark-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-band .eyebrow {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--zw-accent-2);
}

.dark-band .eyebrow-dot {
  background: var(--zw-accent-2);
}

.dark-band h2 {
  color: #f2f4f2;
}

.dark-band p {
  color: #b9c0bb;
}

.dark-band .split-list {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-band .split-list li {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-band .check {
  background: rgba(159, 232, 201, 0.15);
  color: var(--zw-accent-2);
}

.dark-band .split-shot {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0a1612;
}

.dark-band .tick {
  border-color: rgba(159, 232, 201, 0.55);
}

/* —— FAQ —— */
.faq {
  padding: 4rem 1.25rem 3rem;
}

.faq-list {
  margin: 2.5rem auto 0;
  max-width: 720px;
  border-top: 1px solid var(--zw-line);
}

.faq details {
  border-bottom: 1px solid var(--zw-line);
  padding: 1.1rem 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--zw-line);
  border-radius: 0.35rem;
  background: var(--zw-white);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--zw-accent);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-plus::before {
  width: 0.65rem;
  height: 1.5px;
}

.faq-plus::after {
  width: 1.5px;
  height: 0.65rem;
}

.faq details[open] .faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq details[open] summary {
  color: var(--zw-ink);
}

.faq details p {
  margin-top: 0.75rem;
  padding-right: 2.5rem;
  color: var(--zw-muted);
  font-size: 0.95rem;
}

/* —— Footer —— */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 1.25rem 2.5rem;
  border-top: 1px solid var(--zw-line);
  font-size: 0.85rem;
  color: var(--zw-dim);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a:hover {
  color: var(--zw-ink);
}
