:root {
  color-scheme: dark;
  --layout-width: 960px;
  font-family: "svn-gilroy-regular", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b1024;
  color: #e2e8f0;
}

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

body { margin: 0; padding: 0 1.5rem; background: linear-gradient(135deg, #0b1024 0%, #151577 100%); color: #e2e8f0; }

.page {
  max-width: var(--layout-width);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

header h1 {
  margin: 0 0 .5rem;
  font-size: 2.25rem;
  font-family: "svn-gilroy-bold", sans-serif;
  color: #ffffff;
}

header p {
  margin: 0;
  color: #94a3b8;
}

.page header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: center;
  padding-bottom: .75rem;
}
.tagline {
  margin-top: .35rem;
  font-size: 1.1rem;
  color: #cbd5f5;
}

.value-pill-row + .trust-banner {
  margin-top: 1rem;
}

.trust-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 16px;
  background: rgba(15, 23, 42, .6);
}
.trust-banner__left,
.trust-banner__right {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.trust-banner__left ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #cbd5f5;
}
.trust-banner__right img {
  max-width: 160px;
  border-radius: 12px;
  align-self: flex-start;
}
.trust-banner a {
  color: #38bdf8;
  text-decoration: none;
}
.trust-banner a:hover {
  text-decoration: underline;
}

.panels {
  width: 100%;
}
.panels-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(2.75rem, 6vw, 3.5rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}
.panels-row > .panel {
  width: 100%;
}


.panel {
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 18px;
  background: rgba(15, 23, 42, .6);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(8, 13, 33, .35);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.panel:focus-within {
  border-color: rgba(56, 189, 248, .7);
  box-shadow: 0 20px 45px rgba(14, 165, 233, .3);
  transform: translateY(-2px);
}
.panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}
.panel__badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .7rem;
  font-family: 'svn-gilroy-bold', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e9faef;
  background: rgba(56, 189, 248, .32);
  border: 1px solid rgba(14, 165, 233, .45);
}
.panel__badge--accent {
  background: rgba(34, 197, 94, .32);
  border-color: rgba(34, 197, 94, .45);
}
.panel h2 {
  margin: 0;
  font-size: 1.15rem;
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #e2e8f0;
}

.form-grid {
  display: grid;
  gap: .75rem;
}

label {
  display: grid;
  gap: .35rem;
  font-size: .9rem;
  color: #cbd5f5;
  text-align: left;
}

.host-input {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.host-input input {
  flex: 1 1 auto;
}

.recent-select {
  min-width: 9rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, .25);
  background: rgba(15, 23, 42, .85);
  color: inherit;
  padding: .45rem .6rem;
  font-size: .85rem;
  cursor: pointer;
}

.recent-select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, .2);
}

.recent-select[hidden] {
  display: none;
}

input, button, select {
  font: inherit;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, .25);
  padding: .55rem .75rem;
  background: rgba(15, 23, 42, .9);
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

input:focus, button:focus, select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, .2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 12px;
  padding: .6rem 1.5rem;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--small {
  padding: .45rem .95rem;
  font-size: .75rem;
  letter-spacing: .06em;
}
.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  background: rgba(148, 163, 184, .2);
  color: #94a3b8;
  box-shadow: none;
}
.btn--primary {
  background: linear-gradient(135deg, #38bdf8, #32b561);
  color: #0b1024;
  box-shadow: 0 12px 30px rgba(14, 165, 233, .25);
}
.btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(14, 165, 233, .35);
}
.btn--secondary {
  background: rgba(15, 23, 42, .7);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, .45);
}
.btn--secondary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .35);
}
.btn--ghost {
  background: transparent;
  color: #38bdf8;
  border-color: rgba(56, 189, 248, .45);
}
.btn--ghost:hover {
  background: rgba(56, 189, 248, .12);
  box-shadow: 0 10px 20px rgba(56, 189, 248, .2);
}

.status {
  display: inline-block;
  font-size: .8rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, .15);
  color: #cbd5f5;
}
.status--pending { background: rgba(250, 204, 21, .2); color: #fbbf24; }
.status--ok { background: rgba(34, 197, 94, .2); color: #4ade80; }
.status--error { background: rgba(248, 113, 113, .2); color: #f87171; }

.actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
#message { min-height: 1.5rem; color: #facc15; font-size: .95rem; }

.sites ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .75rem;
}
.sites label {
  align-items: center;
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, .2);
  background: rgba(15, 23, 42, .7);
  display: flex;
  gap: .75rem;
}
.sites strong { font-size: 1rem; }
.sites .muted { font-size: .85rem; color: #94a3b8; }
.sites.hidden { display: none; }
.sites__actions {
  display: flex;
  gap: .75rem;
  margin: .5rem 0 1rem;
}
.sites__actions .btn {
  flex: 0 0 auto;
}

/* Password field width consistency */
input[type="password"] {
  max-width: 100%;
  width: 100%;
}

.progress-overview {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: .6rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, .16);
  overflow: hidden;
  position: relative;
}
.progress-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #38bdf8 0%, #32b561 100%);
  opacity: .25;
  transform-origin: left;
  transform: scaleX(.18);
}

.progress-bar__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #32b561 0%, #38bdf8 100%);
  transition: width .3s ease;
  opacity: .95;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  font-size: .85rem;
  color: #e2e8f0;
}

.progress-meta span {
  font-family: 'svn-gilroy-bold', sans-serif;
  letter-spacing: .02em;
}

.log textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .25);
  background: rgba(15, 23, 42, .85);
  padding: 1rem;
  color: inherit;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: .85rem;
  resize: vertical;
}
.log textarea::placeholder {
  color: #64748b;
  font-style: italic;
}
.controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.controls .btn {
  flex: 0 0 auto;
}

.page-footer {
  margin: 2rem auto 1rem;
  max-width: var(--layout-width);
  padding: 1.75rem 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, .2);
  color: #94a3b8;
  font-size: .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.page-footer a {
  color: #38bdf8;
  text-decoration: none;
}
.page-footer a:hover {
  text-decoration: underline;
}
.page-footer__intro {
  text-align: center;
  display: grid;
  gap: .35rem;
}
.page-footer__intro p {
  margin: 0;
}
.page-footer__support {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.page-footer__support h4 {
  margin: 0;
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #e2e8f0;
  font-size: 1rem;
}
.page-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
  font-size: .88rem;
  justify-items: center;
  text-align: center;
}

.brand-logo {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(21,21,119,0.35));
}

.sub-tagline {
  font-size: 1rem;
  color: #b4c6ff;
  margin: 0;
}

.value-pill-row {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: .01em;
  font-family: 'svn-gilroy-bold', sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: rgba(148, 163, 184, .2);
  border: 1px solid transparent;
}
.value-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  color: currentColor;
  padding: .2rem;
}
.value-pill__label {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  color: inherit;
}
.value-pill--secure {
  background: linear-gradient(135deg, rgba(56, 189, 248, .25), rgba(14, 165, 233, .45));
  border-color: rgba(56, 189, 248, .4);
  color: #ffffff;
}
.value-pill--secure .value-pill__icon {
  background: rgba(224, 242, 254, .55);
}
.value-pill--fast {
  background: linear-gradient(135deg, rgba(50, 181, 97, .25), rgba(74, 222, 128, .45));
  border-color: rgba(34, 197, 94, .45);
  color: #ffffff;
}
.value-pill--fast .value-pill__icon {
  background: rgba(220, 252, 231, .6);
}
.value-pill--steady {
  background: linear-gradient(135deg, rgba(250, 204, 21, .25), rgba(251, 191, 36, .45));
  border-color: rgba(250, 204, 21, .4);
  color: #ffffff;
}
.value-pill--steady .value-pill__icon {
  background: rgba(254, 252, 232, .6);
}
.donation-progress {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, .35);
  background: linear-gradient(135deg, rgba(15, 23, 42, .85), rgba(15, 23, 42, .65));
  box-shadow: 0 16px 38px rgba(8, 13, 33, .3);
  width: 100%;
  align-self: stretch;
  align-items: start;
}
.donation-progress__column {
  display: grid;
  gap: .85rem;
}
.donation-progress__column--donors {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, .2);
  background: rgba(8, 47, 73, .55);
}
.donation-progress__note {
  margin: 0;
  font-family: 'svn-gilroy-regular', sans-serif;
  font-size: .85rem;
  line-height: 1.5;
  color: #cbd5f5;
  text-align: center;
}
.donation-progress__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  align-items: center;
}
.donation-progress__donor-heading {
  margin: 0;
  font-family: 'svn-gilroy-bold', sans-serif;
  font-size: .95rem;
  color: #e2e8f0;
}
.donation-progress__donor-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .6rem;
}
.donation-progress__donor-list a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'svn-gilroy-regular', sans-serif;
  font-size: .85rem;
  color: #38bdf8;
  text-decoration: none;
}
.donation-progress__donor-list a::after {
  content: '↗';
  font-size: .7rem;
  color: rgba(226, 232, 240, .8);
}
.donation-progress__donor-list a:hover {
  color: #60d7ff;
}
.donation-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}
.donation-progress__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .15rem;
}
.donation-progress__header h2 {
  margin: 0;
  font-size: 1rem;
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #e2e8f0;
}
.donation-progress__header span {
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #38bdf8;
  font-size: 1rem;
}
.donation-progress__meta span:last-child {
  font-size: .75rem;
  font-family: 'svn-gilroy-regular', sans-serif;
  color: #cbd5f5;
}
.donation-progress__bar {
  position: relative;
  width: 100%;
  height: .55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, .25);
  overflow: hidden;
}
.donation-progress__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #38bdf8 0%, #32b561 100%);
  transition: width .6s ease;
}
.donation-progress__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .6rem 1.5rem;
  border-radius: 12px;
  font-family: 'svn-gilroy-bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #38bdf8, #32b561);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.donation-progress__cta--secondary {
  background: linear-gradient(135deg, #ec4899, #f97316);
}
.donation-progress__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .45);
}
@media (max-width: 768px) {
  .donation-progress {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .donation-progress__column--donors {
    padding: .85rem;
  }
  .donation-progress__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .donation-progress__cta {
    width: 100%;
  }
}
.hero-insights {
  width: 100%;
  margin: 0;
}
.hero-insights__card {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, .25);
  background: rgba(15, 23, 42, .68);
  box-shadow: 0 12px 35px rgba(15, 23, 42, .25);
  line-height: 1.5;
}
.hero-insights__column {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  text-align: left;
}
.hero-insights__column p {
  margin: 0;
  color: #cbd5f5;
  font-size: .9rem;
}
.hero-insights__column--safety {
  border-right: 1px solid rgba(148, 163, 184, .2);
  padding-right: 1.25rem;
}
.hero-insights__column--compare {
  padding-left: 1.25rem;
}
.hero-insights__title {
  margin: 0;
  font-family: 'svn-gilroy-bold', sans-serif;
  font-size: 1.15rem;
  color: #e9faef;
}
.hero-insights__list {
  margin: 0;
  padding-left: 1.2rem;
  color: #cbd5f5;
  font-size: .9rem;
  display: grid;
  gap: .5rem;
}
.hero-insights__steps {
  margin: 0;
  padding-left: 1.2rem;
  color: #cbd5f5;
  display: grid;
  gap: .45rem;
  font-size: .9rem;
}
.hero-insights__support h4,
.hero-insights__column h4 {
  margin: 0;
  font-size: 1rem;
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #e9faef;
}
.hero-insights__support p {
  margin: 0;
  color: #94a3b8;
  font-size: .88rem;
  padding-top: 10px;
}
.hero-insights__support a {
  color: #38bdf8;
  text-decoration: none;
}
.hero-insights__support a:hover {
  text-decoration: underline;
}
@media (max-width: 960px) {
  .hero-insights__card {
    grid-template-columns: 1fr;
  }
  .hero-insights__column--safety {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, .2);
    padding-right: 0;
    padding-bottom: 1.25rem;
  }
  .hero-insights__column--compare {
    padding-left: 0;
  }
}

.faq-tips {
  width: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, .25);
  background: rgba(15, 23, 42, .62);
  box-shadow: 0 16px 40px rgba(8, 13, 33, .32);
  display: grid;
  gap: 1rem;
}
.faq-tips h2 {
  margin: 0;
  font-family: 'svn-gilroy-bold', sans-serif;
  font-size: 1.35rem;
  text-align: center;
  color: #e9faef;
}
.faq-tips__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
  color: #cbd5f5;
}
.faq-tips__list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: .92rem;
  line-height: 1.55;
}
.faq-tips__list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: .1rem;
  font-size: .8rem;
  color: #38bdf8;
}
.faq-tips__list strong {
  color: #f8fafc;
}

.trust-banner.collapsible {
  border: 1px solid rgba(50,181,97,0.4);
  background: rgba(21,21,119,0.18);
  padding: .75rem 1rem;
  border-radius: 16px;
}

.trust-banner.collapsible summary {
  cursor: pointer;
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #e9faef;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.trust-banner.collapsible summary::-webkit-details-marker {
  display: none;
}

.trust-banner.collapsible[open] {
  box-shadow: 0 12px 28px rgba(21,21,119,0.35);
}

.flow-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
  color: #cbd5f5;
  font-size: .9rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  background: rgba(21,21,119,0.22);
  border: 1px solid rgba(50,181,97,0.45);
  color: #ffffff;
  padding: .55rem 1.4rem;
  border-radius: 12px;
  font-family: 'svn-gilroy-bold', sans-serif;
  text-transform: uppercase;
}
.flow-step--intro {
  background: rgba(56, 189, 248, .22);
  border-color: rgba(56, 189, 248, .55);
  color: #e0f2fe;
}

.flow-step span {
  font-family: 'svn-gilroy-regular', sans-serif;
  text-transform: none;
  font-size: .85rem;
  color: #e0f7ea;
}

.flow-arrow {
  font-size: 1.5rem;
  color: #32b561;
}

.status-badges { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.status-pill { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .75rem; border-radius: 999px; font-size: .85rem; font-family: 'svn-gilroy-bold', sans-serif; background: rgba(148, 163, 184, .18); color: #e2e8f0; }
.status-pill--idle { background: rgba(234,179,8,0.18); color: #facc15; }
.status-pill--ok { background: rgba(50,181,97,0.18); color: #86efac; }
.status-pill--error { background: rgba(248,113,113,0.18); color: #f87171; }


.password-field { position: relative; }
.password-toggle { position: absolute; top: 50%; right: .75rem; transform: translateY(-50%); cursor: pointer; font-size: .8rem; color: #b4c6ff; }


.password-toggle { background: none; border: none; color: #b4c6ff; font-family: 'svn-gilroy-bold', sans-serif; }
.password-toggle:hover { color: #edf2ff; }

.password-meter {
  margin-top: .35rem;
  background: rgba(15, 23, 42, .85);
  border-radius: 999px;
  position: relative;
  height: .45rem;
  overflow: hidden;
}

.password-meter__bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #f87171 0%, #38bdf8 100%);
  transition: width .25s ease, background .25s ease;
}

.password-meter--empty .password-meter__bar {
  background: rgba(148, 163, 184, .25);
}

.password-meter--weak .password-meter__bar {
  background: linear-gradient(90deg, #f87171 0%, #f97316 100%);
}

.password-meter--fair .password-meter__bar {
  background: linear-gradient(90deg, #facc15 0%, #f97316 100%);
}

.password-meter--good .password-meter__bar {
  background: linear-gradient(90deg, #34d399 0%, #38bdf8 100%);
}

.password-meter--strong .password-meter__bar {
  background: linear-gradient(90deg, #22d3ee 0%, #818cf8 100%);
}


.trust-banner__content { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.trust-banner__right { flex: 1 1 240px; display: flex; flex-direction: column; gap: .5rem; color: #e9faef; }
.trust-banner__right h3 { margin: 0; font-family: 'svn-gilroy-bold', sans-serif; }


.panels-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #32b561;
  pointer-events: none;
}
@media (max-width: 960px) {
  .panels-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .panels-arrow {
    display: none;
  }
}

.btn:focus-visible { outline: 2px solid #32b561; outline-offset: 2px; }



.social-proof { text-align: center; font-size: .95rem; color: #cbd5f5; margin-top: .5rem; }
.social-proof p { margin: 0; font-family: 'svn-gilroy-bold', sans-serif; letter-spacing: .02em; }


.help-fab { position: fixed; right: 1.5rem; bottom: 1.5rem; background: #32b561; color: #0b1024; padding: .75rem 1.25rem; border-radius: 999px; font-family: 'svn-gilroy-bold', sans-serif; text-decoration: none; box-shadow: 0 10px 30px rgba(21,21,119,0.35); }
.help-fab:hover { box-shadow: 0 12px 36px rgba(21,21,119,0.45); transform: translateY(-1px); }



#advanced-settings {
  border: 1px solid rgba(50,181,97,0.4);
  background: rgba(21,21,119,0.18);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

#advanced-settings summary {
  cursor: pointer;
  font-family: 'svn-gilroy-bold', sans-serif;
  color: #e9faef;
  list-style: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}

#advanced-settings summary::-webkit-details-marker { display: none; }

#advanced-settings[open] {
  box-shadow: 0 12px 28px rgba(21,21,119,0.35);
}

.advanced-grid {
  margin-top: .75rem;
  display: grid;
  gap: .85rem;
  font-size: .9rem;
  color: #cbd5f5;
}

.advanced-grid label {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.advanced-grid input[type="checkbox"] {
  accent-color: #32b561;
}

.advanced-grid code {
  background: rgba(15, 23, 42, .8);
  padding: 0 .35rem;
  border-radius: 4px;
  font-size: .8rem;
  color: #a5b4fc;
}
.faq-tips code {
  background: rgba(15, 23, 42, .9);
  padding: .1rem .35rem;
  border-radius: 6px;
  color: #38bdf8;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: .82rem;
}
