/* ─── DESIGN TOKENS ──────────────────────────── */
:root {
  /* Backgrounds */
  --bg: #06080f;
  --bg-2: #0b0e1a;
  --surface: #111827;
  --surface-2: #1a2236;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #f3f4f6;
  --text-2: #9ca3af;
  --text-3: #6b7280;

  /* Accent — green (revenue) */
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.1);
  --green-border: rgba(34, 197, 94, 0.2);

  /* Accent — violet (AI) */
  --violet: #818cf8;
  --violet-dim: rgba(129, 140, 248, 0.1);
  --violet-border: rgba(129, 140, 248, 0.2);
  --violet-deep: #6366f1;

  /* Status */
  --red: #f87171;
  --red-dim: rgba(248, 113, 113, 0.1);
  --red-border: rgba(248, 113, 113, 0.2);
  --amber: #fbbf24;
  --amber-dim: rgba(251, 191, 36, 0.1);
  --amber-border: rgba(251, 191, 36, 0.2);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #22c55e 0%, #818cf8 100%);
  --grad-brand: linear-gradient(135deg, #6366f1 0%, #22c55e 100%);

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ─── AMBIENT BACKGROUND ─────────────────────── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.ambient__orb--1 {
  top: -25%;
  right: -10%;
  width: 70vw;
  max-width: 800px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 60%);
}
.ambient__orb--2 {
  bottom: -20%;
  left: -10%;
  width: 60vw;
  max-width: 600px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
}
.ambient__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 15%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 15%, black 10%, transparent 70%);
}

/* ─── CONTAINER ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo__mark { flex-shrink: 0; }
.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__pill {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}
@media (min-width: 640px) { .header__pill { display: flex; } }
.header__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 2.5s ease-in-out infinite;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--sm { font-size: 0.8125rem; padding: 7px 14px; border-radius: 8px; }
.btn--lg { font-size: 1rem; padding: 13px 24px; }

.btn--primary {
  background: var(--green);
  color: #000;
  font-weight: 700;
}
.btn--primary:hover {
  background: #1db54b;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35), 0 8px 32px rgba(34, 197, 94, 0.2);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* ─── BADGES ─────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 9px;
  white-space: nowrap;
}
.badge--sm { font-size: 0.6875rem; padding: 3px 7px; }

.badge--green  { background: var(--green-dim);  color: var(--green);  border: 1px solid var(--green-border);  }
.badge--red    { background: var(--red-dim);    color: var(--red);    border: 1px solid var(--red-border);    }
.badge--amber  { background: var(--amber-dim);  color: var(--amber);  border: 1px solid var(--amber-border);  }
.badge--violet { background: var(--violet-dim); color: var(--violet); border: 1px solid var(--violet-border); }

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.badge--shimmer { animation: shimmer 1.4s ease-in-out infinite; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 88px 0 108px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Hero copy */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 5px 13px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.03);
  animation: fadeUp 0.7s ease-out 0.05s both;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 2.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--text);
  animation: fadeUp 0.7s ease-out 0.15s both;
}
.hero__grad {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 44ch;
  margin: 0 0 36px;
  animation: fadeUp 0.7s ease-out 0.25s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  animation: fadeUp 0.7s ease-out 0.35s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease-out 0.45s both;
}

/* Dashboard card */
.dashboard {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(34, 197, 94, 0.15)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(99, 102, 241, 0.08);
}
.dashboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Live indicator */
.dlive {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
}
.dlive__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Summary stats */
.dsummary {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  margin-bottom: 16px;
}
.dsum { flex: 1; text-align: center; }
.dsum__n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}
.dsum__l {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.dsum--err  .dsum__n { color: var(--red); }
.dsum--warn .dsum__n { color: var(--amber); }
.dsum--ok   .dsum__n { color: var(--green); }

.dsep {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}

/* Deal rows */
.dlist {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.ddeal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.ddeal:hover { border-color: var(--border); }
.ddeal--scan {
  border-color: rgba(129, 140, 248, 0.15);
  background: rgba(129, 140, 248, 0.04);
}
.ddeal__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.ddeal__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ddeal__dot--red    { background: var(--red); }
.ddeal__dot--amber  { background: var(--amber); }
.ddeal__dot--green  { background: var(--green); }
.ddeal__dot--violet {
  background: var(--violet);
  animation: scanDot 1.2s ease-in-out infinite;
}
@keyframes scanDot {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}
.ddeal__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ddeal__meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dashboard footer */
.dashboard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--text-3);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Signal card (floating) */
.signal-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-left: 20px;
  padding: 12px 16px;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.signal-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.signal-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}
.signal-card__desc { font-size: 0.75rem; color: var(--text-3); }

/* ─── STATS STRIP ────────────────────────────── */
.strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(11, 14, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.strip__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 28px 24px;
}
.strip__item {
  flex: 1;
  min-width: 140px;
  padding: 8px 28px;
  text-align: center;
}
.strip__item:first-child { padding-left: 0; }
.strip__item:last-child  { padding-right: 0; }
.strip__val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2px;
}
.strip__lbl {
  font-size: 0.8125rem;
  color: var(--text-3);
}
.strip__div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SECTION HEADERS ────────────────────────── */
.sec-head { margin-bottom: 60px; }
.sec-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

/* ─── HOW IT WORKS ───────────────────────────── */
.how {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .how__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: start;
  }
}
.how__step {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, 0.15), transparent 60%) border-box;
  border: 1px solid transparent;
  transition: background 0.3s;
}
.how__step:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(34, 197, 94, 0.2)) border-box;
}
.how__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 14px;
}
.how__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.how__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.how__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}
.how__connector {
  display: none;
  align-self: center;
  color: var(--text-3);
  padding-top: 20px;
}
@media (min-width: 768px) {
  .how__connector {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
  }
}

/* ─── FEATURES BENTO ─────────────────────────── */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: rgba(11, 14, 26, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bcard--span2 { grid-column: span 2; }
}
@media (min-width: 960px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .bcard--span2:nth-child(1) { grid-column: span 2; }
  .bcard--span2:last-child   { grid-column: span 2; }
}

.bcard {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, 0.12), transparent 50%) border-box;
  border: 1px solid transparent;
  transition: background 0.3s;
}
.bcard:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 197, 94, 0.15)) border-box;
}
.bcard--violet {
  background:
    linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)) padding-box,
    linear-gradient(135deg, rgba(129, 140, 248, 0.35), rgba(34, 197, 94, 0.2)) border-box;
}
.bcard--violet:hover {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(135deg, rgba(129, 140, 248, 0.5), rgba(34, 197, 94, 0.3)) border-box;
}

.bcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bcard__icon--violet {
  background: var(--violet-dim);
  border-color: var(--violet-border);
  color: var(--violet);
}
.bcard__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--text);
}
.bcard__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 20px;
}
.bcard__tag {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  padding: 4px 10px;
}
.bcard__tag--violet {
  color: var(--violet);
  background: var(--violet-dim);
  border-color: var(--violet-border);
}

/* ─── CTA ────────────────────────────────────── */
.cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.cta__box {
  position: relative;
  text-align: center;
  padding: 80px 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.6)) padding-box,
    linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(34, 197, 94, 0.35)) border-box;
  border: 1px solid transparent;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 16px;
  position: relative;
}
.cta__desc {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin: 0 0 36px;
  position: relative;
}

/* ─── COMING SOON BADGE ──────────────────────── */
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--violet);
  background: var(--violet-dim);
  border: 1px solid var(--violet-border);
  border-radius: 20px;
  padding: 5px 12px;
}
.coming-soon--lg {
  font-size: 0.875rem;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* ─── WAITLIST FORM ──────────────────────────── */
.waitlist {
  margin-bottom: 16px;
}
.waitlist--centered { text-align: left; }
.waitlist__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.waitlist__input {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist__input::placeholder { color: var(--text-3); }
.waitlist__input:focus {
  border-color: rgba(129, 140, 248, 0.5);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}
.waitlist__note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin: 10px 0 0;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-2);
  letter-spacing: -0.02em;
}
.footer__tag { color: var(--text-3); }
.footer__copy { margin-left: auto; color: var(--text-3); }
