/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --bg-dark: #0A0E1A;
  --fg: #0F1117;
  --fg-muted: #6B7280;
  --fg-on-dark: #E8EAF0;
  --fg-muted-dark: #8A8FA8;
  --accent: #6C63FF;
  --accent-hover: #5A52E0;
  --accent-light: rgba(108,99,255,0.12);
  --accent-glow: rgba(108,99,255,0.25);
  --gold: #F59E0B;
  --gold-light: rgba(245,158,11,0.15);
  --cyan: #00D4FF;
  --cyan-light: rgba(0,212,255,0.1);
  --border: #E5E7EB;
  --border-dark: rgba(255,255,255,0.08);
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-accent: 0 8px 32px var(--accent-glow);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--white); }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Manrope', sans-serif; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-muted { color: var(--fg-muted); }
.eyebrow-light { color: var(--fg-muted-dark); }

.headline-xl {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.headline-lg {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.headline-md {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.heading { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.02em; }

.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--fg-muted); }
.body-md { font-size: 1rem; line-height: 1.7; color: var(--fg-muted); }
.body-sm { font-size: 0.875rem; line-height: 1.65; color: var(--fg-muted); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--white);
  color: var(--fg);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.15s;
  padding: 0.35rem 0.6rem;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  transition: all 0.2s;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===== HERO ===== */
.hero {
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-gradient {
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--cyan-light) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(108,99,255,0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 2.25rem;
  max-width: 48ch;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 28px var(--accent-glow);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.hero-cta-secondary:hover { color: var(--fg); }
.hero-social-proof {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--accent);
  margin-left: -8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-proof-text strong { color: var(--fg); }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero-phone-frame {
  position: relative;
  width: 260px;
  height: 520px;
  background: var(--fg);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(160deg, #6C63FF 0%, #8B5CF6 50%, #06B6D4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}
.hero-phone-content {
  color: white;
  text-align: center;
  padding: 1.5rem;
}
.hero-phone-landmark {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}
.hero-phone-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-phone-sublabel {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}
.hero-phone-scan-line {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: scan-move 2s ease-in-out infinite;
}
@keyframes scan-move {
  0%, 100% { transform: translateY(-20px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}
.hero-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: var(--fg);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.hero-float-card.card-points {
  bottom: -20px;
  left: -60px;
  animation: float-card 3s ease-in-out infinite;
}
.hero-float-card.card-badge {
  top: 80px;
  right: -70px;
  animation: float-card 3s ease-in-out infinite 0.5s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-float-icon-points { background: var(--gold-light); color: var(--gold); }
.hero-float-icon-badge { background: var(--accent-light); color: var(--accent); }

/* ===== STATS ===== */
.stats {
  padding: 5rem 2rem;
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num .accent { color: var(--accent); }
.stat-num .gold { color: var(--gold); }
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted-dark);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stats-divider {
  width: 1px;
  background: var(--border-dark);
  align-self: stretch;
}

/* ===== HOW ===== */
.how {
  padding: 7rem 2rem;
  background: var(--bg);
}
.how-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-step:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light), var(--shadow-md);
  transform: translateY(-4px);
}
.how-step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--accent-light);
}
.how-step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.how-step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.how-step-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ===== COLLECT / FEATURES ===== */
.features {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.features-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.feature-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

.featured-badge {
  background: linear-gradient(135deg, var(--accent), #8B5CF6);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}
.featured-badge .badge-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.featured-points {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
  grid-column: 1 / -1;
}
.featured-points .points-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.featured-points .points-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 0.3rem;
  display: block;
}
.badge-trophy { background: linear-gradient(135deg, var(--gold-light), #FEF3C7); }
.badge-star { background: linear-gradient(135deg, var(--accent-light), #EDE9FE); }
.badge-map { background: linear-gradient(135deg, var(--cyan-light), #ECFEFF); }
.badge-earn { background: linear-gradient(135deg, var(--gold-light), #FEF9EC); }

/* ===== PARTNERS ===== */
.partners {
  padding: 7rem 2rem;
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}
.partners .eyebrow { color: var(--accent); }
.partners .headline-lg { color: var(--white); }
.partners .body-lg { color: var(--fg-muted-dark); }
.partners-inner { max-width: 1200px; margin: 0 auto; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.25s;
}
.partner-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.partner-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.partner-card-icon svg { width: 22px; height: 22px; }
.partner-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.partner-card p { font-size: 0.875rem; line-height: 1.65; color: var(--fg-muted-dark); }

/* ===== CLOSING ===== */
.closing {
  padding: 7rem 2rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.closing-quote {
  position: relative;
  padding-left: 1.75rem;
}
.closing-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  border-radius: 2px;
}
.closing-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.closing-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.closing-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--fg);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .stats-divider { display: none; }
}
@media (max-width: 900px) {
  .hero-inner,
  .features-inner,
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { order: -1; justify-content: center; }
  .how-steps { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
  .features, .how, .closing, .partners { padding: 5rem 1.5rem; }
  .hero-phone-frame { width: 200px; height: 400px; }
}
@media (max-width: 600px) {
  .hero { padding: 6rem 1.25rem 3.5rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .how, .features, .closing, .partners, .stats { padding: 4rem 1.25rem; }
  .footer { padding: 2rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .nav-tagline { display: none; }
  .features-badge-grid { grid-template-columns: 1fr; }
  .featured-points { grid-column: auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-right { align-items: flex-start; }
}