@import url('variables.css');

@font-face {
  font-family: 'Balboa Plus Fill';
  src: url('../assets/fonts/BalboaPlus-Fill.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Interstate Mono';
  src: url('../assets/fonts/InterstateMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Balboa Plus Fill', 'Inter', sans-serif;
  --font-mono: 'Interstate Mono', 'SF Mono', ui-monospace, monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  position: relative;
}

/* Minimal, whole-site grain — screen blend only ever brightens, so it can
   add texture without ever darkening/obscuring text underneath. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: screen;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* ============================================
   SISTEMA "THE SEND" — labels mono, wordmark, ícono flecha
   ============================================ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--magenta);
  margin-bottom: 18px;
}

#que-es-sync .eyebrow { color: var(--blue-accent); }
#lo-que-viviras .eyebrow { color: var(--purple); }
.mission .eyebrow { color: var(--magenta); }

.eyebrow::before {
  content: '//';
  color: var(--text-muted);
}

.eyebrow--center {
  justify-content: center;
}

.arrow-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.corner-label {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  max-width: 220px;
}

.corner-tl { top: 32px; left: 32px; }
.corner-tr { top: 32px; right: 32px; text-align: right; }
.corner-bl { bottom: 32px; left: 32px; }
.corner-br { bottom: 32px; right: 32px; text-align: right; }

.corner-label strong {
  color: var(--text-primary);
}

.corner-tr strong { color: var(--blue-accent); }
.corner-bl strong { color: var(--magenta-light); }
.corner-br strong { color: var(--purple); }

@media (max-width: 900px) {
  .corner-label {
    display: none;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 13px 28px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  transform: translateY(-2px);
}

a {
  color: var(--magenta);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--magenta-light);
}

button {
  font-family: inherit;
}

img {
  filter: grayscale(20%) contrast(1.1) brightness(0.9);
}

/* ============================================
   GRANO — textura fotográfica estilo The Send
   ============================================ */

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* ============================================
   CURSOR PERSONALIZADO — círculo que sigue al mouse
   ============================================ */

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  a, button, input, select, .card, .photo-grid-tile {
    cursor: none;
  }

  #custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    background: var(--magenta);
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 999999;
    transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, background 0.2s ease;
    will-change: transform;
  }

  #custom-cursor.cursor--hover {
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    background: var(--text-primary);
  }
}

@media (hover: none), (pointer: coarse) {
  #custom-cursor {
    display: none;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.accent-line {
  display: inline-block;
  height: 2px;
  width: 60px;
  background: var(--magenta);
  margin: 15px 0;
}

.btn-primary {
  background: var(--magenta);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--magenta-light);
  transform: translateY(-2px);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -3;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-bg-layer.is-active {
  opacity: 1;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(230, 30, 120, 0.15) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.85) 100%),
    rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.14;
  mix-blend-mode: screen;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
}

.hero-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-logo {
  height: 42px;
  width: auto;
  fill: var(--text-primary);
}

.hero-lockup .arrow-icon {
  width: 34px;
  height: 34px;
  color: var(--magenta);
  border: 1px solid var(--magenta);
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
}

.hero-h1 {
  font-size: 60px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

/* Each word sits in its own clipped mask so animations.js can reveal the
   headline word by word — the mask is what makes the "rise from below"
   slide read as a clean reveal instead of the word just sliding over text. */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.word {
  display: inline-block;
  will-change: transform;
}

.hero-event-info {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media (max-width: 768px) {
  .hero-h1 {
    font-size: 36px;
  }

  .hero-event-info {
    font-size: 14px;
  }

  .btn-primary {
    width: 100%;
  }
}

/* ============================================
   SECTION 2 — ¿QUÉ ES SYNC?
   ============================================ */

.what-is-sync {
  background: var(--bg-primary);
  padding: 100px 40px;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.text-column h2 {
  font-size: 36px;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.text-column p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-column p strong {
  color: var(--magenta);
}

.text-column p em {
  color: var(--blue-accent);
  font-style: italic;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  box-shadow: 0 20px 60px rgba(230, 30, 120, 0.15);
}

.photo-grid-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.photo-grid-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(1.05);
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.photo-grid-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.tile-magenta { background: var(--magenta); }
.tile-blue { background: var(--blue-accent); }
.tile-purple { background: var(--purple); }

@media (max-width: 1024px) {
  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   SECTION 3 — LO QUE VIVIRÁS
   ============================================ */

.what-happens {
  background: var(--bg-primary);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Floats over the top of the card row instead of pushing it down — the
   cards fill the section edge to edge with no section padding at all. */
.viviras-heading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  padding: 64px 40px 56px;
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.55) 55%, transparent 100%);
  pointer-events: none;
}

.viviras-heading .eyebrow {
  justify-content: center;
}

.viviras-heading h2 {
  font-size: 36px;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.viviras-heading .btn-outline {
  pointer-events: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.card {
  position: relative;
  height: 100vh;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  isolation: isolate;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s 0.4s;
  will-change: transform;
}

.card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  z-index: 5;
  transition: box-shadow 0.4s ease, z-index 0s;
}

/* Desktop pointers tilt the card via JS (animations.js); touch/no-hover
   devices still get the lift + zoom from a plain CSS transform. Touch also
   has no reliable :hover, so the color + description stay visible always —
   otherwise they'd never appear on a phone. */
@media (hover: none), (pointer: coarse) {
  .card:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .card-overlay {
    opacity: 1;
  }

  .card h3 {
    margin-bottom: 10px;
  }

  .card p {
    opacity: 1;
    max-height: 160px;
  }
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.75);
  transition: transform 0.6s ease;
  z-index: -4;
}

.card:hover .card-bg {
  transform: scale(1.07);
}

/* Always-on neutral scrim — keeps the title readable before hover, with no color. */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.9) 100%);
}

/* Color reveal — hidden until hover, per the "hover uncovers the color + description" brief. */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.card:nth-child(5n+1) .card-overlay { background: linear-gradient(200deg, rgba(230, 30, 120, 0.7) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(8, 8, 8, 0.92) 100%); }
.card:nth-child(5n+2) .card-overlay { background: linear-gradient(200deg, rgba(0, 217, 255, 0.6) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(8, 8, 8, 0.92) 100%); }
.card:nth-child(5n+3) .card-overlay { background: linear-gradient(200deg, rgba(168, 85, 247, 0.65) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(8, 8, 8, 0.92) 100%); }
.card:nth-child(5n+4) .card-overlay { background: linear-gradient(200deg, rgba(0, 217, 255, 0.6) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(8, 8, 8, 0.92) 100%); }
.card:nth-child(5n+5) .card-overlay { background: linear-gradient(200deg, rgba(168, 85, 247, 0.65) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(8, 8, 8, 0.92) 100%); }

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #fff;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.card:hover h3 {
  margin-bottom: 10px;
}

.card p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.45s ease;
}

.card:hover p {
  opacity: 1;
  max-height: 160px;
}

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

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

  .card {
    height: 100svh;
  }
}

/* ============================================
   SECCIÓN — LO QUE QUEREMOS LOGRAR
   ============================================ */

.mission {
  background: var(--bg-primary);
  padding: 120px 40px;
  text-align: center;
}

.mission-statement {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.mission-statement mark {
  background: var(--purple);
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.mission-statement mark:nth-of-type(2) {
  background: var(--blue-accent);
  color: var(--bg-primary);
}

.mission-copy {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mission-statement {
    font-size: 24px;
  }
}

/* ============================================
   SECTION 4 — REGISTRO
   ============================================ */

.registration {
  background: var(--bg-primary);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

/* Floating photos — same drifting-corners treatment as the old volunteer
   registration page, scoped to just this section this time. */
.float-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  width: clamp(110px, 11vw, 170px);
  height: clamp(140px, 14vw, 210px);
  filter: grayscale(55%) contrast(1.15) brightness(0.8);
}

.fp-1 { top: 4%; left: 4%; rotate: -8deg; }
.fp-2 { top: 5%; right: 4%; rotate: 7deg; }
.fp-3 { bottom: 6%; left: 6%; rotate: 6deg; }
.fp-4 { bottom: 5%; right: 5%; rotate: -7deg; }

@media (max-width: 1024px) {
  .float-photo {
    display: none;
  }
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.registration h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.form-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 12px 0;
  font-size: 15px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--magenta);
  box-shadow: 0 2px 0 var(--magenta);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e5e5e5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0;
  padding-right: 20px;
}

.form-group select option {
  color: #000;
  background: #fff;
}

.btn-submit {
  background: var(--magenta);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: var(--magenta-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 30, 120, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
}

.success-message,
.error-message {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 4px;
  text-align: center;
}

.success-message {
  border: 1px solid var(--magenta);
}

.success-message h3 {
  color: var(--magenta);
  font-size: 24px;
  margin-bottom: 10px;
}

.success-message p {
  color: var(--text-secondary);
}

.error-message {
  border: 1px solid #ff6b6b;
}

.error-message h3 {
  color: #ff6b6b;
  font-size: 20px;
  margin-bottom: 10px;
}

.error-message p {
  color: var(--text-secondary);
}

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

  .btn-submit {
    width: 100%;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--bg-primary);
  padding: 80px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-lockup {
  margin-bottom: 20px;
}

.footer-logo {
  height: 30px;
}

.footer-lockup .arrow-icon {
  width: 24px;
  height: 24px;
  padding: 6px;
}

.footer-tagline {
  max-width: 380px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--magenta);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
