/* ============================================================
   CompendioLab · Landing Servicios v2
   Silkamono · negro · hairlines · acento prismático
   ============================================================ */

@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-extralight-webfont.woff2') format('woff2'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-light-webfont.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-regular-webfont.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-medium-webfont.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-semibold-webfont.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-bold-webfont.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Silkamono'; src: url('../fonts/silkamono-black-webfont.woff2') format('woff2'); font-weight: 900; font-display: swap; }

:root {
  --bg: #0b0b0c;
  --panel: #101011;
  --white: #ffffff;
  --mute: rgba(255,255,255,0.66);
  --faint: rgba(255,255,255,0.38);
  --hairline: rgba(255,255,255,0.16);
  --hairline-strong: rgba(255,255,255,0.34);
  --prism: linear-gradient(90deg,#19E0FF 0%,#7CFF4D 28%,#FFE14D 52%,#FF2E97 76%,#19E0FF 100%);
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Silkamono', 'Courier New', monospace;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Grano sutil sobre todo */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px var(--pad);
  border-bottom: 1px solid var(--hairline);
  background: rgba(11,11,12,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  font-weight: 600; font-size: 15px; letter-spacing: 0.18em;
}
.nav-brand sup { font-weight: 300; opacity: 0.7; font-size: 9px; }
.nav-brand img { width: 42px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  text-decoration: none;
  font-size: 13px; font-weight: 400; letter-spacing: 0.22em;
  color: var(--mute);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--white); border-color: var(--white); }
.nav-sep { width: 1px; height: 16px; background: var(--hairline-strong); }
.nav-cta {
  text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  color: #0b0b0c;
  background: var(--white);
  padding: 12px 26px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-brand span { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px var(--pad) 90px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(42% 30% at 24% 28%, rgba(25,224,255,0.07), transparent 70%),
    radial-gradient(44% 32% at 76% 68%, rgba(255,46,151,0.06), transparent 70%);
  pointer-events: none;
}
.hero .kicker { margin-bottom: 34px; }
.hero-title {
  font-size: clamp(52px, 10.5vw, 148px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.2s; }
.hero-title .line-thin { font-weight: 200; }
@keyframes riseUp { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-title .line > span { animation: none; transform: none; }
}
.hero-underline {
  width: min(360px, 42vw);
  height: 4px;
  background: var(--prism);
  margin: 40px 0;
}
.hero-sub {
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--mute);
  max-width: 620px;
  margin-bottom: 46px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.btn-solid, .btn-ghost {
  text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.2em;
  padding: 20px 40px;
  transition: all 0.22s ease;
  display: inline-block;
}
.btn-solid { background: var(--white); color: #0b0b0c; position: relative; }
.btn-solid:hover { box-shadow: 0 0 34px rgba(25,224,255,0.35), 0 0 44px rgba(255,46,151,0.22); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--hairline-strong); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mScroll 40s linear infinite;
}
.marquee-reverse .marquee-track { animation-direction: reverse; }
.marquee-track span {
  white-space: nowrap;
  font-size: 15px; font-weight: 500; letter-spacing: 0.3em;
  color: var(--mute);
  flex: 0 0 auto;
  padding-right: 0.4em;
}
@keyframes mScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: clamp(30px, 4vw, 60px) var(--pad);
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 12px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  background: var(--prism);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 13px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--mute);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}

/* ============ INTRO ============ */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--hairline);
}
.intro-left { padding: clamp(50px, 7vw, 110px) var(--pad); border-right: 1px solid var(--hairline); }
.intro-left h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.intro-right {
  padding: clamp(50px, 7vw, 110px) var(--pad);
  display: flex; flex-direction: column; gap: 26px;
  justify-content: center;
}
.intro-right p { font-weight: 300; font-size: 16px; line-height: 1.75; color: var(--mute); }
.intro-note { border-left: 3px solid; border-image: var(--prism) 1; padding-left: 22px; color: var(--white) !important; }
@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .intro-left { border-right: 0; border-bottom: 1px solid var(--hairline); }
}

/* ============ SECTION HEAD ============ */
.section-head { padding: clamp(70px, 9vw, 130px) var(--pad) clamp(40px, 5vw, 70px); }
.section-head h2 {
  margin-top: 22px;
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

/* ============ SERVICE ROWS ============ */
.service-rows { border-top: 1px solid var(--hairline); }
.service-row { border-bottom: 1px solid var(--hairline); }
.service-row-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(26px, 3.4vw, 44px) var(--pad);
  background: transparent;
  border: 0;
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}
.service-row-head:hover { background: rgba(255,255,255,0.035); }
.sr-index {
  font-size: 14px; font-weight: 300; letter-spacing: 0.2em;
  color: var(--faint);
  flex: 0 0 auto;
}
.sr-title {
  font-size: clamp(22px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
}
.sr-badge {
  font-style: normal;
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  padding: 7px 12px 6px;
  border: 1px solid transparent;
  border-image: var(--prism) 1;
  color: var(--white);
  white-space: nowrap;
}
.sr-arrow { font-size: 22px; color: var(--mute); transition: transform 0.35s ease; flex: 0 0 auto; }
.service-row[data-open="true"] .sr-arrow { transform: rotate(180deg); }

.service-row-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
}
.srb-inner {
  padding: 6px var(--pad) clamp(34px, 4vw, 54px);
  max-width: 980px;
}
.srb-inner p { font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--mute); margin-bottom: 24px; }
.srb-inner ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin-bottom: 30px;
}
.srb-inner li {
  font-weight: 300; font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.srb-inner li::before {
  content: "→";
  position: absolute; left: 0;
  background: var(--prism);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 600;
}
.srb-cta {
  display: inline-block;
  text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--white);
  transition: all 0.2s ease;
}
.srb-cta:hover { background: var(--white); color: #0b0b0c; }
@media (max-width: 700px) {
  .srb-inner ul { grid-template-columns: 1fr; }
}

/* ============ PROCESO ============ */
.process { border-top: 1px solid var(--hairline); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.process-step {
  padding: clamp(34px, 4vw, 60px) var(--pad);
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 18px;
}
.process-step:last-child { border-right: 0; }
.ps-index {
  font-size: 15px; font-weight: 300; letter-spacing: 0.2em;
  background: var(--prism);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.process-step h3 { font-size: 22px; font-weight: 600; letter-spacing: 0.02em; }
.process-step p { font-weight: 300; font-size: 14px; line-height: 1.65; color: var(--mute); }
@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0 !important; border-bottom: 1px solid var(--hairline); }
  .process-step:last-child { border-bottom: 0; }
}

/* ============ ESCALA ============ */
.scale {
  padding: clamp(80px, 10vw, 150px) var(--pad);
  text-align: center;
  position: relative;
}
.scale::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(46% 40% at 50% 50%, rgba(25,224,255,0.05), transparent 72%);
  pointer-events: none;
}
.scale h2 {
  margin-top: 22px;
  font-size: clamp(30px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.scale-em {
  background: var(--prism);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.scale-path {
  margin: 54px auto 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 20px;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 600;
  letter-spacing: 0.24em;
}
.scale-path .sp-arrow {
  background: var(--prism);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 700;
}
.scale-sub {
  font-weight: 300; font-size: 15px; line-height: 1.7;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto;
}

/* ============ WORK ============ */
.work { border-top: 1px solid var(--hairline); }
.work-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px var(--pad) 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.work-strip figure {
  flex: 0 0 auto;
  width: min(420px, 74vw);
  scroll-snap-align: start;
}
.work-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--hairline);
  filter: grayscale(0.2);
  transition: filter 0.3s ease, border-color 0.3s ease;
}
.work-strip figure:hover img { filter: grayscale(0); border-color: var(--hairline-strong); }
.work-strip figcaption {
  margin-top: 13px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
  color: var(--mute);
}
.work-link {
  display: inline-block;
  margin: 8px var(--pad) clamp(60px, 8vw, 110px);
  text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 6px;
  transition: border-color 0.2s;
}
.work-link:hover { border-color: var(--white); }

/* ============ FORMULARIO ============ */
.form-section {
  padding: clamp(80px, 10vw, 150px) var(--pad);
  background: #070708;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.form-shell { max-width: 920px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 56px; }
.form-title {
  margin-top: 20px;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.form-lead {
  margin: 22px auto 0;
  font-weight: 300; font-size: 16px; line-height: 1.6;
  color: var(--mute);
  max-width: 520px;
}
.form-lead strong { color: var(--white); font-weight: 500; }

.compendio-form {
  border: 1px solid var(--hairline-strong);
  background: var(--panel);
  padding: clamp(26px, 4vw, 48px);
  min-height: 420px;
  position: relative;
}
.compendio-form::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--prism);
}

.form-progress { display: flex; align-items: center; gap: 18px; margin-bottom: 42px; }
.form-progress-bar { position: relative; flex: 1; height: 2px; background: rgba(255,255,255,0.14); overflow: hidden; }
.form-progress-bar::after {
  content: "";
  position: absolute; inset: 0;
  width: var(--progress, 25%);
  background: var(--prism);
  transition: width 0.4s ease;
}
.form-progress-text {
  font-size: 11px; font-weight: 500; letter-spacing: 0.26em;
  color: var(--mute);
  white-space: nowrap;
}

.form-step { display: none; animation: stepIn 0.45s ease both; }
.form-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.form-step-title { font-size: clamp(22px, 3vw, 32px); font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.form-step-hint { font-weight: 300; font-size: 14px; color: var(--mute); margin-bottom: 30px; }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
.choice-card {
  text-align: left;
  background: #161617;
  border: 1px solid var(--hairline);
  color: var(--white);
  padding: 22px 20px;
  cursor: pointer;
  font-family: inherit;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 140px;
  transition: all 0.18s ease;
}
.choice-card:hover { border-color: var(--white); transform: translateY(-2px); }
.choice-card.is-selected {
  background: var(--white);
  color: #0b0b0c;
  border-color: var(--white);
}
.choice-card.is-selected .choice-index, .choice-card.is-selected .choice-desc { color: rgba(10,10,10,0.65); }
.choice-index { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; color: var(--faint); }
.choice-title { font-size: 17px; font-weight: 600; line-height: 1.25; }
.choice-desc { font-size: 12.5px; font-weight: 300; line-height: 1.45; color: var(--mute); }
@media (max-width: 760px) { .choice-grid, .choice-grid-3 { grid-template-columns: 1fr; } .choice-card { min-height: 0; } }

.form-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field-full { grid-column: span 2; }
.form-field span {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute);
}
.form-optional { font-style: italic; font-weight: 300; text-transform: none; letter-spacing: 0; color: var(--faint); margin-left: 6px; font-size: 11px; }
.form-field input, .form-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus { border-bottom-color: var(--white); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-field.has-error input, .form-field.has-error textarea { border-bottom-color: #ff6b6b; }
@media (max-width: 620px) { .form-fields { grid-template-columns: 1fr; } .form-field-full { grid-column: span 1; } }

.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 34px; }
.form-step-error { color: #ff7676; font-size: 13px; margin-top: 14px; letter-spacing: 0.03em; }
.form-back {
  background: transparent; border: 0;
  color: var(--mute);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px; letter-spacing: 0.08em;
  padding: 10px 0;
}
.form-back:hover { color: var(--white); }
.form-submit {
  background: var(--white);
  color: #0b0b0c;
  border: 1px solid var(--white);
  font-family: inherit;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-submit:hover { box-shadow: 0 0 28px rgba(25,224,255,0.3), 0 0 36px rgba(255,46,151,0.18); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.form-success { text-align: center; padding: 26px 0 12px; }
.form-success-gif { width: 104px; height: 104px; object-fit: cover; margin: 0 auto 24px; border: 1px solid var(--hairline); }
.form-success-title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 18px; }
.form-success-text { font-weight: 300; font-size: 15px; line-height: 1.65; color: var(--mute); max-width: 480px; margin: 0 auto 14px; }
.form-success-text strong { color: var(--white); font-weight: 500; }
.form-success-sub { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin-bottom: 30px; }
.form-success-link {
  display: inline-block;
  text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  padding: 14px 28px;
  border: 1px solid var(--white);
  transition: all 0.2s ease;
}
.form-success-link:hover { background: var(--white); color: #0b0b0c; }

/* ============ CTA FINAL ============ */
.final-cta {
  padding: clamp(90px, 12vw, 170px) var(--pad);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.final-cta h2 {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.final-logo { width: min(300px, 60vw); height: auto; opacity: 0.9; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 44px var(--pad) 30px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mute);
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px;
  margin-bottom: 24px;
  font-size: 14px;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.footer p { max-width: 760px; margin: 0 auto 10px; font-weight: 300; font-size: 12.5px; }
.footer-copy { font-size: 12px; margin-top: 6px; }
