/* ───────────────────────────────────────────────
   Plexer — custom design layer on top of Bootstrap 5
   Bootstrap handles: navbar, grid (container/row/col),
   flex + spacing utilities. This file owns the brand look.
   Loaded AFTER bootstrap.min.css so these rules win.
   ─────────────────────────────────────────────── */

/* ── LIGHT MODE (default) ── */
:root {
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --surface2: #F0EEE9;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.13);
  --text: #1A1916;
  --muted: #6B6860;
  --subtle: #C8C6BF;
  --accent: #1A1916;
  --accent-text: #F8F7F4;
  --chrome-blue: #4285F4;
  --glow: rgba(26, 25, 22, 0.04);
  /* Plexer brand accents (fixed across themes) */
  --plexer-violet: #7C5CFF;
  --plexer-send: #5468FF;
}

/* ── DARK MODE — driven by Bootstrap's data-bs-theme ── */
[data-bs-theme="dark"] {
  --bg: #0A0A09;
  --surface: #111110;
  --surface2: #1A1918;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --text: #F2EFE8;
  --muted: #7A7670;
  --subtle: #3A3835;
  --accent: #E8E0CC;
  --accent-text: #0A0A09;
  --glow: rgba(232, 224, 204, 0.06);
}

html {
  scroll-behavior: smooth;
}

/* Override Bootstrap Reboot body defaults */
body {
  font-family: 'Geist', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.25s, color 0.25s;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAV (Bootstrap .navbar, restyled) ── */
.plexer-nav {
  z-index: 50;
  height: 56px;
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(20px);
  transition: background 0.25s, border-color 0.25s;
}

[data-bs-theme="dark"] .plexer-nav {
  background: rgba(10, 10, 9, 0.85);
}

.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 12px;
  height: 12px;
}

.logo-mark svg path,
.logo-mark svg circle {
  stroke: var(--accent-text);
  fill: none;
}

.logo-mark svg circle[r="1.5"] {
  fill: var(--accent-text);
  stroke: none;
}

/* Theme toggle button */
.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  margin-right: 8px;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--surface2);
}

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent-text);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.85;
  color: var(--accent-text);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 4rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 5px 12px;
  border: 1px solid var(--border2);
  border-radius: 20px;
  background: var(--surface);
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chrome-blue);
  box-shadow: 0 0 6px rgba(66, 133, 244, 0.7);
}

h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

h1 em {
  font-style: italic;
  color: var(--muted);
}

.sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.cta-group {
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

/* Custom CTA button — NOT Bootstrap's .btn-primary (renamed to avoid the clash) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: 12px;
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-bs-theme="dark"] .btn-cta {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-cta:hover,
.btn-cta:focus,
.btn-cta:active {
  opacity: 0.9;
  transform: translateY(-1px);
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-bs-theme="dark"] .btn-cta:hover,
[data-bs-theme="dark"] .btn-cta:focus,
[data-bs-theme="dark"] .btn-cta:active {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
}

.chrome-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.chrome-badge svg {
  width: 14px;
  height: 14px;
}

/* ── BROWSER MOCKUP ── */
.mockup-wrap {
  width: 100%;
  max-width: 680px;
  margin: 4rem auto 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
  position: relative;
  z-index: 2;
}

.browser {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: background 0.25s, border-color 0.25s;
}

[data-bs-theme="dark"] .browser {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, border-color 0.25s;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--subtle);
}

.url-bar {
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s;
}

.url-bar-lock {
  color: var(--subtle);
}

.ext-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ext-icon svg {
  width: 14px;
  height: 14px;
}

.ext-icon svg circle,
.ext-icon svg path {
  stroke: var(--accent-text);
}

.browser-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 470px;
}

.page-sim {
  padding: 24px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.line {
  height: 10px;
  border-radius: 4px;
  background: var(--surface2);
  margin-bottom: 10px;
  transition: background 0.25s;
}

.line.short {
  width: 55%;
}

.line.med {
  width: 78%;
}

.line.full {
  width: 100%;
}

.line.head {
  height: 16px;
  width: 65%;
  margin-bottom: 16px;
}

.line.head2 {
  height: 22px;
  width: 82%;
  margin-bottom: 20px;
}

.highlighted {
  background: rgba(26, 25, 22, 0.08) !important;
  border-radius: 4px;
  position: relative;
  border: 1px solid rgba(26, 25, 22, 0.15);
}

[data-bs-theme="dark"] .highlighted {
  background: rgba(232, 224, 204, 0.12) !important;
  border: 1px solid rgba(232, 224, 204, 0.2);
}

/* plexer panel */
.plexer-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
  transition: background 0.25s;
}

.panel-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.25s;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.panel-logo {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.panel-version {
  font-family: 'Geist Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 5px;
  line-height: 1;
}

.panel-gear {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.panel-gear:hover {
  color: var(--text);
  background: var(--surface2);
}

.panel-gear svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* thread toolbar */
.panel-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.25s;
}

.tb-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 9px;
  color: var(--muted);
  font-family: 'Geist', sans-serif;
  font-size: 0.68rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}

.tb-search:hover {
  border-color: var(--border2);
}

.tb-search svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tb-search span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.tb-select {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 8px;
  color: var(--text);
  font-size: 0.68rem;
  white-space: nowrap;
  cursor: pointer;
}

.tb-select svg {
  width: 11px;
  height: 11px;
  stroke: var(--muted);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tb-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.tb-icon:hover {
  color: var(--text);
  border-color: var(--border2);
}

.tb-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-msgs {
  flex: 1;
  padding: 14px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
}

.msg {
  font-size: 0.76rem;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 8px;
  max-width: 88%;
  transition: background 0.25s, border-color 0.25s;
}

.msg.user {
  background: var(--surface2);
  color: var(--text);
  align-self: flex-end;
  border: 1px solid var(--border);
}

.msg.ai {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  align-self: flex-start;
}

[data-bs-theme="dark"] .msg.ai {
  background: rgba(232, 224, 204, 0.06);
}

.msg.ai strong {
  color: var(--text);
  font-weight: 500;
}

.panel-composer {
  margin: 6px 12px 8px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: background 0.25s, border-color 0.25s;
}

.composer-text {
  font-size: 0.72rem;
  color: var(--subtle);
  line-height: 1.4;
  min-height: 28px;
}

.composer-toggles {
  display: flex;
  gap: 6px;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Geist', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 7px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.toggle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toggle.on {
  background: var(--plexer-violet);
  border-color: var(--plexer-violet);
  color: #fff;
}

.composer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.composer-model {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.gem {
  display: inline-flex;
  flex-shrink: 0;
}

.gem svg {
  width: 14px;
  height: 14px;
}

.model-name {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.model-price {
  font-family: 'Geist Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted);
  white-space: nowrap;
}

.model-help {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 12px;
  text-align: center;
  flex-shrink: 0;
}

.composer-send {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--plexer-send);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(84, 104, 255, 0.35);
  transition: transform 0.12s, opacity 0.15s;
}

.composer-send:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.composer-send svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-help {
  display: flex;
  justify-content: flex-end;
  padding: 0 12px 12px;
}

.help-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 4px 11px 4px 6px;
}

.help-q {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  font-size: 0.55rem;
  line-height: 12px;
  text-align: center;
}

/* ── HOW IT WORKS (Bootstrap row/col, custom skin) ── */
.steps {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 6rem 0;
  transition: border-color 0.25s;
}

.step {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border-right: 1px solid var(--border);
  transition: background 0.25s, border-color 0.25s;
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  color: var(--subtle);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.25s, border-color 0.25s;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── BOTTOM CTA ── */
.bottom-cta {
  text-align: center;
  padding: 6rem 0 8rem;
}

.bottom-cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.bottom-cta h2 em {
  font-style: italic;
  color: var(--muted);
}

.bottom-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* notice */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.77rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 14px;
  text-align: left;
  line-height: 1.55;
  transition: background 0.25s, border-color 0.25s;
}

.notice svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--subtle);
  transition: border-color 0.25s;
}

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

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  background: var(--muted);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1.1s steps(1) infinite;
}

/* Stack the step dividers vertically on mobile (below Bootstrap's md breakpoint) */
@media (max-width: 767.98px) {
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .browser-content {
    grid-template-columns: 1fr;
  }

  .plexer-panel {
    border-top: 1px solid var(--border);
    min-height: 380px;
  }

  .page-sim {
    display: none;
  }
}

/* ── STATUS + TRUST COPY ── */
.status-badge {
  text-align: center;
}

.trust-line {
  max-width: 460px;
  margin: 10px auto 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-trust {
  margin-top: 0;
  margin-bottom: 0;
}

.footer-trust {
  display: block;
  margin-top: 0.35rem;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── PRIVACY PAGE ── */
.privacy-page {
  padding: 112px 1.5rem 5rem;
}

.privacy-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  transition: background 0.25s, border-color 0.25s;
}

[data-bs-theme="dark"] .privacy-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.privacy-card h1 {
  max-width: none;
  margin-bottom: 0.75rem;
  opacity: 1;
  animation: none;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.privacy-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.privacy-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.privacy-card a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.effective-date {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

.btn-cta-disabled {
  cursor: default;
}

.btn-cta-disabled:hover,
.btn-cta-disabled:focus,
.btn-cta-disabled:active {
  opacity: 1;
  transform: none;
}
