/* ═══════════════════════════════════════════════════════
   Dolphin{anty} — US Team Management (Security angle)
   Aesthetic: 1Password Business × Stripe Atlas
   Palette:   deep navy + cream + signal green + restrained gold
   Type:      Fraunces (serif display) + Manrope (sans)
              + JetBrains Mono (eyebrows)
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:root {
  /* Repainted from navy → near-black with green tint
     References LATAM gaming-affiliates aesthetic that the user
     prefers. Variable names kept intact; values rebound. */
  --bg-0:       #06090A;
  --bg-1:       #0A0F0A;   /* base near-black, slight green warmth */
  --bg-2:       #131913;
  --bg-3:       #1B221B;
  --bg-4:       #2A3F2A;

  --line:       rgba(245, 242, 236, 0.07);
  --line-2:     rgba(245, 242, 236, 0.12);
  --line-3:     rgba(245, 242, 236, 0.20);

  --ink-0:      #F5F2EC;   /* primary cream */
  --ink-1:      #DDD8CC;
  --ink-2:      #A8B2BD;
  --ink-3:      #6E7C8E;
  --ink-4:      #4A5667;

  --green:      #10B981;
  --green-soft: rgba(16, 185, 129, 0.14);
  /* Was restrained gold #C5A572 — repainted to electric lime
     to match black-green palette family. Kept --gold as variable
     name so all dependent rules update via cascade. */
  --gold:       #C8FF00;
  --gold-soft:  rgba(200, 255, 0, 0.14);
  --red:        #E74C3C;
  --brand:      #B645EE;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  18px;

  --pad-x:      clamp(20px, 5vw, 56px);
  --maxw:       1240px;

  --font-sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

body {
  background: var(--bg-1);
  color: var(--ink-0);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--bg-0); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--lg { padding: 14px 24px; font-size: 15.5px; }
.btn--primary {
  background: var(--gold);
  color: var(--bg-0);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 30px -10px rgba(200,255,0,0.50);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: #B0E000;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 40px -10px rgba(200,255,0,0.60);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-0);
  border-color: var(--line-3);
}
.btn--ghost:hover { background: rgba(245,242,236,0.04); border-color: var(--ink-2); }

.btn--quiet {
  background: transparent;
  color: var(--ink-1);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line-3);
}
.btn--quiet:hover { color: var(--gold); text-decoration-color: var(--gold); }

.btn svg { transition: transform .2s ease; }
.btn--primary:hover svg { transform: translateX(2px); }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 10, 0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.is-scrolled { border-bottom-color: var(--line); background: rgba(6, 9, 10, 0.88); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.header__logo { display: inline-flex; align-items: center; }
.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-2);
}
.header__nav a:hover { color: var(--ink-0); }

@media (max-width: 880px) {
  .header__nav { display: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(200,255,0,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(16,185,129,0.07), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: block;
  max-width: 760px;
}
@media (max-width: 1000px) {
  .hero { padding: 70px 0 80px; }
}

.hero__copy { max-width: 680px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(245,242,236,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 22px;
  color: var(--ink-0);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-2);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item svg { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   STRIP
   ═══════════════════════════════════════════════════════ */
.strip {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
  gap: 24px;
}
.strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.02em;
  line-height: 1;
}
.strip__lbl {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
@media (max-width: 720px) {
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — common
   ═══════════════════════════════════════════════════════ */
.section__head { margin-bottom: 64px; max-width: 720px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink-0);
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════ */
.problem { padding: 110px 0; border-bottom: 1px solid var(--line); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: grid;
  gap: 14px;
  transition: border-color .25s ease, transform .2s ease;
}
.problem-card:hover { border-color: var(--line-3); transform: translateY(-2px); }
.problem-card__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
}
.problem-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 500;
  color: var(--ink-0);
}
.problem-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 760px) { .problem__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   SOLUTION (with permissions table)
   ═══════════════════════════════════════════════════════ */
.solution { padding: 110px 0; border-bottom: 1px solid var(--line); background: var(--bg-0); }
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) { .solution__inner { grid-template-columns: 1fr; } }

.solution__copy { max-width: 540px; }
.solution__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.solution__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--ink-1);
  line-height: 1.5;
}
.solution__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid var(--green);
}
.solution__list li::after {
  content: '✓';
  position: absolute;
  left: 3px; top: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
}
.solution__list strong { color: var(--ink-0); font-weight: 600; }

/* Permissions table mockup */
.permtable {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.permtable__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
}
.permtable__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-4); }
.permtable__dot:nth-child(1) { background: #FF5F57; }
.permtable__dot:nth-child(2) { background: #FFBD2E; }
.permtable__dot:nth-child(3) { background: #27C93F; }
.permtable__title { margin-left: 16px; letter-spacing: 0.02em; }

.permtable__body { padding: 8px; }
.permtable__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.permtable__row:last-child { border-bottom: 0; }
.permtable__row--head {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-3);
  border-radius: 6px;
}
.permtable__row--head span { text-align: center; }
.permtable__row--head span:first-child { text-align: left; }
.permtable__lbl { color: var(--ink-1); font-weight: 500; }
.permtable__row .ok,
.permtable__row .no {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}
.permtable__row .ok { color: var(--green); }
.permtable__row .no { color: var(--ink-4); }

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features { padding: 110px 0; border-bottom: 1px solid var(--line); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features__grid { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: grid;
  gap: 14px;
  transition: border-color .25s ease, transform .2s ease;
}
.feature:hover { border-color: var(--line-3); transform: translateY(-2px); }
.feature--featured {
  background:
    linear-gradient(180deg, rgba(200,255,0,0.06), transparent 60%),
    var(--bg-2);
  border-color: rgba(200,255,0,0.3);
}

.feature__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
}
.feature__icon--gold {
  background: var(--gold-soft);
  color: var(--gold);
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 500;
  color: var(--ink-0);
}
.feature p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
.feature__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════
   WORKFLOW
   ═══════════════════════════════════════════════════════ */
.workflow { padding: 110px 0; border-bottom: 1px solid var(--line); background: var(--bg-0); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 36px 28px;
  border-left: 1px solid var(--line);
  position: relative;
  background: var(--bg-1);
  transition: background .25s ease;
}
.step:first-child { border-left: 0; }
.step:hover { background: var(--bg-2); }
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--ink-0);
}
.step p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(odd) { border-left: 0; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
}

/* ═══════════════════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════════════════ */
.usecases { padding: 110px 0; border-bottom: 1px solid var(--line); }
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .usecases__grid { grid-template-columns: 1fr; } }
.usecase {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: grid;
  gap: 12px;
  transition: border-color .25s ease;
}
.usecase:hover { border-color: var(--line-3); }
.usecase__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.usecase h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 500;
}
.usecase p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════ */
.benefits { padding: 110px 0; border-bottom: 1px solid var(--line); background: var(--bg-0); }
.benefits__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .benefits__inner { grid-template-columns: 1fr; } }

.benefits__list { display: grid; gap: 24px; }
.benefits__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.benefits__list li:last-child { border-bottom: 0; }
.benefits__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-top: 4px;
}
.benefits__list strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink-0);
}
.benefits__list p {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   PROOF
   ═══════════════════════════════════════════════════════ */
.proof { padding: 110px 0; border-bottom: 1px solid var(--line); }
.proof__quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.proof__mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}
.proof__quote p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink-0);
  margin: 0 0 28px;
}
.proof__attr {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
}
.proof__attr strong { color: var(--ink-1); font-weight: 500; }

.proof__logos { margin-top: 64px; text-align: center; }
.proof__logos-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 16px;
}
.proof__logos-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-1);
  justify-content: center;
}
.dotsep { color: var(--ink-4); }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq { padding: 110px 0; border-bottom: 1px solid var(--line); background: var(--bg-0); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
@media (max-width: 880px) { .faq__inner { grid-template-columns: 1fr; gap: 40px; } }
.faq__head { position: sticky; top: 100px; align-self: start; }

.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink-3);
  transition: transform .25s ease, color .2s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: var(--gold); }
.faq__item summary:hover { color: var(--gold); }
.faq__item p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta { padding: 120px 0; }
.final-cta__card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(200,255,0,0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(16,185,129,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
}
.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 14px;
}
.final-cta__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.final-cta__sub {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
}
.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 880px) {
  .final-cta__card { grid-template-columns: 1fr; padding: 44px 28px; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg-0);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  margin: 0;
  letter-spacing: 0.01em;
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.footer__meta a:hover { color: var(--ink-0); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
