/* ==========================================================================
   VoltFi Gold Vault — Landing Page Styles
   Clean, editable CSS with custom properties. No build tools needed.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary: #FF7A00;             /* VoltFi orange — CTAs, buttons */
  --primary-hover: #E56D00;       /* Darker orange on hover */
  --primary-foreground: #FFFFFF;  /* White text on orange */

  /* Gold accent */
  --gold: #B8860B;                /* Dark goldenrod for text, icons */
  --gold-light: #D4A017;          /* Lighter gold for badges */
  --gold-bg: rgba(184, 134, 11, 0.08); /* Gold tint backgrounds */
  --gold-border: rgba(184, 134, 11, 0.2);

  /* Surfaces — matching voltfi.xyz */
  --background: #FAFAFA;          /* Neutral white, matches voltfi.xyz body */
  --foreground: #0D0D0D;          /* Near-black text */
  --card: #F0F0F0;                /* Card background */
  --card-foreground: #0D0D0D;

  /* Borders */
  --border: #E0E0E0;              /* Neutral gray border */
  --border-light: rgba(0, 0, 0, 0.08);

  /* Muted text */
  --muted: #E8E8E8;
  --muted-foreground: #525252;    /* hsl(0 0% 32%) */

  /* Secondary (badges, subtle buttons) */
  --secondary: #F0F0F0;           /* Neutral light gray */
  --secondary-foreground: #0D0D0D;

  /* Status */
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-bg: rgba(34, 197, 94, 0.1);
  --green-border: rgba(34, 197, 94, 0.2);

  /* Fonts */
  --font-sans: "General Sans", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Spacing */
  --container-max: 72rem;  /* 1152px = max-w-6xl */
  --container-pad: 1.5rem; /* px-6 */

  /* Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);

  /* Button outline */
  --button-outline: rgba(0, 0, 0, 0.1);
  --badge-outline: rgba(0, 0, 0, 0.05);
}


/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

ol, ul {
  list-style: none;
}


/* --------------------------------------------------------------------------
   3. Utility / Layout Helpers
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tabular numbers for data */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.font-mono {
  font-family: var(--font-mono);
}


/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

/* Primary (orange) button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary-hover);
  border-radius: var(--radius);
  padding: 0 2rem;
  min-height: 2.5rem;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  pointer-events: none;
}

/* Small primary button (nav) */
.btn-primary--sm {
  font-size: 0.75rem;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: var(--radius);
}

.btn-primary--sm svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.5rem;
}

/* Outline / ghost button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--button-outline);
  border-radius: var(--radius);
  padding: 0 2rem;
  min-height: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.btn-outline:active {
  box-shadow: none;
  transform: scale(0.98);
}

.btn-outline svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  pointer-events: none;
}

/* Medium button variant */
.btn-md {
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}


/* --------------------------------------------------------------------------
   5. Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: var(--radius);
  padding: 0.125rem 0.625rem;
  font-weight: 600;
  font-size: 0.75rem;
  transition: colors 0.15s ease;
}

.badge--secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid transparent;
}

.badge--gold {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
}

.badge--muted {
  color: var(--muted-foreground);
  border: 1px solid var(--badge-outline);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.badge--green {
  background-color: var(--green-bg);
  color: #4ADE80;
  border: 1px solid var(--green-border);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}


/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
  background-color: rgba(248, 244, 239, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  width: 2rem;
  height: 2rem;
}

.nav__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
}

.nav__link:hover {
  color: var(--foreground);
}

/* Mobile hamburger */
.nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--foreground);
}

.nav__hamburger svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(248, 244, 239, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 1.5rem;
}

.nav__mobile-menu.is-open {
  display: flex;
}

.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1rem;
}

.nav__mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 0;
  color: var(--foreground);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s ease;
}

.nav__mobile-link:hover {
  color: var(--primary);
}

.nav__mobile-cta {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
  .nav__hamburger {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top, hsla(29, 100%, 50%, 0.07), transparent 60%);
}

.hero__inner {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.hero__content {
  max-width: 36rem;
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* Vault overview card */
.vault-card {
  width: 100%;
  max-width: 24rem;
  border: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.vault-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.vault-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vault-card__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--green);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.vault-card__price-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.vault-card__price-label span {
  font-size: 10px;
  opacity: 0.6;
}

.vault-card__price {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.vault-card__change {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.vault-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vault-card__stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.vault-card__stat-value {
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.vault-card__stat-value--gold {
  color: var(--gold);
}

.vault-card__stat-value--sm {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Gold callout inside card */
.vault-card__callout {
  background-color: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
}

.vault-card__callout p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__inner {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .vault-card {
    width: auto;
    flex-shrink: 0;
  }
}


/* --------------------------------------------------------------------------
   8. Stats Bar
   -------------------------------------------------------------------------- */
.stats {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.4);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stats__value {
  font-size: 0.875rem;
  font-weight: 600;
}

.stats__label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .stats__value {
    font-size: 1rem;
  }
}


/* --------------------------------------------------------------------------
   9. How It Works
   -------------------------------------------------------------------------- */
.how-it-works {
  padding: 5rem 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-header {
  max-width: 32rem;
  margin-bottom: 3.5rem;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  border: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.6);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.step-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background-color: var(--gold-bg);
}

.step-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.step-card__number {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--muted-foreground);
}

.step-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 7rem 0;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   10. Features (Why VoltFi Gold)
   -------------------------------------------------------------------------- */
.features {
  border-top: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.3);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: rgba(250, 250, 250, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.feature-card__icon {
  margin-bottom: 0.75rem;
}

.feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.feature-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .features {
    padding: 7rem 0;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   11. Vault Preview (Dashboard Mockup)
   -------------------------------------------------------------------------- */
.vault-preview {
  padding: 5rem 0;
}

.dashboard-card {
  border: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dashboard-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.dashboard-card__title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-card__au {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--gold-bg);
}

.dashboard-card__au span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.dashboard-card__name {
  font-size: 1rem;
  font-weight: 600;
}

.dashboard-card__flow {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.dashboard-card__stats {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
}

.dashboard-stat__label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.dashboard-stat__value {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.dashboard-stat__value--gold {
  color: var(--gold);
}

.dashboard-stat__sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.dashboard-stat__sub a {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: text-decoration 0.15s ease;
}

.dashboard-stat__sub a:hover {
  text-decoration: underline;
}

.dashboard-stat__sub a svg {
  width: 0.75rem;
  height: 0.75rem;
}

.dashboard-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .dashboard-card__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .vault-preview {
    padding: 7rem 0;
  }
}


/* --------------------------------------------------------------------------
   12. Roadmap
   -------------------------------------------------------------------------- */
.roadmap {
  border-top: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.3);
  padding: 5rem 0;
}

.roadmap__timeline {
  display: grid;
  gap: 1.25rem;
}

.roadmap__phase {
  border: 1px solid var(--border-light);
  background-color: rgba(250, 250, 250, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.roadmap__phase-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.roadmap__phase-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.roadmap__phase-week {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--muted-foreground);
}

.roadmap__phase-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.roadmap__phase-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.roadmap__milestone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--gold-bg);
  border: 1px solid var(--gold-border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.roadmap__milestone svg {
  color: var(--gold);
}

@media (min-width: 768px) {
  .roadmap {
    padding: 7rem 0;
  }
  .roadmap__timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}


/* --------------------------------------------------------------------------
   13. Comparison Table
   -------------------------------------------------------------------------- */
.compare {
  padding: 5rem 0;
}

.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background-color: rgba(250, 250, 250, 0.6);
}

.compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.compare__table thead {
  border-bottom: 1px solid var(--border-light);
}

.compare__table th {
  padding: 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted-foreground);
  text-align: left;
  white-space: nowrap;
}

.compare__table td {
  padding: 0.875rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.compare__table th.compare__highlight {
  color: var(--gold);
}

.compare__table td.compare__highlight {
  font-weight: 600;
  color: var(--gold);
}

@media (min-width: 768px) {
  .compare {
    padding: 7rem 0;
  }
}


/* --------------------------------------------------------------------------
   14. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  border-top: 1px solid var(--border-light);
  background-color: rgba(245, 245, 245, 0.3);
  padding: 5rem 0;
}

.cta-section__inner {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.cta-section__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.cta-section__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
}


/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 1.5rem;
  height: 1.5rem;
}

.footer__name {
  font-size: 0.875rem;
  font-weight: 500;
}

.footer__tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: var(--foreground);
}

.footer__link img {
  width: 0.875rem;
  height: 0.875rem;
}
