/* Self-hosted JetBrains Mono (SIL OFL 1.1 — see fonts/OFL.txt). No
   third-party font CDN: every byte of this page is served first-party. */
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/JetBrainsMono-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/JetBrainsMono-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/JetBrainsMono-Bold.woff2") format("woff2");
}

/* Theme tokens on :root — app.js swaps the whole palette at once.
   Transitions are on individual elements; the corner-to-corner "wave"
   wipe is clone-based — see the Liquid reveal section below. */
:root {
  --bg: #0d1117;
  --bg-elevated: #161b22;
  --fg: #e6edf3;
  --fg-dim: #8b949e;
  --primary: #22d3ee;
  --primary-soft: #2dd4bf;
  --accent: #f59e0b;
  --success: #22c55e;
  --border: #30363d;
  --border-bright: #3a4754;

  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --theme-transition: 750ms cubic-bezier(0.4, 0, 0.2, 1);
  --wave-duration: 1150ms;
  --shadow-glow:
    0 0 32px color-mix(in srgb, var(--primary) 12%, transparent),
    0 0 96px color-mix(in srgb, var(--primary) 6%, transparent);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100dvh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-mono);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  transition:
    background-color var(--theme-transition),
    color var(--theme-transition);
}

body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  isolation: isolate;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.012) 2px,
    rgba(255, 255, 255, 0.012) 3px
  );
  mix-blend-mode: screen;
}

.vignette {
  position: fixed;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

/* ===== Liquid reveal transition ========================================
   Theme swap commits setVars(newTheme) at t=0, then stacks OLD-theme
   snapshot overlays (full-viewport bg + palette-locked clone of <main>)
   on top of the already-NEW live DOM and SHRINKS their wavy polygon
   clip from full square to empty — the OLD theme recedes toward TL,
   revealing the NEW page underneath (see buildHidePolygon in app.js).
   To stop any element transition from playing AFTER cleanup (and
   producing a visible colour-shift flash), .no-theme-transitions
   globally disables every transition while the wave is running and for
   one frame past cleanup. Without this, elements with hard-coded
   background-color 160ms ease rules (.tab, .cmd, .cta, .install__tab,
   .theme-toggle) would still be mid-transition when overlays disappear.

   Stacking map (bottom → top):
     .vignette 1 · .scanlines 2 · main.terminal 3 · .reveal-bg 4 ·
     reveal glow 4 (inline, app.js glowLayer) · terminal clone 5
     (inline + main.terminal--reveal below) · .fb-modal 100.
   Keep this list in sync when adding layers. */

html.no-theme-transitions,
html.no-theme-transitions * {
  transition: none;
}

.reveal-bg {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* Must out-specify the later `.terminal { z-index: 3 }` rule (same 0,1,0
   specificity would lose on source order), or the clone drops to z 3 and
   the z-4 .reveal-bg covers it — the whole OLD snapshot goes blank and
   the wave degrades to "content vanishes, then flashes back in". */
main.terminal--reveal {
  z-index: 5;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-bg,
  .terminal--reveal {
    display: none;
  }
}

.terminal {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  box-shadow: var(--shadow-glow);
  transition:
    border-color var(--theme-transition),
    background var(--theme-transition),
    box-shadow var(--theme-transition);
}

/* ===== Terminal chrome with tabs ======================================
   Ghostty-style title bar: traffic light dots on the left, full-width
   tab segments separated by hairlines, active tab subtly elevated with
   no color accent (neutral fg), "+"/theme toggle on the right edge. */
.terminal__chrome {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 38px;
  padding: 0;
  background: color-mix(in srgb, var(--bg) 92%, black);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--theme-transition),
    border-color var(--theme-transition);
}

.dots {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.dot--red {
  background: #ff5f57;
}
.dot--amber {
  background: #febc2e;
}
.dot--green {
  background: #28c840;
}

.tabs {
  display: flex;
  flex: 1;
  gap: 0;
  align-items: stretch;
  min-width: 0;
}

.tab {
  display: inline-flex;
  flex: 1;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 16px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  cursor: pointer;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  transition:
    color var(--theme-transition),
    background var(--theme-transition),
    border-color var(--theme-transition);
}

.tab:hover {
  color: var(--fg);
  background: color-mix(in srgb, var(--bg-elevated) 40%, transparent);
}

.tab.is-active {
  color: var(--fg);
  background: var(--bg-elevated);
  background-image: linear-gradient(180deg, color-mix(in srgb, var(--fg) 5%, transparent) 0%, transparent 60%);
}

.tab__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  white-space: nowrap;
}

.tab__shell {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--fg-dim);
  opacity: 0.75;
}

.tab.is-active .tab__shell {
  color: var(--fg-dim);
  opacity: 0.9;
}

.tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* ===== Theme toggle (right edge of chrome) ============================
   Mirrors the Ghostty "+" button slot — flat segment with left hairline,
   no rounded chrome, font matches the tab labels. */
.theme-toggle {
  display: inline-flex;
  flex-shrink: 0;
  gap: 6px;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  cursor: pointer;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  transition:
    color var(--theme-transition),
    background-color 160ms ease;
}

.theme-toggle__icon {
  display: inline-block;
  color: var(--primary);
}

.theme-toggle:hover {
  color: var(--fg);
  background: color-mix(in srgb, var(--bg-elevated) 50%, transparent);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.theme-toggle__icon {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  transition: color var(--theme-transition);
  /* Slow spin on the half-circle so it reads as "in motion" without
     becoming a distracting fidget. */
  animation: toggle-spin 12s linear infinite;
}

@keyframes toggle-spin {
  to {
    transform: rotate(360deg);
  }
}

.theme-toggle__label {
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

/* Permanent auto-rotation stop control (WCAG 2.2.2). */
.theme-toggle--pause {
  padding: 0 12px;
}

.theme-toggle--pause .theme-toggle__pause-icon {
  font-size: 12px;
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}

.theme-toggle--pause:hover .theme-toggle__pause-icon,
.theme-toggle--pause[aria-pressed="true"] .theme-toggle__pause-icon {
  color: var(--primary);
}

/* ===== Views (vigil / preview) ======================================== */
.terminal__body {
  padding: clamp(20px, 4vw, 40px) clamp(18px, 4vw, 36px);
}
.view[hidden] {
  display: none;
}
.view:not(.is-active) {
  display: none;
}

.logo {
  margin: 0 0 20px 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: clamp(8px, 1.6vw, 13px);
  line-height: 1.05;
  color: var(--primary);
  white-space: pre;
  text-shadow:
    0 0 6px color-mix(in srgb, var(--primary) 45%, transparent),
    0 0 18px color-mix(in srgb, var(--primary) 25%, transparent);
  scrollbar-width: none;
  transition:
    color var(--theme-transition),
    text-shadow var(--theme-transition);
}

.logo::-webkit-scrollbar {
  display: none;
}

.tagline {
  margin: 0 0 20px 0;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--fg);
  letter-spacing: 0.01em;
  transition: color var(--theme-transition);
}

.tagline__muted {
  margin-right: 6px;
  color: var(--primary-soft);
  transition: color var(--theme-transition);
}
.tagline__sep {
  margin: 0 4px;
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}

.features {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0 0 28px 0;
  font-size: clamp(12px, 1.6vw, 14px);
  color: var(--fg-dim);
  list-style: none;
  transition: color var(--theme-transition);
}

.features li {
  padding-left: 4px;
}
.features__chk {
  margin-right: 8px;
  font-weight: 700;
  color: var(--success);
  transition: color var(--theme-transition);
}

/* ===== Install widget ================================================= */
.install {
  padding: 14px;
  margin-bottom: 22px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border: 1px dashed var(--border-bright);
  border-radius: 6px;
  transition:
    border-color var(--theme-transition),
    background-color var(--theme-transition);
}

.install__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.install__tab {
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.03em;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition:
    color var(--theme-transition),
    border-color var(--theme-transition),
    background-color 140ms ease,
    transform 140ms ease;
}

.install__tab:hover {
  color: var(--fg);
  border-color: var(--border-bright);
  transform: translateY(-1px);
}
.install__tab.is-active {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-color: var(--primary);
}
.install__tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.install__panel {
  display: block;
}
.install__panel[hidden] {
  display: none;
}
.install__hint {
  margin: 4px 0 12px 0;
  font-size: 12px;
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}

.install__binary-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.binary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 10px 12px;
  color: var(--fg);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition:
    color var(--theme-transition),
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.binary:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.binary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.binary__os {
  font-size: 13px;
  font-weight: 500;
}
.binary__arch {
  font-size: 11px;
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}
.binary:hover .binary__arch {
  color: var(--primary-soft);
}

.cmd {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  transition:
    color var(--theme-transition),
    border-color var(--theme-transition),
    background-color 160ms ease;
}

.cmd:hover {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border-color: var(--primary);
}
.cmd:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.cmd__prompt {
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 8px color-mix(in srgb, var(--primary) 60%, transparent);
  transition:
    color var(--theme-transition),
    text-shadow var(--theme-transition);
}

.cmd__bracket {
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}

.cmd__text {
  flex: 1;
  overflow-x: auto;
  color: var(--primary);
  white-space: nowrap;
  scrollbar-width: none;
  transition: color var(--theme-transition);
}

.cmd__text::-webkit-scrollbar {
  display: none;
}

.cmd__copy {
  padding: 1px 6px;
  margin-left: auto;
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  transition:
    color var(--theme-transition),
    border-color var(--theme-transition),
    background-color 160ms ease;
}

.cmd.is-copied {
  border-color: var(--success);
}
.cmd.is-copied .cmd__text,
.cmd.is-copied .cmd__copy {
  color: var(--success);
}
.cmd.is-copied .cmd__copy {
  background: color-mix(in srgb, var(--success) 12%, transparent);
  border-color: var(--success);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.cta {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 4px;
  transition:
    color var(--theme-transition),
    background-color 120ms ease,
    transform 120ms ease;
}

.cta__bracket {
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}
.cta__label {
  color: var(--primary);
  transition: color var(--theme-transition);
}
.cta:hover {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  transform: translateY(-1px);
}
.cta:hover .cta__bracket {
  color: var(--primary);
}
.cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.cta--secondary .cta__label {
  color: var(--fg);
}
.cta--secondary:hover .cta__label {
  color: var(--primary);
}

.cursor-line {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 14px 0 0 0;
  font-size: 14px;
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}

.cursor-line__prompt {
  color: var(--primary-soft);
  transition: color var(--theme-transition);
}

.cursor-line__quote {
  min-height: 1.2em;
  font-family: var(--font-mono);
  color: var(--fg);
  white-space: pre;
  transition: color var(--theme-transition);
}

.cursor-line__cursor {
  display: inline-block;
  width: 8px;
  color: transparent;
  background: var(--primary);
  box-shadow: 0 0 6px color-mix(in srgb, var(--primary) 60%, transparent);
  transition:
    background-color var(--theme-transition),
    box-shadow var(--theme-transition);
  animation: blink 1.1s steps(2, end) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ===== Preview (asciinema) ============================================ */
.view--preview {
  padding-top: 18px;
}

.player {
  width: 100%;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition:
    border-color var(--theme-transition),
    background var(--theme-transition);
}

/* Asciinema's default player UI doesn't pick up our palette — override
   the few CSS vars it exposes plus the most visible classes. */
.ap-wrapper {
  background: var(--bg-elevated);
}
.ap-terminal {
  background: var(--bg);
}
.ap-control-bar {
  background: color-mix(in srgb, var(--bg) 90%, black);
}

.player__caption {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 12px 0 0 0;
  font-size: 13px;
  color: var(--fg-dim);
  transition: color var(--theme-transition);
}

.player__caption-prompt {
  color: var(--primary);
  transition: color var(--theme-transition);
}
.player__caption code {
  padding: 1px 6px;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  border-radius: 3px;
  transition:
    color var(--theme-transition),
    background-color var(--theme-transition),
    border-color var(--theme-transition);
}

/* ===== Features view (features.md tab) ================================ */
.view--features {
  padding-top: 12px;
  padding-bottom: 8px;
}

.features-doc {
  margin: 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--fg-dim);
  overflow-wrap: anywhere;
  /* Wrap long lines instead of forcing a horizontal scrollbar — the content is
     kept short enough to hold its columns on desktop, and this keeps it from
     spilling sideways on narrow screens. */
  white-space: pre-wrap;
  transition: color var(--theme-transition);
}

.features-doc__h1 {
  font-weight: 600;
  color: var(--primary);
  transition: color var(--theme-transition);
}

.features-doc__h2 {
  font-weight: 500;
  color: var(--fg);
  transition: color var(--theme-transition);
}

/* ===== Footer ========================================================= */
.terminal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px 18px;
  font-size: 12px;
  color: var(--fg-dim);
  background: color-mix(in srgb, var(--bg) 70%, black);
  border-top: 1px solid var(--border);
  transition:
    background var(--theme-transition),
    border-color var(--theme-transition),
    color var(--theme-transition);
}

.terminal__footer a {
  color: var(--fg-dim);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition:
    color var(--theme-transition),
    border-color 160ms ease;
}

.terminal__footer a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.terminal__footer .sep {
  opacity: 0.4;
}

@media (prefers-reduced-motion: reduce) {
  .cursor-line__cursor,
  .theme-toggle,
  .theme-toggle__icon {
    animation: none;
  }
  :root {
    --theme-transition: 0ms;
    --wave-duration: 0ms;
  }
}

/* At medium widths the three full "vigil@r5n — zsh", "preview.cast —
   asciinema", "features.md — glow" tabs don't comfortably fit. Drop
   the dim subtext so the primary title doesn't get ellipsis-cut. */
@media (max-width: 1000px) {
  .tab__shell {
    display: none;
  }
}

@media (max-width: 540px) {
  .terminal__body {
    padding: 18px 14px;
  }
  .terminal__chrome {
    gap: 6px;
    padding: 6px 8px 0 8px;
  }
  .dots {
    padding-bottom: 6px;
  }
  .tab {
    max-width: 130px;
    padding: 5px 8px;
    font-size: 11px;
  }
  .tab__shell {
    display: none;
  }
  .install {
    padding: 10px;
  }
  .install__tab {
    padding: 4px 8px;
    font-size: 10px;
  }
  .theme-toggle__label {
    display: none;
  }
}

/* ===== Feedback modal ================================================== */
.fb-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fb-modal[hidden] {
  display: none;
}
.fb-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 62%, transparent);
  backdrop-filter: blur(3px);
}
.fb-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  padding: 20px;
  overflow-y: auto;
  font-family: var(--font-mono);
  background: var(--bg-elevated);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  box-shadow: var(--shadow-glow);
}
.fb-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.fb-modal__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.fb-modal__close {
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-dim);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 4px;
  transition:
    color 120ms ease,
    background-color 120ms ease;
}
.fb-modal__close:hover {
  color: var(--fg);
  background: color-mix(in srgb, var(--fg) 8%, transparent);
}
.fb-modal__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.fb-modal__intro {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.fb-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fb-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fb-field__label {
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fb-field__opt {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.8;
}
.fb-field__input {
  width: 100%;
  padding: 9px 11px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  transition:
    border-color 120ms ease,
    box-shadow 120ms ease;
}
.fb-field__input::placeholder {
  color: color-mix(in srgb, var(--fg-dim) 70%, transparent);
}
.fb-field__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 22%, transparent);
}
.fb-field__textarea {
  min-height: 96px;
  resize: vertical;
}
.fb-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.fb-turnstile {
  min-height: 65px;
}
.fb-status {
  min-height: 1px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.fb-status--error {
  color: var(--accent);
}
.fb-status--ok {
  color: var(--success);
}
.fb-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.fb-submit .cta__label {
  color: var(--primary);
}
.fb-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
