/* ============================================================
   TIDAL WAGE — Main Stylesheet
   Page-level styles: nav, hero, sections, footer
   ============================================================ */

@import url('design-system.css');

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-normal), backdrop-filter var(--transition-normal);
}

.nav.scrolled {
  background: rgba(13,15,14,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}

.nav__logo-text span {
  font-weight: var(--weight-light);
  opacity: 0.7;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: var(--color-text-primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn--ghost { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  background: var(--gradient-hero);
  background-image:
    linear-gradient(180deg, rgba(13,15,14,0.55) 0%, rgba(13,15,14,0.75) 60%, rgba(13,15,14,0.97) 100%),
    url('../assets/images/backgrounds/bg-teal-2.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Ambient glow blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.hero__blob--1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,168,160,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(91,196,212,0.07) 0%, transparent 70%);
  bottom: 100px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 var(--space-6);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  animation: fadeUp 0.5s ease forwards;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero__subheadline {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto var(--space-10);
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero__social-proof {
  margin-top: var(--space-12);
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero__social-proof-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* Dashboard preview */
.hero__preview {
  width: 100%;
  max-width: 1000px;
  margin: var(--space-16) auto 0;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero__preview-frame {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.hero__preview-bar {
  background: var(--color-dark-3);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero__preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__preview-dot:nth-child(1) { background: #FF5F57; }
.hero__preview-dot:nth-child(2) { background: #FFBD2E; }
.hero__preview-dot:nth-child(3) { background: #28C840; }

.hero__preview-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

/* Placeholder dashboard inside frame */
.hero__preview-content {
  aspect-ratio: 16/9;
  background: var(--color-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.hero__preview-placeholder {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero__preview-sidebar {
  background: var(--color-dark-3);
  border-right: 1px solid rgba(255,255,255,0.04);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hero__preview-sidebar-item {
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
}

.hero__preview-sidebar-item.active {
  background: rgba(26,168,160,0.15);
  border: 1px solid rgba(26,168,160,0.2);
}

.hero__preview-main {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero__preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.hero__preview-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  height: 64px;
}

.hero__preview-stat-card:first-child {
  border-color: rgba(26,168,160,0.2);
  background: rgba(26,168,160,0.05);
}

.hero__preview-table {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
}

.hero__preview-table-row {
  height: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  padding: 0 var(--space-3);
  gap: var(--space-3);
}

.hero__preview-table-cell {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
}

.hero__preview-table-row:first-child .hero__preview-table-cell {
  background: rgba(255,255,255,0.08);
}

.hero__preview-badge {
  width: 48px;
  height: 18px;
  border-radius: var(--radius-full);
  background: rgba(26,168,160,0.2);
  margin-left: auto;
  flex-shrink: 0;
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-6) 0;
  overflow: hidden;
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  padding: 0 var(--space-6);
}

.proof-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.proof-strip__icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================================
   FEATURES — BENTO GRID
   ============================================================ */
.features {
  background: var(--color-dark);
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.features__header .h2 {
  margin-bottom: var(--space-4);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-4);
}

/* Bento card sizes */
.bento__card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-normal);
  overflow: hidden;
  position: relative;
}

.bento__card:hover {
  border-color: rgba(26,168,160,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Card grid positions */
.bento__card--wide     { grid-column: span 8; }
.bento__card--narrow   { grid-column: span 4; }
.bento__card--third    { grid-column: span 4; }
.bento__card--half     { grid-column: span 6; }
.bento__card--full     { grid-column: span 12; }
.bento__card--featured {
  grid-column: span 7;
  background: linear-gradient(135deg, #1AA8A010 0%, #141716 40%);
  border-color: rgba(26,168,160,0.15);
}

.bento__card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(26,168,160,0.1);
  border: 1px solid rgba(26,168,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 20px;
}

.bento__card-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.bento__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.bento__card-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.bento__card-stat {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bento__card-stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  -webkit-text-fill-color: var(--color-text-muted);
}

/* Ambient glow on featured card */
.bento__card--featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(26,168,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Product screenshot placeholder in featured card */
.bento__card-screenshot {
  margin-top: var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  overflow: hidden;
}

.bento__card-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .bento__card--wide     { grid-column: span 12; }
  .bento__card--narrow   { grid-column: span 6; }
  .bento__card--featured { grid-column: span 12; }
}

@media (max-width: 640px) {
  .bento__card--narrow   { grid-column: span 12; }
  .bento__card--third    { grid-column: span 12; }
  .bento__card--half     { grid-column: span 12; }
}

/* ============================================================
   WHY TIDAL WAGE / COMPETITOR SECTION
   ============================================================ */
.why {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-2) 50%, var(--color-dark) 100%);
}

.why__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.why__col-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why__col-label--before { color: var(--color-text-muted); }
.why__col-label--after  { color: var(--color-primary); }

.why__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.why__item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.why__item-icon--bad  { background: rgba(239,68,68,0.15);   color: #EF4444; }
.why__item-icon--good { background: rgba(26,168,160,0.15);  color: var(--color-primary); }

.why__item-text {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

/* Stack problem visual */
.stack-problem {
  text-align: center;
  padding: var(--space-16);
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-2xl);
}

.stack-problem__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
}

.stack-problem__desc {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-10);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.stack-problem__vendors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.stack-problem__vendor {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: #FC9090;
}

.stack-problem__arrow {
  color: var(--color-text-muted);
  font-size: var(--text-xl);
}

.stack-problem__solution {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(26,168,160,0.1);
  border: 1px solid rgba(26,168,160,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--color-dark);
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.pricing__card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.pricing__card--featured {
  border-color: rgba(26,168,160,0.3);
  background: linear-gradient(135deg, rgba(26,168,160,0.06) 0%, #141716 60%);
  box-shadow: var(--shadow-glow);
}

.pricing__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--color-dark);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}

.pricing__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.pricing__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.pricing__price {
  margin-bottom: var(--space-6);
}

.pricing__price-amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.pricing__price-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.pricing__feature-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(26,168,160,0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing__cta {
  width: 100%;
  justify-content: center;
}

.pricing__divider {
  margin: var(--space-3) 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}

/* FAQ */
.faq {
  margin-top: var(--space-16);
}

.faq__title {
  text-align: center;
  margin-bottom: var(--space-10);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.faq__item {
  padding: var(--space-6);
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
}

.faq__question {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.faq__answer {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .faq__grid     { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,168,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

.cta-section__sub {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-10);
  font-size: var(--text-lg);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-section__disclaimer {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 240px;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-text-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}
