/* landing.css — cite landing page
   Layered on top of style/main.css which provides the CSS variables.
   ─────────────────────────────────────────────────────────────────── */

/* ── page reset for landing ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── scroll progress bar ──────────────────────────────────────────────────── */
.l-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  box-shadow: 0 0 10px rgba(245,158,11,0.6);
  z-index: 201;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, width 0.06s linear;
}

.l-scroll-progress.visible { opacity: 1; }

/* ── landing nav ──────────────────────────────────────────────────────────── */
.l-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,8,11,0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}

.l-nav.scrolled {
  background: rgba(7,8,11,0.9);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.l-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.l-nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.l-nav-links a:hover { color: var(--text); }
.l-nav-links a.active { color: var(--accent); }

/* nav right-side action group */
.l-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* sign-in ghost button */
.l-nav-signin {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

.l-nav-signin:hover {
  color: var(--text2);
  border-color: var(--border2);
  background: rgba(255,255,255,0.04);
}

/* hamburger button */
.l-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.l-hamburger:hover {
  border-color: var(--border2);
  background: rgba(255,255,255,0.04);
}

.l-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text2);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}

.l-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.l-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.l-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile overlay */
.l-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,8,11,0.6);
  z-index: 190;
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
}

.l-mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* mobile menu drawer */
.l-mobile-menu {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  z-index: 195;
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
  padding: 8px 20px 24px;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s, visibility 0.25s;
}

.l-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-mobile-links {
  list-style: none;
  margin-bottom: 4px;
}

.l-mobile-links li { border-bottom: 1px solid var(--border); }
.l-mobile-links li:last-child { border-bottom: none; }

.l-mobile-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 14px 4px;
  transition: color 0.15s;
}

.l-mobile-links a i { color: var(--text3); font-size: 13px; }
.l-mobile-links a:hover { color: var(--text); }
.l-mobile-links a:hover i { color: var(--accent); }

.l-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0 20px;
}

.l-mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-mobile-signin {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 11px 0;
  text-align: center;
  border: 1px solid var(--border2);
  border-radius: 8px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.l-mobile-signin:hover {
  color: var(--text);
  border-color: var(--text3);
  background: var(--surface2);
}

.l-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  padding: 7px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.l-nav-cta:hover { background: #fbbf24; transform: translateY(-1px); }

/* ── hero ─────────────────────────────────────────────────────────────────── */
.l-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* radial amber glow */
.l-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.l-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.l-hero-left { position: relative; z-index: 1; }

.l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 5px 12px;
  background: var(--accent-lo);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 20px;
}

.l-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.l-headline {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.l-headline em {
  font-style: italic;
  color: var(--accent);
}

.l-subhead {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--text2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.l-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.l-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: var(--accent);
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.25);
}

.l-btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.35);
}

.l-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 11px 22px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.l-btn-ghost:hover {
  border-color: var(--text3);
  color: var(--text);
  background: var(--surface);
}

.l-install-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
}

.l-install-cmd {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 10px;
  color: var(--text2);
  letter-spacing: 0.02em;
}

/* ── terminal window ──────────────────────────────────────────────────────── */
.l-hero-right { position: relative; }

.l-terminal {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(245,158,11,0.04);
  position: relative;
  z-index: 2;
}

.l-terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.l-traffic {
  width: 11px; height: 11px;
  border-radius: 50%;
  cursor: default;
  flex-shrink: 0;
}

.l-traffic.red    { background: #ff5f57; }
.l-traffic.yellow { background: #febc2e; }
.l-traffic.green  { background: #28c840; }

.l-terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.03em;
  margin-left: -42px;
}

.l-terminal-body {
  padding: 24px;
  min-height: 300px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text2);
}

.term-prompt { color: var(--accent); }
.term-cmd    { color: var(--text); }
.term-ok     { color: var(--green); }
.term-muted  { color: var(--text3); }
.term-blue   { color: var(--blue); }

.term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
  margin-left: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* floating citation card */
.l-cite-card {
  position: absolute;
  bottom: -28px;
  left: -44px;
  width: 260px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 3;
  transform: rotate(-2deg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-2deg) translateY(-6px); }
}

.l-cite-card-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.l-cite-card-title {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}

.l-cite-card-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
}

.l-cite-card-sig {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green);
}

.l-cite-card-sig::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--green);
}

/* ── section scaffold ─────────────────────────────────────────────────────── */
.l-section {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.l-section-full {
  padding: 120px 0;
  overflow: hidden;
}

.l-section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.l-section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.l-section-title em { font-style: italic; color: var(--accent); }

.l-section-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 560px;
}

/* ── divider line ─────────────────────────────────────────────────────────── */
.l-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── feature grid ─────────────────────────────────────────────────────────── */
.l-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 64px;
}

.l-feature {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.l-feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-lo), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.l-feature:hover { background: var(--surface2); }
.l-feature:hover::after { opacity: 1; }

.l-feature-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-lo);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
}

.l-feature-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.l-feature-body {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

.l-feature-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  margin-top: 14px;
}

/* ── workflow steps ───────────────────────────────────────────────────────── */
.l-workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

/* connecting line */
.l-workflow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border2), var(--accent), var(--border2));
}

.l-step {
  padding: 0 24px;
  position: relative;
  text-align: center;
}

.l-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--text3);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.l-step:hover .l-step-num {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lo);
}

.l-step-cmd {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
  background: var(--accent-lo);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
}

.l-step-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.l-step-body {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
}

/* ── format ticker ────────────────────────────────────────────────────────── */
.l-ticker-wrap {
  position: relative;
  padding: 48px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* fade edges */
.l-ticker-wrap::before,
.l-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.l-ticker-wrap::before { left: 0;  background: linear-gradient(90deg, var(--surface), transparent); }
.l-ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }

.l-ticker {
  display: flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}

.l-ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.l-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--text3);
  white-space: nowrap;
  transition: color 0.2s;
}

.l-ticker-item:hover { color: var(--text); }

.l-ticker-item::after {
  content: '·';
  color: var(--border2);
}

.l-ticker-item.highlight { color: var(--accent); }

/* ── code example ─────────────────────────────────────────────────────────── */
.l-code-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 64px;
}

.l-code-pane {
  background: var(--surface);
  padding: 0;
}

.l-pane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.l-pane-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.05em;
}

.l-pane-badge {
  font-family: var(--mono);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-cf    { background: var(--accent-lo); color: var(--accent); }
.badge-apa   { background: var(--blue-lo);   color: var(--blue);   }

.l-code-body {
  padding: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.8;
  min-height: 280px;
}

/* syntax tokens */
.tok-type   { color: var(--blue); }
.tok-label  { color: var(--accent); }
.tok-brace  { color: var(--text3); }
.tok-key    { color: var(--text2); }
.tok-eq     { color: var(--text3); }
.tok-str    { color: var(--green); }
.tok-num    { color: #fb923c; }
.tok-list   { color: var(--blue); }
.tok-comment{ color: var(--text3); font-style: italic; }

/* rendered output */
.l-rendered-output {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text2);
}

.l-rendered-output .fmt-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.l-rendered-output .ref { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.l-rendered-output .ref:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.l-rendered-output strong { color: var(--text); font-weight: 500; }

/* ── scroll reveal ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── footer ───────────────────────────────────────────────────────────────── */
.l-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.l-footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
}

.l-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.l-footer-links a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.l-footer-links a:hover { color: var(--text2); }

/* ── responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .l-hero-inner   { grid-template-columns: 1fr; gap: 56px; }
  .l-hero-right   { display: none; }
  .l-features     { grid-template-columns: 1fr 1fr; }
  .l-workflow     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .l-workflow::before { display: none; }
  .l-code-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .l-nav-links  { display: none; }
  .l-nav-signin { display: none; }
  .l-hamburger  { display: flex; }
  .l-nav-cta    { display: none; }
}

@media (max-width: 640px) {
  .l-nav     { padding: 0 20px; }
  .l-hero    { padding: 100px 20px 60px; }
  .l-section { padding: 80px 20px; }
  .l-features { grid-template-columns: 1fr; }
  .l-workflow { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.l-faq-list {
  max-width: 760px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.l-faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.15s;
}

.l-faq-item[open] {
  border-color: var(--border2);
}

.l-faq-item + .l-faq-item {
  margin-top: 6px;
}

.l-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.l-faq-q:hover { color: var(--text); background: var(--surface2); }

.l-faq-icon {
  font-size: 11px;
  color: var(--text3);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.l-faq-item[open] .l-faq-icon { transform: rotate(45deg); }

.l-faq-a {
  padding: 0 20px 18px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text3);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.l-faq-code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text2);
  background: var(--surface2);
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
