/* ============================================================
   bap.clinic — landing.css
   Dual theme (light + dark), auto-switching. Bootstrap 5.3 base.
   Brand accent #dc3545 is identical in both themes.
   All section backgrounds are CSS/SVG art — no external images,
   no person photos (brief). Mobile-first.
   ============================================================ */

/* ---------- Brand constants (theme-independent) ---------- */
:root {
  --navy:      #0B1B33;
  --red:       #dc3545;
  --red-deep:  #b52a38;

  --ff-display: "Bricolage Grotesque", system-ui, sans-serif;
  --ff-body:    "Hanken Grotesk", system-ui, sans-serif;

  --radius:   18px;
  --radius-l: 26px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- LIGHT theme (default) ---------- */
:root,
[data-theme="light"] {
  --bg:            #ffffff;
  --surface:       #ffffff;
  --surface-cream: #F7F6F2;
  --surface-cream-2:#FAFAF8;
  --band:          #0B1B33;   /* stats / footer dark band */
  --ink:           #0B1B33;
  --ink-2:         #5A6478;
  --ink-3:         #7C8499;
  --line:          #E7E5DE;
  --card:          #ffffff;
  --card-line:     #E7E5DE;
  --chip-bg:       rgba(11,27,51,.07);
  --topbar-bg:     rgba(255,255,255,.82);
  --shadow-md:     0 10px 30px rgba(11,27,51,.10), 0 2px 6px rgba(11,27,51,.06);
}

/* ---------- DARK theme ---------- */
[data-theme="dark"] {
  --bg:            #0A1526;
  --surface:       #13243D;
  --surface-cream: #0E1B30;
  --surface-cream-2:#0C1729;
  --band:          #13243D;
  --ink:           #E8EDF4;
  --ink-2:         #9FB3C8;
  --ink-3:         #8AA0B8;
  --line:          #1F3454;
  --card:          #13243D;
  --card-line:     #243A5C;
  --chip-bg:       rgba(255,255,255,.08);
  --topbar-bg:     rgba(10,21,38,.82);
  --shadow-md:     0 10px 34px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Short, smooth theme transition (reduced-motion guarded below) */
body,
.topbar, .lang-toggle, .theme-toggle, .step-card, .influencer-card,
.stats, .site-footer, .ic-badge {
  transition: background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease);
}

h1, h2, h3, .display-font {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}

.text-accent { color: var(--red) !important; }
a { color: inherit; }

/* Accessible, visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-select:focus-visible,
.dropdown-item:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- Buttons ---------- */
.btn { font-family: var(--ff-body); font-weight: 500; border-radius: 999px; letter-spacing: -0.01em; }
.btn-lg { padding: .82rem 1.7rem; }

.btn-brand {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(220,53,69,.28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--red-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220,53,69,.36);
}
.btn-brand:active { transform: translateY(0); }

.btn-ghost-light {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-ghost-light:hover, .btn-ghost-light:focus {
  background: rgba(255,255,255,.16);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-navy {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--ink); color: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  .btn-brand, .btn-ghost-light, .btn-outline-navy { transition: none; }
  .btn-brand:hover, .btn-ghost-light:hover { transform: none; }
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 1030;
  background: var(--topbar-bg);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand-wordmark {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .1rem;
}
.brand-wordmark .dot { color: var(--red); }

.lang-toggle,
.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 500;
  border-radius: 999px;
  font-size: .9rem;
}
.lang-toggle { padding: .38rem .8rem; }
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  padding: 0;
}
.theme-toggle:hover { color: var(--red); border-color: var(--red); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .i-sun { display: none; }
.theme-toggle .i-moon { display: inline; }
[data-theme="dark"] .theme-toggle .i-sun { display: inline; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }

.lang-menu { border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: .35rem; background: var(--surface); }
.lang-menu .dropdown-item { border-radius: 9px; font-weight: 500; padding: .5rem .8rem; color: var(--ink); }
.lang-menu .dropdown-item:hover { background: var(--surface-cream); }
.lang-menu .dropdown-item.active { background: var(--surface-cream); color: var(--red); }
.nav-login { color: var(--ink-2); font-weight: 500; text-decoration: none; }
.nav-login:hover { color: var(--red); }

/* ============================================================
   HERO — full-bleed navy CSS-art background (always dark, both themes)
   ============================================================ */
/* QA/preview flag: relax hero height so the full page captures in one shot */
[data-preview="full"] .hero { min-height: 560px !important; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 12%, #1a335c 0%, rgba(26,51,92,0) 55%),
    radial-gradient(90% 80% at 88% 18%, rgba(220,53,69,.42) 0%, rgba(220,53,69,0) 50%),
    radial-gradient(120% 120% at 50% 120%, #07101f 0%, rgba(7,16,31,0) 60%),
    linear-gradient(160deg, #0d2042 0%, var(--navy) 60%, #07101f 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1'%3E%3Cpath d='M-50 120 Q300 40 600 140 T1250 130'/%3E%3Cpath d='M-50 240 Q300 160 600 260 T1250 250'/%3E%3Cpath d='M-50 360 Q300 280 600 380 T1250 370'/%3E%3Cpath d='M-50 480 Q300 400 600 500 T1250 490'/%3E%3Cpath d='M-50 600 Q300 520 600 620 T1250 610'/%3E%3Cpath d='M-50 720 Q300 640 600 740 T1250 730'/%3E%3C/g%3E%3Cg fill='%23dc3545' fill-opacity='0.5'%3E%3Ccircle cx='220' cy='150' r='3'/%3E%3Ccircle cx='540' cy='300' r='3'/%3E%3Ccircle cx='860' cy='220' r='3'/%3E%3Ccircle cx='980' cy='470' r='3'/%3E%3Ccircle cx='360' cy='540' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover; background-position: center;
  opacity: .9;
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: .4rem .85rem; border-radius: 999px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(220,53,69,.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(220,53,69,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(220,53,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,53,69,0); }
}
@media (prefers-reduced-motion: reduce) { .hero-eyebrow .pulse { animation: none; } }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  max-width: 14ch;
  margin: 1.1rem auto 0;
}
.hero h1 .em { color: var(--red); }
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 2.1vw, 1.28rem);
  max-width: 56ch; margin: 1.2rem auto 0;
}
.hero-note { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 1.4rem; }

/* ---------- Reveal on load / scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .is-in { transition: none; }
}

/* ============================================================
   STATS strip
   ============================================================ */
.stats {
  background: var(--band);
  color: #fff;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .stat-num {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--red);
  line-height: 1;
}
.stats .stat-label { color: rgba(255,255,255,.66); font-size: .98rem; margin-top: .4rem; }
.stats .vr-soft { background: rgba(255,255,255,.14); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-cream { background: var(--surface-cream); }
.section-cream-2 { background: var(--surface-cream-2); }

.eyebrow-line {
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--red);
}
.section-title { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.section-sub { color: var(--ink-2); font-size: 1.08rem; max-width: 52ch; }

.step-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-l);
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
@media (prefers-reduced-motion: reduce) { .step-card:hover { transform: none; } }

.step-k {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1rem; color: var(--red);
  letter-spacing: .04em;
}
.step-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(220,53,69,.12);
  color: var(--red);
  margin: .3rem 0 1.1rem;
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.step-card p { color: var(--ink-2); margin: 0; }

/* ============================================================
   SHOWCASE — influencer cards, abstract CSS texture (no photos)
   ============================================================ */
.influencer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-line);
  border-radius: var(--radius-l);
  background: var(--card);
  padding: 1.6rem;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.influencer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) { .influencer-card:hover { transform: none; } }

.influencer-card .tex {
  position: absolute; inset: 0; z-index: 0; opacity: .16; pointer-events: none;
  background:
    radial-gradient(40% 50% at 85% 12%, var(--red) 0%, rgba(220,53,69,0) 60%),
    radial-gradient(50% 60% at 8% 95%, var(--navy) 0%, rgba(11,27,51,0) 60%);
}
[data-theme="dark"] .influencer-card .tex { opacity: .22; }
.influencer-card.alt .tex {
  background:
    radial-gradient(45% 55% at 15% 12%, var(--navy) 0%, rgba(11,27,51,0) 60%),
    radial-gradient(48% 58% at 92% 88%, var(--red) 0%, rgba(220,53,69,0) 60%);
}
[data-theme="dark"] .influencer-card .tex {
  background:
    radial-gradient(40% 50% at 85% 12%, var(--red) 0%, rgba(220,53,69,0) 60%),
    radial-gradient(55% 65% at 8% 95%, #3a6db5 0%, rgba(58,109,181,0) 60%);
}
[data-theme="dark"] .influencer-card.alt .tex {
  background:
    radial-gradient(45% 55% at 15% 12%, #3a6db5 0%, rgba(58,109,181,0) 60%),
    radial-gradient(48% 58% at 92% 88%, var(--red) 0%, rgba(220,53,69,0) 60%);
}
.influencer-card .tex::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none' stroke='%230B1B33' stroke-width='1' stroke-opacity='0.5'%3E%3Ccircle cx='160' cy='40' r='30'/%3E%3Ccircle cx='40' cy='160' r='46'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px; background-position: top right;
}
[data-theme="dark"] .influencer-card .tex::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='none' stroke='%23E8EDF4' stroke-width='1' stroke-opacity='0.5'%3E%3Ccircle cx='160' cy='40' r='30'/%3E%3Ccircle cx='40' cy='160' r='46'/%3E%3C/g%3E%3C/svg%3E");
}
.influencer-card > *:not(.tex) { position: relative; z-index: 1; }

.avatar-initial {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem;
  color: #fff; background: var(--navy);
  flex: 0 0 auto;
}
[data-theme="dark"] .avatar-initial { background: #294b7d; }
.influencer-card.alt .avatar-initial { background: var(--red); }
.ic-handle { font-weight: 500; color: var(--ink); }
.ic-meta { color: var(--ink-3); font-size: .9rem; }

.ic-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .03em;
  padding: .22rem .6rem; border-radius: 999px;
}
.ic-badge.cash { background: var(--chip-bg); color: var(--ink-2); }
.ic-badge.challenge { background: rgba(220,53,69,.14); color: var(--red); }

.ic-amount { font-family: var(--ff-display); font-weight: 600; color: var(--red); font-size: 1.5rem; line-height: 1.1; }
.ic-amount.small { font-size: 1.18rem; }
.ic-note { color: var(--ink-2); font-size: .92rem; margin: .35rem 0 0; }

/* ============================================================
   CLOSING CTA — always dark (both themes)
   ============================================================ */
.closing {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(220,53,69,.5) 0%, rgba(220,53,69,0) 55%),
    linear-gradient(150deg, #0d2042 0%, var(--navy) 70%, #07101f 100%);
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='600'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05'%3E%3Cpath d='M0 100 Q250 30 500 110 T1000 100'/%3E%3Cpath d='M0 300 Q250 230 500 310 T1000 300'/%3E%3Cpath d='M0 500 Q250 430 500 510 T1000 500'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}
.closing > .container { position: relative; z-index: 1; }
.closing-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: rgba(220,53,69,.22); border: 1px solid rgba(220,53,69,.5);
  padding: .42rem .9rem; border-radius: 999px;
}
.closing h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.closing p { color: rgba(255,255,255,.78); font-size: 1.12rem; max-width: 48ch; margin-inline: auto; }

/* ============================================================
   FLAGS (header language selector)
   ============================================================ */
.flag {
  display: inline-flex; width: 20px; height: 15px;
  border-radius: 2px; overflow: hidden; flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(11,27,51,.10);
}
.flag svg { display: block; width: 100%; height: 100%; }
[data-theme="dark"] .flag { box-shadow: 0 0 0 1px rgba(255,255,255,.18); }

/* Compact topbar on narrow screens (keep everything inside the viewport) */
@media (max-width: 480px) {
  .topbar .container { padding-left: 12px; padding-right: 12px; }
  .topbar .btn-brand { padding: .42rem .8rem; font-size: .92rem; }
  .lang-toggle { padding: .34rem .55rem; }
  .lang-toggle .lang-code { display: none; }     /* flag only on phones */
  .lang-toggle.dropdown-toggle::after { margin-left: .25rem; }
}

/* ============================================================
   REGISTER WIZARD
   ============================================================ */
.reg-main { padding: clamp(1.5rem, 5vw, 3.5rem) 0 4rem; background: var(--bg); min-height: calc(100vh - 70px); }
.reg-head .section-title { font-size: clamp(1.7rem, 4.4vw, 2.4rem); }

.reg-stepper {
  list-style: none; display: flex; gap: .4rem; padding: 0; margin: 0 0 1.4rem;
  counter-reset: step; flex-wrap: wrap; justify-content: center;
}
.reg-step { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--ink-3); }
.reg-step:not(:last-child)::after { content: ""; width: 16px; height: 1px; background: var(--line); margin-left: .25rem; }
.reg-step-dot {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 600; font-size: .8rem; background: var(--chip-bg); color: var(--ink-2);
  border: 1px solid var(--line);
}
.reg-step.current .reg-step-dot { background: var(--red); color: #fff; border-color: var(--red); }
.reg-step.done .reg-step-dot { background: rgba(220,53,69,.14); color: var(--red); border-color: transparent; }
.reg-step.current .reg-step-label { color: var(--ink); font-weight: 500; }
.reg-step-label { white-space: nowrap; }
@media (max-width: 520px) { .reg-step-label { display: none; } .reg-step:not(:last-child)::after { width: 10px; } }

.reg-card {
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius-l);
  padding: clamp(1.3rem, 4vw, 2.2rem); box-shadow: var(--shadow-md);
}
.reg-step-title { font-size: 1.35rem; margin-bottom: 1.1rem; }
.reg-field { margin-bottom: 1.1rem; }
.reg-label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.reg-hint { color: var(--ink-3); font-size: .85rem; margin-top: .35rem; }
.reg-err { color: var(--red); font-size: .85rem; margin-top: .35rem; font-weight: 500; }
.reg-card .form-control, .reg-card .form-select {
  border-radius: 12px; padding: .7rem .9rem; border-color: var(--line);
  background: var(--surface); color: var(--ink);
}
.reg-card .form-control:focus, .reg-card .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 .2rem rgba(220,53,69,.18);
}
.reg-card .form-control.is-invalid, .reg-card .form-select.is-invalid { border-color: var(--red); }

.reg-alert {
  background: rgba(220,53,69,.10); border: 1px solid rgba(220,53,69,.4); color: var(--red);
  border-radius: 12px; padding: .7rem .9rem; font-size: .9rem; font-weight: 500; margin-bottom: 1rem;
}

.reg-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }

.reg-contract {
  max-height: 280px; overflow-y: auto; white-space: pre-wrap;
  background: var(--surface-cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; font-size: .88rem; line-height: 1.55; color: var(--ink-2);
}
.reg-check { display: flex; gap: .6rem; align-items: flex-start; cursor: pointer; font-size: .95rem; }
.reg-check input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--red); flex: 0 0 auto; }

.reg-goals { display: grid; gap: .7rem; }
.reg-goal {
  display: block; cursor: pointer; border: 1px solid var(--card-line); border-radius: 14px;
  padding: .9rem 1.1rem; background: var(--surface); transition: border-color .2s var(--ease), background .2s var(--ease);
}
.reg-goal:hover { border-color: var(--red); }
.reg-goal input { position: absolute; opacity: 0; pointer-events: none; }
.reg-goal.selected, .reg-goal:has(input:checked) {
  border-color: var(--red); background: rgba(220,53,69,.06);
}
.reg-goal-title { display: block; font-weight: 500; color: var(--ink); }
.reg-goal-desc { display: block; color: var(--ink-3); font-size: .86rem; margin-top: .15rem; }
.reg-foot { color: var(--ink-3); font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--band); color: rgba(255,255,255,.7); padding: 2.6rem 0; border-top: 1px solid var(--line); }
.site-footer .brand-wordmark { color: #fff; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .foot-sep { color: rgba(255,255,255,.25); }
