/* À LA MODE GAMES LIMITED — Obsidian & Champagne design system */

:root {
  color-scheme: dark;

  /* Palette */
  --bg-deep: #0a0710;
  --bg-base: #110e18;
  --bg-elevated: #1a1524;
  --bg-card: #1f1a2b;
  --bg-card-hover: #262033;

  --gold-100: #f5e6b8;
  --gold-300: #d4af37;
  --gold-500: #a67c00;
  --violet-300: #c084fc;
  --violet-500: #9333ea;
  --violet-700: #6b21a8;
  --ember: #f97316;

  --text-primary: #faf7f2;
  --text-secondary: #c4bccf;
  --text-muted: #8b8399;
  --text-faint: #5c5568;

  --border-subtle: rgb(255 255 255 / 0.06);
  --border-accent: rgb(212 175 55 / 0.35);
  --border-violet: rgb(192 132 252 / 0.25);

  --shadow-soft: 0 24px 80px rgb(0 0 0 / 0.55);
  --shadow-gold: 0 12px 40px rgb(212 175 55 / 0.15);
  --shadow-violet: 0 8px 32px rgb(147 51 234 / 0.2);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --nav-height: 4.5rem;
  --container: 72rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgb(212 175 55 / 0.35);
  color: var(--text-primary);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* Layout */

.page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgb(147 51 234 / 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgb(212 175 55 / 0.1), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgb(107 33 168 / 0.12), transparent 50%);
  z-index: 0;
}

.page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Navigation */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid var(--border-subtle);
  background: rgb(10 7 16 / 0.75);
  backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  box-shadow: var(--shadow-gold);
}

.brand__mark img {
  width: 1.5rem;
  height: 1.5rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.brand__tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--gold-300);
}

.nav__meta {
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav__divider {
  width: 1.5rem;
  height: 1px;
  background: var(--border-subtle);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-accent);
  background: linear-gradient(135deg, rgb(212 175 55 / 0.15), rgb(147 51 234 / 0.08));
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-100);
  transition:
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: linear-gradient(135deg, rgb(212 175 55 / 0.28), rgb(147 51 234 / 0.15));
  border-color: var(--gold-300);
  transform: translateY(-1px);
}

@media (width >= 640px) {
  .nav__meta {
    display: flex;
  }
}

@media (width >= 768px) {
  .nav__links {
    display: flex;
  }
}

/* Hero */

.hero {
  padding-block: 4rem 3rem;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-violet);
  background: rgb(26 21 36 / 0.8);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-300);
}

.hero__badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 12px var(--gold-300);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero__title-accent {
  display: block;
  margin-top: 0.25rem;
  background: linear-gradient(120deg, var(--gold-100), var(--gold-300) 45%, var(--violet-300));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero__desc {
  max-width: 34rem;
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgb(212 175 55 / 0.35);
}

.btn--ghost {
  border: 1px solid var(--border-subtle);
  background: rgb(26 21 36 / 0.6);
  color: var(--text-primary);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--border-violet);
  background: rgb(31 26 43 / 0.9);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(3px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.stat__value {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Hero visual — bento */

.hero__visual {
  position: relative;
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
}

.bento__main {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.bento__main::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(147 51 234 / 0.25), transparent 70%);
  pointer-events: none;
}

.bento__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bento__dots {
  display: flex;
  gap: 0.375rem;
}

.bento__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.bento__dot--red { background: #ef4444; }
.bento__dot--amber { background: var(--ember); }
.bento__dot--green { background: #22c55e; }

.bento__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 15% 0%, rgb(192 132 252 / 0.3), transparent 50%),
    radial-gradient(circle at 85% 100%, rgb(212 175 55 / 0.15), transparent 55%),
    linear-gradient(160deg, #0f0a18, #1a1228);
}

.bento__screen-inner {
  position: absolute;
  inset: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 255 255 / 0.05);
  background: rgb(0 0 0 / 0.35);
}

.bento__screen-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.bento__project-label {
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bento__project-name {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bento__status {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-accent);
  background: rgb(212 175 55 / 0.08);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.bento__tech-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgb(0 0 0 / 0.5);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.bento__tech-tag {
  flex-shrink: 0;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-violet);
  background: rgb(147 51 234 / 0.12);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-300);
}

.bento__cell {
  grid-column: span 3;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
}

.bento__cell:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.bento__cell-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.bento__cell-value {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.bento__cell-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (width >= 1024px) {
  .hero {
    padding-block: 5rem 4rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Marquee */

.marquee {
  padding-block: 1.25rem;
  border-block: 1px solid var(--border-subtle);
  background: rgb(17 14 24 / 0.6);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-inline: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee__sep {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold-300);
  opacity: 0.5;
}

/* Section shared */

.section {
  padding-block: 5rem;
}

.section__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet-300);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.section__desc {
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (width >= 768px) {
  .section__header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .section__desc {
    text-align: right;
    justify-self: end;
  }
}

/* Projects grid */

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

.project-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.project-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-300), var(--violet-300), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.project-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-violet);
}

.project-card:hover::after {
  opacity: 1;
}

.project-card--featured {
  grid-column: 1 / -1;
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgb(31 26 43 / 0.95), rgb(26 21 36 / 0.98)),
    radial-gradient(circle at 100% 0%, rgb(147 51 234 / 0.15), transparent 50%);
}

.project-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, rgb(212 175 55 / 0.3), transparent);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.project-card__category {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.project-card__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.project-card__text {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.project-card__meta-item dt {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.project-card__meta-item dd {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.project-card__meta-item dd.highlight {
  color: var(--gold-300);
}

@media (width >= 768px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--featured {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 2.5rem;
  }
}

/* Philosophy band */

.philosophy {
  padding-block: 4rem;
  border-block: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgb(26 21 36 / 0.5), transparent);
}

.philosophy__grid {
  display: grid;
  gap: 2rem;
}

.philosophy__item {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgb(17 14 24 / 0.5);
}

.philosophy__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-violet);
  background: rgb(147 51 234 / 0.1);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--violet-300);
}

.philosophy__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.philosophy__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (width >= 768px) {
  .philosophy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact */

.contact {
  padding-block: 5rem 4rem;
}

.contact__panel {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-accent);
  background:
    linear-gradient(145deg, rgb(31 26 43 / 0.8), rgb(17 14 24 / 0.95)),
    radial-gradient(circle at 0% 100%, rgb(212 175 55 / 0.08), transparent 50%);
  box-shadow: var(--shadow-soft);
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
}

.contact__subtitle {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.contact__actions {
  margin-top: 2rem;
}

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

.contact__item {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgb(10 7 16 / 0.5);
}

.contact__item-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact__item-value {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact__item-value a {
  transition: color 0.25s var(--ease-out);
}

.contact__item-value a:hover,
.contact__item-value a:focus-visible {
  color: var(--gold-300);
}

.contact__item-note {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (width >= 768px) {
  .contact__panel {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 3rem;
  }

  .contact__details {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */

.legal {
  padding-block: 4rem 5rem;
}

.legal__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal__title {
  max-width: 42rem;
  width: 100%;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: var(--text-primary);
}

.legal__sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.legal__card {
  max-width: 42rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  text-align: justify;
}

.legal__heading {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--text-primary);
}

.legal__card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal__card p + p,
.legal__card p + .legal__list,
.legal__card .legal__list + p {
  margin-top: 1rem;
}

.legal__list {
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal__list li + li {
  margin-top: 0.35rem;
}

.legal__card a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal__card a:hover,
.legal__card a:focus-visible {
  color: var(--text-primary);
}

/* Footer */

.footer {
  padding-block: 2.5rem 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

.footer__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer__text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer__text strong {
  font-weight: 600;
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
  color: var(--text-faint);
}

.footer__tagline {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__link {
  color: var(--text-muted);
  transition: color 0.25s var(--ease-out);
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--gold-300);
}

.footer__link[aria-current='page'] {
  color: var(--gold-300);
}

@media (width >= 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Animations */

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: reveal-up 0.8s var(--ease-out) forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track,
  .hero__badge-dot,
  .reveal {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
