/* tokens.css */
/* Design tokens. Every colour, radius and font used on the site is defined here. */
:root {
  color-scheme: dark;

  /* Surfaces */
  --bg: #131217;
  --surface: #211c29;
  --surface-alt: #1b1820;
  --surface-raised: #302639;
  --surface-raised-hover: #3b2e46;

  /* Borders */
  --border: #3b3046;
  --border-strong: #4b4056;
  --border-soft: #322a3a;
  --border-faint: #2d2735;
  --border-row: #44364f;

  /* Text */
  --text: #f4f1f6;
  --text-soft: #e6dff0;
  --text-body: #d8cfe2;
  --text-muted: #bcb2c8;
  --text-dim: #a498b1;
  --text-faint: #928a9c;

  /* Brand */
  --lime: #b7d78e;
  --lime-border: #c2df99;
  --lime-hover: #c8e4a8;
  --lime-hover-border: #d3eab9;
  --lime-active: #a6c87e;
  --lime-text: #1e2c18;
  --lavender: #c0a5e1;
  --lavender-soft: #ceb4eb;
  --lavender-dim: #aa8bca;
  --focus: #d6edb2;
  --code: #d2e6b6;

  /* Secondary (Discord-style) button */
  --secondary: #302639;
  --secondary-border: #665175;
  --secondary-hover: #3b2e46;
  --secondary-hover-border: #9474ac;
  --secondary-text: #f0e7f8;

  /* Shape & type */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-sm: 5px;
  --font: "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 55px #0002;

  /* Layout */
  --page-max: 1080px;
  --content-max: 900px;
  --gutter: 48px;
}

/* base.css */
/* Resets and element defaults. */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

button {
  font: inherit;
}

/* Accessibility helpers */
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 10;
  background: var(--focus);
  color: var(--lime-text);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}
.skip:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared text utilities */
.meta {
  font-size: 13px !important;
  line-height: 1.6;
  color: var(--text-dim) !important;
}

.status-label {
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  background: #302937;
  border: 1px solid var(--border-strong);
  padding: 3px 8px;
  border-radius: 4px;
}

.inline-link {
  color: var(--lavender-soft);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* layout.css */
/* Page frame: header, main wrapper, footer. */
.site-header {
  max-width: var(--page-max);
  width: calc(100% - var(--gutter));
  margin: 0 auto;
  min-height: 86px;
  border-bottom: 1px solid #302a38;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
}
.wordmark img { border-radius: 7px; }
.wordmark b { color: var(--lavender); }

.site-header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
  font-size: 14px;
  color: #b8aec6;
}
.site-header nav a:hover { color: #fff; }

.menu-toggle { display: none; }

.wrap {
  width: calc(100% - var(--gutter));
  max-width: var(--page-max);
  margin: 34px auto 30px;
}

footer {
  border-top: 1px solid var(--border-faint);
  padding: 20px 2px;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.7;
}
footer p { margin: 0; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: #bdafc9;
  font-size: 14px;
}
.footer-links a:first-child {
  margin-right: auto;
  font-weight: 600;
}

@media (max-width: 900px) {
  .site-header nav { gap: 15px; }
  .wordmark { font-size: 14px; }
}

@media (max-width: 760px) {
  .wrap {
    max-width: 600px;
    margin: 32px auto 24px;
  }
  .site-header {
    flex-wrap: wrap;
    padding: 18px 0;
    gap: 15px;
  }
  .menu-toggle {
    display: block;
    color: #e7dcee;
    background: #302638;
    border: 1px solid #655071;
    border-radius: var(--radius-sm);
    padding: 9px 14px;
    font-size: 14px;
  }
  .site-header nav {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
    margin-left: 0;
  }
  .site-header nav.open { display: flex; }
  .site-header nav a {
    padding: 12px 17px 12px 0;
    min-height: 44px;
  }
  .footer-links { gap: 20px; }
  .footer-links a:first-child { flex-basis: 100%; }
}

@media (max-width: 370px) {
  .wrap { width: calc(100% - 28px); }
}

/* components/launcher.css */
/* Hero launcher card, quick-help links and the game status strip. */
.launcher {
  max-width: var(--content-max);
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bbb0c9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 19px;
}
.kicker svg { color: var(--lavender-dim); }

h1 {
  font-size: 43px;
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -1.3px;
  margin: 0 0 18px;
}
h1 span { color: var(--lavender); }

.description {
  color: #c2b8ce;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 31px;
  max-width: 290px;
}

.under {
  margin: 16px 0 0;
  text-align: center;
  color: #a89ab6;
  font-size: 12px;
  line-height: 1.5;
}

.help {
  max-width: var(--content-max);
  margin: 0 auto 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px 2px;
  color: #a89eaf;
  font-size: 13px;
}
.help a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
}
.help a:hover { color: #e9d7ff; }

.status-strip {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 23px;
  border: 1px solid #39313f;
  background: var(--surface-alt);
  border-radius: var(--radius);
  margin-bottom: 15px;
}
.status-strip > div { flex-shrink: 0; }
.status-strip h2 {
  font-size: 15px;
  margin: 0 0 7px;
}
.status-strip p {
  margin: 0;
  flex: 1;
  color: #b2a8bd;
  font-size: 14px;
  line-height: 1.6;
}
.status-strip > a {
  font-size: 14px;
  white-space: nowrap;
  color: #cab1e6;
}

/* Live counters filled in by scripts/status.js */
.status-stats {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.status-stats li {
  display: flex;
  flex-direction: column;
  min-width: 88px;
}
.status-stats strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.status-stats span {
  font-size: 12px;
  color: #b2a8bd;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.status-label[data-state="online"] {
  color: #c6ec9f;
  background: #253320;
  border-color: #4c6b3a;
}
.status-label[data-state="stale"] {
  color: #ead9a0;
  background: #353021;
  border-color: #6e6238;
}
.status-label[data-state="offline"] {
  color: #f0b8b8;
  background: #3a2427;
  border-color: #6b3a3f;
}

@media (max-width: 900px) {
  .status-strip { flex-wrap: wrap; }
  .status-strip p { min-width: 200px; }
  .status-stats { flex-basis: 100%; gap: 8px 24px; }
}

@media (max-width: 760px) {
  .launcher { grid-template-columns: 1fr; }
  .cover {
    height: 270px;
    min-height: 0;
    object-position: center 45%;
  }
  .panel { padding: 30px; }
  .kicker { margin-bottom: 15px; }
  h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .description {
    max-width: none;
    margin-bottom: 25px;
  }
  .help { margin-bottom: 5px; }
  .status-strip {
    gap: 16px;
    padding: 20px;
  }
  .status-strip p {
    min-width: 0;
    flex-basis: 100%;
  }
  .status-strip > a {
    min-height: 32px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 370px) {
  .panel { padding: 24px; }
  .cover { height: 235px; }
  h1 { font-size: 35px; }
  .help {
    gap: 10px;
    font-size: 12px;
  }
}

/* components/buttons.css */
/* Buttons. `.button` is the primary lime call to action; `.discord` the secondary variant. */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 52px;
  padding: 13px 17px;
  font-size: 16px;
  font-weight: 650;
  border: 1px solid var(--lime-border);
  border-radius: 6px;
  background: var(--lime);
  color: var(--lime-text);
  transition: background .16s, border-color .16s;
}
.button:hover {
  background: var(--lime-hover);
  border-color: var(--lime-hover-border);
}
.button:active { background: var(--lime-active); }
.button svg { flex-shrink: 0; }

.discord {
  margin-top: 12px;
  background: var(--secondary);
  border: 1px solid var(--secondary-border);
  color: var(--secondary-text);
  font-size: 15px;
}
.discord:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover-border);
}

.copy-button {
  flex-shrink: 0;
  background: #352a40;
  color: #ebdef8;
  border: 1px solid #79608b;
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

/* components/sections.css */
/* Generic content sections, headings, boxes and collapsible details. */
.content-section {
  padding: 28px 0;
  scroll-margin-top: 15px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
}
.section-heading h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.4px;
}
.section-heading a {
  color: #c6a8e8;
  font-size: 13px;
}

.content-box {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 25px;
}
.content-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 17px;
}
.content-box h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 600;
}
.content-box .empty-title {
  font-size: 17px;
  color: #ede5f5;
  font-weight: 600;
  margin-bottom: 9px;
}
.content-box .meta:last-child { margin-bottom: 0; }

.small-details {
  font-size: 14px;
  color: #b1a4c1;
  margin-top: 13px;
}
.small-details summary {
  cursor: pointer;
  padding: 8px 0;
}
.small-details p { line-height: 1.7; }

/* Patch notes */
.update-entry {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-row);
}
.update-entry:first-child { padding-top: 0; }
.update-entry:last-child {
  border: 0;
  padding-bottom: 0;
}
.update-entry h3 {
  font-size: 18px;
  margin: 7px 0;
}
.update-entry p {
  white-space: pre-line;
  margin-bottom: 0;
}

/* Check-mark bullet lists (About cards, plan perks) */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 5px;
  height: 9px;
  border: solid var(--lime);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-list b {
  color: var(--text);
  font-weight: 600;
}
.check-list.planned li::before { border-color: var(--lavender); }

@media (max-width: 760px) {
  .content-section { padding: 24px 0; }
  .section-heading { flex-wrap: wrap; }
  .section-heading h2 { font-size: 21px; }
  .content-box { padding: 22px; }
}

/* components/codes.css */
/* Game codes: two-column list of code rows with copy buttons, plus the expired list. */
.codes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

.code-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-row);
}
.code-row > div { min-width: 0; }
.code-row code {
  font-size: 17px;
  color: var(--code);
  overflow-wrap: anywhere;
}
.code-row p {
  font-size: 14px;
  margin: 6px 0 0;
}

/* First row of each column has no top padding; last row of each column has no border. */
.codes-list .code-row:nth-child(-n + 2) { padding-top: 0; }
.codes-list .code-row:nth-last-child(-n + 2) { border-bottom: 0; }

.codes-list .empty-note {
  grid-column: 1 / -1;
  margin: 0;
}

.expired-list {
  padding: 15px 22px;
  border: 1px solid #3c3245;
  border-radius: 6px;
  margin-top: 10px;
}
.expired-list .code-row { opacity: .75; }
.expired-list .code-row:first-child { padding-top: 0; }
.expired-list .code-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 760px) {
  .codes-list { grid-template-columns: 1fr; }
  .codes-list .code-row:nth-child(2) { padding-top: 15px; }
  .codes-list .code-row:nth-last-child(2) { border-bottom: 1px solid var(--border-row); }
}

/* components/about.css */
/* About section: artwork + copy grid, facts list, highlight callout and detail cards. */
.about { border-top: 1px solid #302a38; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.about figure { margin: 0; }
.about img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid #44354d;
}
.about figcaption {
  font-size: 12px;
  color: #9b90a7;
  padding-top: 9px;
}

.about-copy h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -.4px;
  margin: 10px 0 15px;
  font-weight: 600;
}
.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 17px;
}

.about-copy dl { margin: 23px 0; }
.about-copy dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.about-copy dt { color: #a79ab4; }
.about-copy dd { margin: 0; }

.feature {
  border-left: 3px solid var(--lime);
  padding-left: 16px;
}
.feature h3 { font-size: 18px; }
.feature p { font-size: 14px; }

.about-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  align-items: start;
}
.about-details h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.about-details p {
  font-size: 14px;
  margin-bottom: 12px;
}
.about-details .meta { margin: 14px 0 0; }

@media (max-width: 900px) {
  .about-grid { gap: 25px; }
  .about-details { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* components/plans.css */
/* Supporter tiers: placeholder notice and the plan card grid. */
.support-box {
  border: 1px solid #44344f;
  border-radius: var(--radius);
  background: #211b29;
  padding: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 22px;
}
.support-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0 10px;
}
.support-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0;
}

.unavailable {
  display: inline-block;
  border: 1px solid #504257;
  border-radius: var(--radius-sm);
  color: #aa9bb5;
  font-size: 14px;
  padding: 13px 20px;
  white-space: nowrap;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.plan {
  --accent: var(--lavender);
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 25px 23px;
  display: flex;
  flex-direction: column;
}
.plan::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  opacity: .85;
}

.plan-head { margin-bottom: 18px; }
.plan-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bbb0c9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.plan-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.plan-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.4px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.plan-badge {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--lime-text);
  padding: 3px 9px;
  border-radius: 4px;
}

.plan-price {
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.plan-price strong {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -1px;
  color: var(--text);
}
.plan-price span {
  font-size: 14px;
  color: var(--lavender);
}

.plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  font-weight: 650;
  font-size: 15px;
  border: 1px solid var(--lime-border);
  border-radius: 6px;
  background: var(--lime);
  color: var(--lime-text);
  cursor: pointer;
  transition: background .16s, border-color .16s;
}
.plan-button:hover {
  background: var(--lime-hover);
  border-color: var(--lime-hover-border);
}
.plan-button:disabled,
.plan-button:disabled:hover {
  cursor: not-allowed;
  background: var(--secondary);
  border-color: var(--secondary-border);
  color: #a89ab6;
}
.plan-note {
  margin: 10px 0 0;
  text-align: center;
  color: #a89ab6;
  font-size: 12px;
  line-height: 1.5;
}

.plan-section {
  margin: 22px 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #bbb0c9;
}
.plan-empty {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
}

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

@media (max-width: 900px) {
  .support-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .support-box { padding: 23px; }
}

@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan { padding: 22px 20px; }
}

/* components/community.css */
/* Community & support cards. */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.community-grid .button {
  max-width: 290px;
  margin: 20px 0 13px;
}
.community-grid .section-heading {
  align-items: flex-start;
  flex-wrap: wrap;
}
.community-grid .section-heading h3 { margin: 0; }

@media (max-width: 900px) {
  .community-grid { gap: 20px; }
}

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

/* components/account.css */
/* Discord sign-in: header slot and the verification-card panel. */
.account {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.account-signin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-text);
  background: var(--secondary);
  border: 1px solid var(--secondary-border);
  border-radius: 6px;
  white-space: nowrap;
  transition: background .16s, border-color .16s;
}
.account-signin:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover-border);
}

.account-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.account-avatar {
  border-radius: 50%;
  background: var(--surface-raised);
  flex-shrink: 0;
}
.account-name {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.account-signout {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.account-signout:hover {
  color: var(--text);
  border-color: var(--secondary-hover-border);
}
.account-signout:disabled { opacity: .6; cursor: default; }

/* Verification card */
.account-panel-button {
  max-width: 290px;
  margin: 4px 0 16px;
}
.account-error {
  color: #f0b8b8;
  font-size: 14px;
  margin: -6px 0 14px;
}
.account-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 18px;
  margin-bottom: 16px;
}
.account-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.account-identity strong {
  display: block;
  font-size: 17px;
}
.account-identity .meta { display: block; }
.account-card p {
  font-size: 14px;
  margin-bottom: 14px;
}
.account-link-roblox {
  max-width: 290px;
  margin: 0 0 16px;
}
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
[data-account-panel] > .account-error {
  margin: 0 0 14px;
}

@media (max-width: 760px) {
  /* Header order on mobile: wordmark · account · Menu, then the nav on its own row. */
  .account { order: 1; margin-left: auto; }
  .site-header .menu-toggle { order: 2; }
  .site-header nav { order: 3; }
  .account-signin { padding: 8px 11px; }
  .account-signin-label { display: none; }
  .account-name { max-width: 110px; }
}

/* components/faq.css */
/* FAQ accordion. */
.faq {
  max-width: 850px;
  margin: auto;
  padding: 35px 0 50px;
}
.faq details { border-bottom: 1px solid #39303f; }
.faq summary {
  padding: 19px 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.faq details p {
  font-size: 15px;
  line-height: 1.8;
  color: #b5a8c2;
  margin: 0;
  padding: 0 25px 22px;
}
.faq details a {
  color: var(--lavender-soft);
  text-decoration: underline;
}

@media (max-width: 760px) {
  .faq { padding: 25px 0 40px; }
}
