:root {
  --bg: #0c0d12;
  --bg-2: #12141c;
  --text: #f2f3f7;
  --muted: #9aa3b5;
  --accent: #6d67ff;
  --accent-deep: #534fff;
  --lime: #ccf888;
  --ok: #3ecf8e;
  --border: rgb(255 255 255 / 0.09);
  --font: "Sora", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

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

code {
  font-family: var(--mono);
  font-size: 0.92em;
  color: var(--text);
}

.wrap {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(65% 50% at 85% 0%, rgb(83 79 255 / 0.28), transparent 55%),
    radial-gradient(40% 35% at 0% 100%, rgb(62 207 142 / 0.12), transparent 50%),
    linear-gradient(165deg, #10121a 0%, #0c0d12 60%, #141726 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--text);
}

.brand-logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
  color: inherit;
  line-height: 0;
}

.nav-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: center;
  padding: 36px 0 28px;
  min-height: min(520px, calc(100dvh - 100px));
}

.hero-copy-block {
  display: grid;
  gap: 12px;
  max-width: 30rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-mark {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-lead {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
}

.hero-copy {
  margin: 0;
  max-width: 36ch;
  font-size: 1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-soft {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-soft .text-link {
  font-size: inherit;
  font-weight: 600;
}

.closing .hero-soft {
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
}

.btn:hover {
  filter: brightness(1.06);
}

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

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 10px 28px rgb(83 79 255 / 0.3);
}

.btn-secondary {
  background: rgb(255 255 255 / 0.04);
  border-color: var(--border);
  color: var(--text);
}

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

/* Live finds — desktop-style pill feed on a light card */
.live-card {
  background: #fff;
  color: #182122;
  border-radius: 14px;
  border: 1px solid #e8eaee;
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.32);
  overflow: hidden;
  min-height: 0;
  padding: 2px 0 8px;
}

.live-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px 6px;
}

.live-card-head h2 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: #15181c;
  font-weight: 700;
}

.live-card .status-live {
  color: #8a9399;
  font-size: 0.68rem;
  font-weight: 500;
}

.live-card .status-live .status-dot {
  background: #3ecf8e;
  box-shadow: 0 0 0 0 rgb(62 207 142 / 0.45);
}

.live-card .feed {
  list-style: none;
  margin: 0;
  padding: 0 10px 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: none;
  overflow: hidden;
}

.live-card .feed li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #f3f4f6;
  border-radius: 8px;
  border: none;
  font-size: 0.76rem;
  color: #182122;
  transition: background 0.25s ease, transform 0.25s ease;
}

.live-card .feed li.is-new {
  background: #e9fbf1;
  transform: translateY(-1px);
  animation: find-in 0.45s ease;
}

@keyframes find-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.feed-nick {
  width: 7.5rem;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #5c6570;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.feed-logo {
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.feed-chain-fallback {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  color: #5c6570;
}

.feed-sum {
  flex: 1;
  min-width: 0;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: #2d8a56;
  text-align: left;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.feed-ago {
  flex-shrink: 0;
  margin-left: auto;
  color: #8a9399;
  font-family: var(--mono);
  font-size: 0.66rem;
  white-space: nowrap;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgb(47 158 68 / 0.45);
  animation: pulse 1.8s ease-out infinite;
}

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

.strip {
  padding: 16px 0;
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.strip-row div {
  display: grid;
  gap: 2px;
}

.strip-row strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.strip-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.section-narrow {
  max-width: 40rem;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 36rem;
  margin-bottom: 28px;
}

.section h2,
.section-narrow h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 48ch;
}

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process li {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.process-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 3px;
}

.process h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.process p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.chain-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chain-row li {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
  letter-spacing: 0.04em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: start;
}

.fee-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 0 0;
}

.fee-cell {
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
}

.fee-cell strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fee-cell span {
  color: var(--muted);
  font-size: 0.8rem;
}

.fee-cell.you strong {
  color: var(--ok);
}

.fee-cell.us strong {
  color: var(--accent);
}

.fee-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.start-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.start-steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.start-steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.start-steps > li > strong {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.start-steps h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.start-steps p {
  margin: 0 0 8px;
  color: var(--muted);
  max-width: 48ch;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.text-link:hover {
  filter: brightness(1.15);
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 52ch;
}

.faq a {
  color: var(--accent);
  font-weight: 600;
}

.closing {
  padding: 72px 0 56px;
}

.closing-inner {
  display: grid;
  gap: 12px;
  max-width: 32rem;
}

.closing h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  letter-spacing: -0.035em;
}

.closing p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--accent);
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 8px auto 48px;
  padding: 8px 0 24px;
}

.legal h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.legal h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.legal h3 {
  margin: 1.1rem 0 0.45rem;
  font-size: 1rem;
}

.legal p,
.legal li {
  color: rgb(242 243 247 / 0.92);
  font-size: 0.95rem;
}

.legal ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}

.legal li {
  margin: 0.35rem 0;
}

.legal-foot {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.16s;
}
.reveal.delay-3 {
  transition-delay: 0.24s;
}

/* get / download page */
.get-body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.get-shell {
  position: relative;
  isolation: isolate;
  flex: 1;
  padding-bottom: 28px;
  overflow: hidden;
}

.get-shell .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.get-wrap {
  padding-bottom: 8px;
}

.get-hero {
  max-width: 36rem;
  padding: 28px 0 8px;
}

.get-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.get-lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 34rem;
}

.get-bot {
  margin-top: 18px;
}

.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.get-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgb(255 255 255 / 0.04), transparent 55%),
    rgb(18 20 28 / 0.72);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.get-card:hover {
  border-color: rgb(109 103 255 / 0.45);
  transform: translateY(-2px);
}

.get-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.get-os {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.get-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.get-card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  flex: 1;
}

.get-card .btn.block {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

.get-alt {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.get-alt:hover {
  color: var(--lime);
}

.get-tip {
  margin: 2px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.get-legal {
  margin: 22px 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

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

  .get-hero {
    padding-top: 18px;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-grid {
    padding-top: 24px;
  }

  .strip-row {
    grid-template-columns: 1fr 1fr;
  }

  .process li {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .nav-actions .btn-ghost {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .feed-nick {
    width: 68px;
  }

  .live-card .feed li {
    gap: 6px;
    padding: 5px 8px;
  }

  .strip-row {
    gap: 14px;
  }
}

/* FAQ page */
.faq-body {
  position: relative;
  isolation: isolate;
}

.faq-body > .hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.faq-shell {
  width: min(1080px, calc(100% - 32px));
  padding-bottom: 48px;
}

.faq-hero {
  padding: 8px 0 28px;
  max-width: 640px;
  animation: faq-rise 0.55s ease both;
}

.faq-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.faq-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 14px;
  background: rgb(18 20 28 / 0.78);
  color: var(--muted);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.28);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.faq-search:focus-within {
  border-color: rgb(204 248 136 / 0.45);
  box-shadow:
    0 18px 40px rgb(0 0 0 / 0.28),
    0 0 0 3px rgb(204 248 136 / 0.12);
  color: var(--lime);
}

.faq-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.05rem;
}

.faq-search input::placeholder {
  color: rgb(154 163 181 / 0.7);
}

.faq-search input::-webkit-search-cancel-button {
  display: none;
}

.faq-kbd {
  display: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 7px;
  line-height: 1;
}

.faq-clear {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  color: var(--text);
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.faq-clear:hover {
  background: rgb(255 255 255 / 0.12);
}

.faq-meta {
  margin: 10px 0 0;
  min-height: 1.2em;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--mono);
}

.faq-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.faq-quick-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.faq-quick-btn:hover {
  color: var(--text);
  border-color: rgb(204 248 136 / 0.35);
  background: rgb(204 248 136 / 0.06);
}

.faq-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  animation: faq-rise 0.65s ease 0.08s both;
}

.faq-side {
  position: sticky;
  top: 20px;
}

.faq-side-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
}

.faq-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-toc-link {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.faq-toc-link:hover {
  color: var(--text);
  background: rgb(255 255 255 / 0.04);
}

.faq-toc-link.is-active {
  color: var(--text);
  background: rgb(204 248 136 / 0.08);
  border-left-color: var(--lime);
}

.faq-mobile-topic {
  display: none;
  gap: 8px;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.faq-mobile-topic select {
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgb(18 20 28 / 0.9)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%239aa3b5' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 14px center / 12px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-main {
  min-width: 0;
}

.faq-sec {
  margin-bottom: 28px;
  scroll-margin-top: 24px;
}

.faq-sec[hidden] {
  display: none;
}

.faq-sec h2 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  font-family: var(--mono);
  font-weight: 600;
}

.faq-group {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgb(18 20 28 / 0.42);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s, color 0.15s;
}

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

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  flex-shrink: 0;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.85;
}

.faq-item[open] summary {
  color: var(--text);
  background: rgb(255 255 255 / 0.03);
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 8px;
}

.faq-item summary:hover {
  background: rgb(255 255 255 / 0.035);
}

.faq-item mark {
  background: rgb(204 248 136 / 0.28);
  color: inherit;
  border-radius: 3px;
  padding: 0 2px;
}

.faq-a {
  padding: 0 18px 18px;
  animation: faq-open 0.22s ease;
}

.faq-a p,
.faq-a li {
  color: rgb(242 243 247 / 0.88);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  line-height: 1.55;
}

.faq-a p:last-child,
.faq-a ol:last-child,
.faq-a ul:last-child {
  margin-bottom: 0;
}

.faq-a ol,
.faq-a ul {
  margin: 0 0 0.65rem;
  padding-left: 1.2rem;
}

.faq-a li + li {
  margin-top: 0.4rem;
}

.faq-empty {
  margin: 1.25rem 0 0;
  padding: 28px 16px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.faq-cta {
  margin-top: 12px;
  padding: 22px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    radial-gradient(80% 120% at 100% 0%, rgb(83 79 255 / 0.18), transparent 55%),
    rgb(18 20 28 / 0.55);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-cta h2 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-transform: none;
  font-family: var(--font);
  color: var(--text);
}

.faq-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes faq-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 900px) {
  .faq-kbd {
    display: inline-block;
  }

  .faq-search:focus-within .faq-kbd {
    display: none;
  }
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-side {
    position: static;
  }

  .faq-side-label,
  .faq-toc {
    display: none;
  }

  .faq-mobile-topic {
    display: flex;
  }

  .faq-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .faq-cta .cta-row {
    justify-content: stretch;
  }

  .faq-cta .cta-row .btn {
    flex: 1;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .status-dot,
  .live-card .feed li.is-new,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
