/* =============================================================
   Sorted.gi — static HTML/CSS/JS rebuild
   Ports design tokens from src/app/globals.css and the
   INJECTED_STYLES block from the CinematicHero component.
   ============================================================= */

:root {
  --sorted-red: #d92b2b;
  --sorted-red-dark: #b01f1f;
  --sorted-black: #0d0d0d;

  --background: oklch(0.99 0.002 90);
  --foreground: oklch(0.145 0.01 90);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --border: oklch(0.922 0 0);
  --ring: oklch(0.52 0.2 27);

  --font-sans: "DM Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "DM Serif Display", ui-serif, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

*:focus-visible {
  outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--background);
  color: var(--foreground);
}

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

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

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

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

.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;
}

/* ---------- App shell ---------- */
.app-shell {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--background);
}

/* ---------- Hero container ---------- */
.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  color: var(--foreground);
  perspective: 1500px;
  -webkit-font-smoothing: antialiased;
}

.gsap-reveal {
  visibility: hidden;
}

/* ---------- Ambient layers ---------- */
.film-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}

.bg-grid-theme {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-size: 60px 60px;
  background-image: linear-gradient(
      to right,
      color-mix(in srgb, var(--foreground) 5%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--foreground) 5%, transparent) 1px,
      transparent 1px
    );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 70%
  );
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  pointer-events: none;
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
}

.scroll-cue.is-hidden {
  opacity: 0;
}

.scroll-cue-line {
  height: 1px;
  width: 2.5rem;
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}

.scroll-hint-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 20px;
}
.scroll-hint-eq span {
  width: 2px;
  border-radius: 999px;
  transform-origin: center bottom;
  background: rgba(255, 255, 255, 0.28);
  animation: scrollHintEq 1.35s ease-in-out infinite;
}
.scroll-hint-eq span:nth-child(1) {
  height: 7px;
  animation-delay: 0ms;
}
.scroll-hint-eq span:nth-child(2) {
  height: 14px;
  animation-delay: 120ms;
  background: linear-gradient(
    180deg,
    rgba(248, 113, 113, 0.95) 0%,
    rgba(185, 28, 28, 0.85) 100%
  );
  box-shadow: 0 0 12px rgba(217, 43, 43, 0.35);
}
.scroll-hint-eq span:nth-child(3) {
  height: 9px;
  animation-delay: 240ms;
}
@keyframes scrollHintEq {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint-eq span {
    animation: none;
    transform: scaleY(1);
    opacity: 0.75;
  }
}

/* ---------- Hero headline ---------- */
.hero-text-wrapper {
  font-family: var(--font-display);
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100vw;
  padding: 0 1rem;
  will-change: transform;
  transform-style: preserve-3d;
}

.hero-tagline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 0.5rem 0;
}

.hero-tagline--italic {
  font-style: italic;
  letter-spacing: -0.05em;
  color: var(--sorted-red);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
  margin: 0;
}

.text-3d-matte {
  color: var(--foreground);
  text-shadow: 0 10px 30px
      color-mix(in srgb, var(--foreground) 20%, transparent),
    0 2px 4px color-mix(in srgb, var(--foreground) 10%, transparent);
}

/* ---------- Silver matte text effects ---------- */
.text-silver-matte {
  background: linear-gradient(
    180deg,
    var(--foreground) 0%,
    color-mix(in srgb, var(--foreground) 40%, transparent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(
      0px 10px 20px color-mix(in srgb, var(--foreground) 15%, transparent)
    )
    drop-shadow(
      0px 2px 4px color-mix(in srgb, var(--foreground) 10%, transparent)
    );
}

.text-card-silver-matte {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateZ(0);
  filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.8))
    drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.6));
}

/* ---------- CTA wrapper ---------- */
.cta-wrapper {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100vw;
  max-height: 100dvh;
  overflow-y: auto;
  padding: 2.5rem 1rem;
  pointer-events: auto;
  will-change: transform;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.cta-description {
  color: var(--muted-foreground);
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  margin: 0 auto 3rem auto;
  max-width: 36rem;
  font-weight: 300;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ---------- Modern buttons (App Store / Google Play) ---------- */
.btn-modern-light,
.btn-modern-dark {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1.25rem;
}

.btn-modern-light {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f2 100%);
  color: #0d0d0d;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.1), 0 12px 24px -4px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 1),
    inset 0 -3px 6px rgba(0, 0, 0, 0.05);
}
.btn-modern-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 6px 12px -2px rgba(0, 0, 0, 0.12),
    0 20px 32px -6px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 1),
    inset 0 -3px 6px rgba(0, 0, 0, 0.05);
}
.btn-modern-light:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, #f4f4f2 0%, #e8e8e4 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1),
    inset 0 3px 6px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.btn-modern-dark {
  background: linear-gradient(180deg, #2a0c0c 0%, #0d0d0d 100%);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(217, 43, 43, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.6), 0 12px 24px -4px rgba(0, 0, 0, 0.9),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -3px 6px rgba(0, 0, 0, 0.8);
}
.btn-modern-dark:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #3f1515 0%, #1a0808 100%);
  box-shadow: 0 0 0 1px rgba(217, 43, 43, 0.35),
    0 6px 12px -2px rgba(0, 0, 0, 0.7),
    0 20px 32px -6px rgba(0, 0, 0, 1),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.8);
}
.btn-modern-dark:active {
  transform: translateY(1px);
  background: #0d0d0d;
  box-shadow: 0 0 0 1px rgba(217, 43, 43, 0.2),
    inset 0 3px 8px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.btn-modern-light:focus-visible,
.btn-modern-dark:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--background),
    0 0 0 4px var(--sorted-red);
}

.app-badge-btn {
  text-decoration: none;
}

.app-badge-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.2s ease;
}
.app-badge-icon--sm {
  width: 1.75rem;
  height: 1.75rem;
}
.app-badge-btn:hover .app-badge-icon {
  transform: scale(1.05);
}

.app-badge-text {
  text-align: left;
}
.app-badge-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: -2px;
}
.app-badge-eyebrow--dark {
  color: #a3a3a3;
}
.app-badge-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
}

/* ---------- Contact + Footer ---------- */
.contact-block {
  margin-top: 4rem;
  width: 100%;
  max-width: 36rem;
  border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  padding-top: 2.5rem;
}

.contact-prompt {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 0.5rem;
}

.contact-link {
  color: var(--sorted-red);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: opacity 0.2s ease;
}
.contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.9;
}

.site-footer {
  margin-top: 3rem;
  width: 100%;
  max-width: 32rem;
  border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  padding: 2rem 0 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-brand {
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  margin: 0;
}

.brand-accent {
  color: var(--sorted-red);
}

.footer-meta {
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-weight: 400;
}

.footer-tagline {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-privacy {
  margin-top: 1rem;
  opacity: 0.6;
}
.footer-privacy a:hover {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Main card (the premium cinematic card) ---------- */
.main-card-stage {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  perspective: 1500px;
}

.main-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  width: 92vw;
  height: 92vh;
  border-radius: 32px;
}

@media (min-width: 768px) {
  .main-card {
    width: 85vw;
    height: 85vh;
    border-radius: 40px;
  }
}

.premium-depth-card {
  background: linear-gradient(
    145deg,
    #2a0c0c 0%,
    #0d0d0d 42%,
    #121212 100%
  );
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9),
    0 20px 40px -20px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(217, 43, 43, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(217, 43, 43, 0.12) 0%,
    transparent 42%
  );
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.card-grid {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 10;
}

@media (min-width: 1024px) {
  .card-grid {
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
  }
}

/* ---- card right text (big 'sorted.gi') ---- */
.card-right-text {
  order: 1;
  display: flex;
  justify-content: center;
  z-index: 20;
  width: 100%;
}

.brand-word-heading {
  font-size: clamp(3.75rem, 12vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
  display: inline-block;
}

.brand-word {
  text-transform: lowercase;
}

@media (min-width: 1024px) {
  .card-right-text {
    order: 3;
    justify-content: flex-end;
  }
}

/* ---- mockup wrapper ---- */
.mockup-scroll-wrapper {
  order: 2;
  position: relative;
  width: 100%;
  height: 456px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  perspective: 1000px;
}

@media (min-width: 1024px) {
  .mockup-scroll-wrapper {
    height: 720px;
  }
}

.mockup-scaler {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.65);
}

@media (min-width: 768px) {
  .mockup-scaler {
    transform: scale(0.85);
  }
}

@media (min-width: 1024px) {
  .mockup-scaler {
    transform: scale(1);
  }
}

/* ---- iPhone mockup ---- */
.iphone-wrapper {
  position: relative;
  width: 336px;
  height: 696px;
  border-radius: 3.6rem;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform-style: preserve-3d;
  background-color: #111;
  box-shadow: inset 0 0 0 2px #52525b, inset 0 0 0 7px #000,
    0 40px 80px -15px rgba(0, 0, 0, 0.9),
    0 15px 25px -5px rgba(0, 0, 0, 0.7);
}

.hardware-btn {
  position: absolute;
  background: linear-gradient(90deg, #404040 0%, #171717 100%);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.8),
    inset -1px 0 1px rgba(255, 255, 255, 0.15),
    inset 1px 0 2px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.hardware-btn--silent {
  top: 144px;
  left: -3px;
  width: 3px;
  height: 30px;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.hardware-btn--vol-up {
  top: 192px;
  left: -3px;
  width: 3px;
  height: 54px;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.hardware-btn--vol-down {
  top: 264px;
  left: -3px;
  width: 3px;
  height: 54px;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.hardware-btn--power {
  top: 204px;
  right: -3px;
  width: 3px;
  height: 84px;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transform: scaleX(-1);
}

.iphone-screen {
  position: absolute;
  inset: 8px;
  background: #0d0d0d;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 1);
  z-index: 10;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ---- Floating badges ---- */
.floating-ui-badge {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px rgba(0, 0, 0, 0.5);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  z-index: 30;
}

@media (min-width: 1024px) {
  .floating-badge {
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}

.floating-badge--top {
  top: 1.5rem;
  left: -15px;
}
.floating-badge--bottom {
  bottom: 3rem;
  right: -15px;
}

@media (min-width: 1024px) {
  .floating-badge--top {
    top: 3rem;
    left: -80px;
  }
  .floating-badge--bottom {
    bottom: 5rem;
    right: -80px;
  }
}

.badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

@media (min-width: 1024px) {
  .badge-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.badge-icon--red {
  background: linear-gradient(
    180deg,
    rgba(239, 68, 68, 0.25) 0%,
    rgba(69, 10, 10, 0.3) 100%
  );
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
}
.badge-icon--neutral {
  background: linear-gradient(
    180deg,
    rgba(115, 115, 115, 0.25) 0%,
    rgba(23, 23, 23, 0.4) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e5e5e5;
}

.icon-check,
.icon-pin {
  width: 1rem;
  height: 1rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}
.badge-title {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
@media (min-width: 1024px) {
  .badge-title {
    font-size: 0.875rem;
  }
}

.badge-subtitle {
  font-size: 10px;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 1024px) {
  .badge-subtitle {
    font-size: 0.75rem;
  }
}
.badge-subtitle--red {
  color: rgba(254, 202, 202, 0.6);
}
.badge-subtitle--neutral {
  color: #a3a3a3;
}

/* ---- card left text ---- */
.card-left-text {
  order: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 20;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .card-left-text {
    order: 1;
    text-align: left;
    padding: 0;
    max-width: none;
  }
}

.card-left-heading {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .card-left-heading {
    margin-bottom: 1.25rem;
  }
}

.card-left-copy {
  color: rgba(212, 212, 212, 0.9);
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 24rem;
}
@media (min-width: 1024px) {
  .card-left-copy {
    margin: 0;
    max-width: none;
  }
}

.card-left-brand {
  font-weight: 600;
  color: #ffffff;
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  .cta-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .cta-description {
    margin-bottom: 2rem;
  }
  .contact-block {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .site-footer {
    margin-top: 2rem;
  }
}
