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

:root {
  --green: #B0FC51;
  --bg:    #0E0E0E;
  --s1:    #1A1A1A;
  --s3:    #272727;
  --s4:    #333333;
  --tp:    #ECEEED;
  --ts:    #9BA3AB;
  --tt:    #5C646B;
  --err:   #FF6B6B;
  --mw:    1080px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* sticky nav height + breathing room */
}

body {
  background: var(--bg);
  color: var(--tp);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,14,14,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--s3);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--tp);
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.nav-logo:hover { opacity: 0.65; }
.nav-logo:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ts);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--tp); }
.nav-links a.current { color: var(--tp); }
.nav-links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── Layout ── */
.section { padding: 7rem 2rem; }
.section--tight { padding: 4rem 2rem; }
.container { max-width: var(--mw); margin: 0 auto; }

/* ── Labels ── */
.label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.label--muted { color: var(--tt); }
.label--centered { display: block; text-align: center; }

/* ── Wordmark ── */
.wordmark {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.wordmark .lyro { font-family: 'Quicksand', sans-serif; font-weight: 300; }
.wordmark .product { font-family: 'Courier Prime', monospace; font-weight: 700; color: var(--green); }

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h3 {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

/* ── Text utilities ── */
.tagline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.tagline--after-badge { margin-top: 1.25rem; }

.lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ts);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.lifetime {
  font-family: 'DM Mono', monospace;
  font-size: 0.67rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tt);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 1.6rem;
  min-height: 44px; /* touch target */
  transition: opacity 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.btn:hover { opacity: 0.82; }
.btn:active { opacity: 0.65; transform: scale(0.98); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn-primary { background: var(--green); color: var(--bg); }
.btn-outline  { background: transparent; color: var(--tp); border: 1px solid var(--s4); }
.btn-outline:hover { opacity: 1; border-color: var(--ts); }
.btn-full { width: 100%; }

/* ── CTA group ── */
.cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.cta-group--center { align-items: center; }

/* ── Cards ── */
.card {
  background: var(--s1);
  border: 1px solid var(--s3);
  border-radius: 8px;
  padding: 2rem;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.badge-green { background: rgba(176,252,81,0.12); color: var(--green); }
.badge-muted { background: var(--s3); color: var(--tt); }

/* ── Video placeholder ── */
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--s1);
  border: 1px solid var(--s3);
  border-radius: 8px;
  overflow: hidden;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.875rem;
}
.play-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--s4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ts);
  font-size: 1rem;
  padding-left: 3px;
}
.video-placeholder p {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tt);
}

/* ── Divider ── */
hr.divider { border: none; border-top: 1px solid var(--s3); }

/* ── Pricing ── */
.price-tag {
  font-family: 'Courier Prime', monospace;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-footnote {
  font-size: 0.85rem;
  color: var(--tt);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.6;
}

.price-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tt);
  margin-bottom: 2rem;
}
.includes { list-style: none; margin-bottom: 2.25rem; }
.includes li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ts);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--s3);
  display: flex; align-items: center; gap: 0.75rem;
}
.includes li:last-child { border-bottom: none; }
.includes li::before { content: '✓'; color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.includes li.coming-soon { opacity: 0.55; }
.includes li.coming-soon::before { content: '◦'; }

/* ── Forms ── */
.form-group { margin-bottom: 1rem; }
.form-group--hidden { display: none; }
.form-group--spaced { margin-top: 1.5rem; }

.field-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt);
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}

input[type="email"],
input[type="text"],
select {
  width: 100%;
  background: var(--s1);
  border: 1px solid var(--s3);
  border-radius: 4px;
  color: var(--tp);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
input::placeholder { color: var(--tt); }
input:focus, select:focus { border-color: var(--green); }

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C646B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
option { background: var(--s1); }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Form states ── */
.form-group.has-error .field-label { color: var(--err); }
.form-group.has-error input,
.form-group.has-error select { border-color: var(--err); }

.error-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--err);
  margin-top: 0.4rem;
  display: none;
}
.form-group.has-error .error-text { display: block; }

.form-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tt);
  text-align: center;
  margin-top: 0.75rem;
}

.success-msg {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  display: none;
  margin-top: 1rem;
}

/* ── Footer ── */
footer { border-top: 1px solid var(--s3); padding: 3rem 2rem; }
.footer-inner {
  max-width: var(--mw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tt);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--ts); }
.footer-links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tt);
}

/* ════════════════════════════════════════
   ANIMATED PRODUCT PREVIEWS
   ════════════════════════════════════════ */

/* ── Hero two-column layout ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-panel-copy,
.hero-panel-media { min-width: 0; }

/* ── LyroType animation frame ── */
.lt-anim {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #090B09;
  border-radius: 6px;
  overflow: hidden;
}
/* Vignette */
.lt-anim::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Corner label */
.lt-anim-label {
  position: absolute;
  top: 0.75rem; left: 0.875rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(176, 252, 81, 0.45);
  z-index: 3;
}
/* Centred inner */
.lt-anim-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.5rem;
  z-index: 1;
}
/* Typing text */
.lt-anim-text {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 1.45rem);
  color: var(--green);
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.02em;
  width: 0ch;
  animation:
    lt-width   7s infinite,
    lt-opacity 7s linear infinite;
}
/* Sound bars row */
.lt-anim-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}
.lt-anim-bar {
  width: 3px;
  background: rgba(176, 252, 81, 0.7);
  border-radius: 2px;
  height: 2px;
  animation:
    lt-bar-pulse    var(--d, 0.2s) ease-in-out alternate infinite,
    lt-bars-opacity 7s linear infinite;
}

/* LyroType keyframes */
@keyframes lt-width {
  0%   { width: 0ch; animation-timing-function: steps(19, end); }
  54%  { width: 19ch; }
  90%  { width: 19ch; }
  91%  { width: 0ch; }
  100% { width: 0ch; }
}
@keyframes lt-opacity {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  78%  { opacity: 1; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes lt-bar-pulse {
  from { height: 2px; }
  to   { height: var(--h, 10px); }
}
@keyframes lt-bars-opacity {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  78%  { opacity: 1; }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Fill the existing .video-wrap shell on lyrotype.html */
.video-wrap .lt-anim {
  position: absolute;
  inset: 0;
  padding-top: 0;
  border-radius: 0;
}

/* ── Card preview panels ── */
.card-preview {
  background: #090B09;
  border-radius: 5px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LyroConvert preview */
.preview-convert-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.preview-convert-from {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ts);
  white-space: nowrap;
}
.preview-convert-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--tt);
}
.preview-convert-to {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
/* Shimmer sweep on result value */
.preview-convert-to::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 252, 81, 0.28) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: convert-shimmer 2.8s ease-in-out infinite;
}
.preview-convert-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(176, 252, 81, 0.5);
  background: rgba(176, 252, 81, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
}
@keyframes convert-shimmer {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* LyroText cycling preview - grid stacking */
.card-preview--ltext {
  display: grid;
  place-items: center;
  min-height: 76px;
}
.ltext-sample {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
  letter-spacing: 0.02em;
  opacity: 0;
  text-align: center;
}
/* Write-on: steps reveal + fade */
.ltext-sample--writeon {
  white-space: nowrap;
  overflow: hidden;
  width: 0ch;
  animation:
    ltext-wo-width   7.5s infinite,
    ltext-wo-opacity 7.5s linear infinite;
}
/* Fade: opacity only */
.ltext-sample--fade {
  animation: ltext-fade 7.5s linear infinite;
  animation-delay: 2.5s;
}
/* Slide: translate + opacity */
.ltext-sample--slide {
  transform: translateY(7px);
  animation: ltext-slide 7.5s linear infinite;
  animation-delay: 5s;
}

@keyframes ltext-wo-width {
  0%    { width: 0ch; animation-timing-function: steps(8, end); }
  26.7% { width: 8ch; }
  30%   { width: 8ch; }
  31%   { width: 0ch; }
  100%  { width: 0ch; }
}
@keyframes ltext-wo-opacity {
  0%    { opacity: 0; }
  2%    { opacity: 1; }
  28%   { opacity: 1; }
  33.3% { opacity: 0; }
  100%  { opacity: 0; }
}
@keyframes ltext-fade {
  0%    { opacity: 0; }
  6.7%  { opacity: 1; }
  26.7% { opacity: 1; }
  33.3% { opacity: 0; }
  100%  { opacity: 0; }
}
@keyframes ltext-slide {
  0%    { opacity: 0; transform: translateY(7px); }
  6.7%  { opacity: 1; transform: translateY(0); }
  26.7% { opacity: 1; transform: translateY(0); }
  33.3% { opacity: 0; transform: translateY(-4px); }
  100%  { opacity: 0; transform: translateY(0); }
}

/* ── LyroConvert hero cycling preview ── */

/* 4 conversion types, 13s cycle, 3.25s per slot */
.lc-slot {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  opacity: 0;
  z-index: 1;
  animation: hero-slot-cycle 13s linear infinite;
}
.lc-slot-type {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(176, 252, 81, 0.4);
  margin-bottom: 0.125rem;
}
.lc-slot-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lc-slot-from {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  color: var(--ts);
  white-space: nowrap;
}
.lc-slot-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--tt);
}
.lc-slot-to {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  color: var(--green);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
/* Shimmer sweep on each result */
.lc-slot-to::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(176,252,81,0.28) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: convert-shimmer 2.8s ease-in-out infinite;
}
.lc-slot-unit {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tt);
}

/* Shared slot cycle keyframe — 25% visible window of loop */
@keyframes hero-slot-cycle {
  0%    { opacity: 0; }
  5%    { opacity: 1; }
  19%   { opacity: 1; }
  25%   { opacity: 0; }
  100%  { opacity: 0; }
}

/* ── LyroText hero cycling preview ── */

/* 4 animation modes, 10s cycle, 2.5s per slot */
.ltx-slot {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  opacity: 0;
  z-index: 1;
  animation: ltx-slot-cycle 10s linear infinite;
}
.ltx-slot-mode {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(176, 252, 81, 0.4);
  margin-bottom: 0.125rem;
}
/* Common text style inside slots */
.ltx-slot-text,
.ltx-slot-words {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--green);
  letter-spacing: 0.02em;
  text-align: center;
}
.ltx-slot-words {
  display: flex;
  gap: 0.45em;
}
/* Individual words for per-word reveal */
.ltx-slot-word {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--green);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: ltx-word-in 10s linear infinite;
}

/* Write-on text — parent slot handles opacity, child just drives width */
.ltx-wo-text {
  white-space: nowrap;
  overflow: hidden;
  width: 0ch;
  animation: ltx-wo-width 10s infinite;
}

/* Slide-up text initial state */
.ltx-slide-text {
  animation: ltx-hero-slide 10s linear infinite;
}
/* Scale-in text initial state */
.ltx-scale-text {
  animation: ltx-hero-scale 10s linear infinite;
}

@keyframes ltx-slot-cycle {
  0%    { opacity: 0; }
  5%    { opacity: 1; }
  20%   { opacity: 1; }
  25%   { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes ltx-wo-width {
  0%    { width: 0ch; animation-timing-function: steps(9, end); }
  20%   { width: 9ch; }
  24%   { width: 9ch; }
  26%   { width: 0ch; }
  100%  { width: 0ch; }
}
/* Per-word: each word has its own opacity */
@keyframes ltx-word-in {
  0%    { opacity: 0; }
  5%    { opacity: 1; }
  20%   { opacity: 1; }
  25%   { opacity: 0; }
  100%  { opacity: 0; }
}
@keyframes ltx-hero-slide {
  0%    { transform: translateY(10px); }
  5%    { transform: translateY(0); }
  20%   { transform: translateY(0); }
  25%   { transform: translateY(-5px); }
  100%  { transform: translateY(0); }
}
@keyframes ltx-hero-scale {
  0%    { transform: scale(0.82); }
  5%    { transform: scale(1); }
  20%   { transform: scale(1); }
  25%   { transform: scale(1); }
  100%  { transform: scale(1); }
}

/* ── Animation breakpoints ── */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-panel-media { order: -1; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .btn:active { transform: none; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .section { padding: 5rem 1.5rem; }
  .section--tight { padding: 3rem 1.5rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .form-2col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.07em; }
  .nav-links { gap: 0.875rem; }
  footer { padding: 2.5rem 1.5rem; }
}
