/* ════════════════════════════════════════════════════
   VECKANS AI — design system
   norrsken över Värmland, signal genom brus
   ════════════════════════════════════════════════════ */

:root {
  --bg: #06080a;
  --bg-2: #0a0d10;
  --ink: #eef2ee;
  --ink-dim: rgba(238, 242, 238, 0.55);
  --ink-faint: rgba(238, 242, 238, 0.28);
  --aurora-1: #6fffa8;
  --aurora-2: #5bd9ff;
  --aurora-3: #3d8bff;
  --line: rgba(238, 242, 238, 0.12);
  --font-sans: "Inter Tight", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body[data-loading] { overflow: hidden; }

::selection { background: var(--aurora-1); color: #06120a; }

.mono {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.85vw, 13px);
  letter-spacing: 0.14em;
  font-weight: 400;
}

em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ─────────── preloader ─────────── */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: transform 0.9s var(--ease), visibility 0.9s;
}
.preloader.done { transform: translateY(-100%); visibility: hidden; }
.preloader__word {
  font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(40px, 8vw, 110px);
  display: flex; overflow: hidden;
}
.preloader__word span {
  display: inline-block;
  transform: translateY(110%);
  animation: pre-rise 0.7s var(--ease) forwards;
}
.preloader__word span:nth-child(2) { animation-delay: 0.04s; }
.preloader__word span:nth-child(3) { animation-delay: 0.08s; }
.preloader__word span:nth-child(4) { animation-delay: 0.12s; }
.preloader__word span:nth-child(5) { animation-delay: 0.16s; }
.preloader__word span:nth-child(6) { animation-delay: 0.20s; }
.preloader__word span:nth-child(7) { animation-delay: 0.24s; }
.preloader__word span:nth-child(8) { animation-delay: 0.30s; }
.preloader__ai {
  background: linear-gradient(100deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes pre-rise { to { transform: translateY(0); } }
.preloader__count {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}
.preloader__count::after { content: " %"; }
.preloader__hint { color: var(--ink-faint); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }

/* ─────────── cursor ─────────── */
.cursor { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
.cursor__dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--aurora-1); transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(238, 242, 238, 0.35);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.cursor.is-hover .cursor__ring {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--aurora-1);
  background: rgba(111, 255, 168, 0.07);
}
.cursor__label {
  position: absolute; transform: translate(14px, 14px);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--aurora-1); white-space: nowrap;
}

/* ─────────── header ─────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  mix-blend-mode: difference;
  transition: transform 0.5s var(--ease);
}
.header.hidden { transform: translateY(-110%); }
.header__logo { font-weight: 800; letter-spacing: 0.02em; font-size: 15px; }
.header__logo sup { font-size: 8px; vertical-align: super; }
.header__nav { display: flex; gap: clamp(16px, 2.5vw, 36px); }
.header__nav a {
  font-size: 13px; letter-spacing: 0.04em; color: var(--ink-dim);
  transition: color 0.25s;
  position: relative;
}
.header__nav a:hover { color: var(--ink); }
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__cta {
  font-size: 13px; padding: 9px 20px; border: 1px solid var(--line);
  border-radius: 99px; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.header__cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
@media (max-width: 760px) { .header__nav { display: none; } }

/* ─────────── hero ─────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(60px, 8vh, 110px);
}
.hero__kicker { color: var(--ink-dim); margin-bottom: clamp(16px, 2vh, 28px); }
.hero__title {
  font-weight: 900;
  font-size: clamp(64px, 14.5vw, 230px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-left: -0.05em;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__line--ai { display: flex; align-items: flex-start; }
.hero__word--ai .w > span {
  background: linear-gradient(100deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__reg { font-size: 0.12em; font-weight: 500; margin-top: 0.5em; color: var(--ink-dim); -webkit-text-fill-color: var(--ink-dim); }
.hero__bottom {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-top: clamp(28px, 4vh, 56px);
}
.hero__sub { font-size: clamp(16px, 1.6vw, 21px); line-height: 1.55; color: var(--ink-dim); max-width: 640px; }
.hero__sub em { color: var(--ink); font-size: 1.05em; }
.hero__actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

.play-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 99px;
  border: 1px solid rgba(111, 255, 168, 0.4);
  background: rgba(111, 255, 168, 0.06);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
}
.play-btn:hover { background: rgba(111, 255, 168, 0.14); border-color: var(--aurora-1); }
.play-btn__icon { display: grid; place-items: center; color: var(--aurora-1); }
.play-btn .ico-pause { display: none; }
.play-btn.playing .ico-pause { display: block; }
.play-btn.playing .ico-play { display: none; }
.play-btn__bars { display: none; align-items: flex-end; gap: 2.5px; height: 14px; }
.play-btn.playing .play-btn__bars { display: inline-flex; }
.play-btn__bars i {
  width: 2.5px; background: var(--aurora-1); border-radius: 2px;
  animation: eq 0.9s ease-in-out infinite;
}
.play-btn__bars i:nth-child(1) { animation-delay: 0s; }
.play-btn__bars i:nth-child(2) { animation-delay: 0.18s; }
.play-btn__bars i:nth-child(3) { animation-delay: 0.36s; }
.play-btn__bars i:nth-child(4) { animation-delay: 0.1s; }
.play-btn__bars i:nth-child(5) { animation-delay: 0.27s; }
@keyframes eq { 0%, 100% { height: 4px; } 50% { height: 14px; } }
.play-btn__time { color: var(--ink-dim); font-variant-numeric: tabular-nums; }
.hero__platforms { display: flex; gap: 22px; padding-left: 6px; }
.hero__platforms a {
  font-size: 13px; color: var(--ink-dim); letter-spacing: 0.04em;
  transition: color 0.25s;
}
.hero__platforms a:hover { color: var(--aurora-1); }

/* ticker */
.ticker {
  position: relative; z-index: 2; overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex; gap: 48px; width: max-content;
  animation: ticker 60s linear infinite;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-faint); white-space: nowrap; text-transform: uppercase;
}
.ticker__track b { color: var(--aurora-1); font-weight: 400; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ─────────── shared section bits ─────────── */
section { position: relative; }
.section-kicker { color: var(--aurora-1); margin-bottom: clamp(16px, 2vh, 28px); }
.section-title {
  font-weight: 800;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: clamp(32px, 5vh, 64px);
}
.section-title em { font-weight: 400; letter-spacing: -0.01em; }

/* split-reveal: each word masked, rises on view */
[data-split] .w {
  display: inline-block; overflow: hidden; vertical-align: top;
  padding-top: 0.14em; margin-top: -0.14em;       /* rymd för Å/Ä/Ö-prickar */
  padding-right: 0.14em; margin-right: -0.08em;   /* rymd för kursiv- och spärrningsöverhäng */
}
[data-split] .w > span { display: inline-block; transform: translateY(115%); transition: transform 0.9s var(--ease); }
.in-view [data-split] .w > span, [data-split].in-view .w > span { transform: translateY(0); }

.reveal-line, .reveal-up {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-line.in-view, .reveal-up.in-view { opacity: 1; transform: none; }

.big-link {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: clamp(20px, 2.4vw, 32px); font-weight: 600; letter-spacing: -0.01em;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}
.big-link span { transition: transform 0.3s var(--ease); color: var(--aurora-1); }
.big-link:hover { border-color: var(--aurora-1); }
.big-link:hover span { transform: translateX(10px); }

/* ─────────── manifest ─────────── */
.manifest {
  padding: clamp(120px, 18vh, 240px) var(--pad);
  max-width: 1300px; margin: 0 auto;
}
.manifest__text {
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 1.25; letter-spacing: -0.02em; font-weight: 500;
}
.manifest__text .w-fade { opacity: 0.13; transition: opacity 0.4s ease; }
.manifest__text .w-fade.lit { opacity: 1; }
.manifest__text em { color: var(--aurora-1); }

/* ─────────── stats ─────────── */
.stats { padding: 0 var(--pad) clamp(100px, 14vh, 200px); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: clamp(28px, 3vw, 48px) clamp(8px, 1.5vw, 24px) 0; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  font-weight: 800; font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.stat__plus { color: var(--aurora-1); }
.stat__label { color: var(--ink-dim); margin-top: 14px; }
@media (max-width: 860px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat { padding-bottom: 24px; }
}

/* ─────────── archive ─────────── */
.archive { padding: clamp(80px, 12vh, 180px) 0; background: var(--bg-2); }
.archive__head { padding: 0 var(--pad); }
.archive__hint { color: var(--ink-faint); margin-bottom: 40px; }
.archive__river {
  overflow-x: auto; overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.archive__river::-webkit-scrollbar { display: none; }
.archive__river.dragging { cursor: grabbing; scroll-snap-type: none; }
.archive__track {
  display: flex; gap: clamp(16px, 2vw, 28px);
  padding: 10px var(--pad) 30px;
  width: max-content;
}
.ep {
  position: relative;
  width: clamp(220px, 24vw, 320px);
  flex-shrink: 0;
  border-radius: 14px;
  background: #0e1216;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.3s;
  will-change: transform;
}
.ep:hover { transform: translateY(-10px) rotate(-0.5deg); border-color: rgba(111, 255, 168, 0.45); }
.ep__img { aspect-ratio: 1; width: 100%; object-fit: cover; background: #11161b; filter: saturate(0.92); }
.ep__body { padding: 16px 18px 20px; }
.ep__date { color: var(--aurora-1); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.ep__title {
  font-size: 15px; font-weight: 600; line-height: 1.35; margin-top: 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 6em;
}
.ep__dur { color: var(--ink-faint); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; margin-top: 10px; }
.ep__year {
  flex-shrink: 0; display: flex; align-items: center;
  font-weight: 800; font-size: clamp(70px, 9vw, 150px); letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(238, 242, 238, 0.22);
  padding: 0 clamp(10px, 2vw, 40px);
  user-select: none;
}
.archive__progress {
  height: 1px; background: var(--line);
  margin: 24px var(--pad) 0;
}
.archive__progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  transition: width 0.15s linear;
}

/* ─────────── hosts ─────────── */
.hosts { padding: clamp(100px, 14vh, 200px) var(--pad); }
.hosts__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  max-width: 1200px;
}
.host__img-wrap {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/4.6;
  border: 1px solid var(--line);
}
.host__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.02);
  transition: filter 0.7s ease, transform 1.1s var(--ease);
}
.host:hover .host__img-wrap img { filter: grayscale(0); transform: scale(1.07); }
.host__name {
  font-weight: 800; font-size: clamp(30px, 3.6vw, 54px);
  letter-spacing: -0.03em; line-height: 1; margin-top: 26px;
}
.host__role { color: var(--aurora-1); margin-top: 12px; }
.host__bio { color: var(--ink-dim); font-size: clamp(15px, 1.25vw, 17px); line-height: 1.6; margin-top: 14px; max-width: 460px; }
@media (max-width: 700px) { .hosts__grid { grid-template-columns: 1fr; } }

/* ─────────── stage ─────────── */
.stage { background: var(--bg-2); padding: clamp(100px, 14vh, 200px) var(--pad); }
.stage__inner { max-width: 1300px; }
.stage__cols {
  display: grid; grid-template-columns: minmax(260px, 480px) 1fr;
  gap: clamp(32px, 5vw, 90px);
  margin-bottom: clamp(40px, 6vh, 80px);
}
.stage__lead { font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55; color: var(--ink-dim); }
.stage__list { list-style: none; }
.stage__list li {
  display: flex; gap: 24px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1.5vw, 21px); font-weight: 500;
}
.stage__list li:first-child { border-top: 1px solid var(--line); }
.stage__list .mono { color: var(--aurora-1); }
@media (max-width: 760px) { .stage__cols { grid-template-columns: 1fr; } }

/* ─────────── book ─────────── */
.book { padding: clamp(100px, 14vh, 200px) var(--pad); overflow: hidden; }
.book__inner {
  display: grid; grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
  max-width: 1300px;
}
.book__cover-wrap { perspective: 1200px; }
.book__cover {
  border-radius: 6px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 60px rgba(111, 255, 168, 0.07);
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.book__desc { color: var(--ink-dim); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; max-width: 520px; margin-bottom: 40px; }
@media (max-width: 760px) { .book__inner { grid-template-columns: 1fr; } .book__cover-wrap { max-width: 300px; } }

/* ─────────── guides ─────────── */
.guides { padding: clamp(100px, 14vh, 200px) var(--pad); }
.guides__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  max-width: 1300px;
}
.guide-card {
  position: relative; display: block;
  padding: clamp(28px, 3.5vw, 56px);
  border: 1px solid var(--line); border-radius: 18px;
  background: var(--bg-2);
  transition: border-color 0.35s, transform 0.45s var(--ease), background 0.35s;
}
.guide-card:hover {
  border-color: rgba(111, 255, 168, 0.5);
  background: #0c1014;
  transform: translateY(-8px);
}
.guide-card__tag { color: var(--aurora-1); margin-bottom: 22px; }
.guide-card__title {
  font-weight: 800; font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -0.025em; line-height: 1.02; margin-bottom: 18px;
}
.guide-card__title em { font-weight: 400; }
.guide-card__desc { color: var(--ink-dim); font-size: clamp(15px, 1.25vw, 17px); line-height: 1.6; max-width: 440px; }
.guide-card__arrow {
  position: absolute; top: clamp(24px, 3vw, 48px); right: clamp(24px, 3vw, 48px);
  font-size: clamp(22px, 2vw, 30px); color: var(--aurora-1);
  transition: transform 0.35s var(--ease);
}
.guide-card:hover .guide-card__arrow { transform: translateX(8px); }
@media (max-width: 760px) { .guides__grid { grid-template-columns: 1fr; } }

/* ─────────── biz ─────────── */
.biz { background: var(--bg-2); padding: clamp(100px, 14vh, 200px) var(--pad); }
.biz__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.biz__card { background: var(--bg-2); padding: clamp(24px, 2.6vw, 44px); }
.biz__num {
  font-weight: 800; font-size: clamp(40px, 5vw, 80px); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 16px;
}
.biz__num span { color: var(--aurora-1); font-size: 0.55em; font-weight: 700; }
.biz__card p { color: var(--ink-dim); }
.biz__formats { color: var(--ink-faint); margin-bottom: 28px; }
@media (max-width: 860px) { .biz__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .biz__grid { grid-template-columns: 1fr; } }

/* ─────────── meta reveal ─────────── */
.meta-reveal { height: 420vh; position: relative; }
.meta-reveal__sticky {
  position: sticky; top: 0; height: 100svh;
  display: grid; place-items: center;
  padding: 0 var(--pad);
  text-align: center;
  overflow: hidden;
}
.meta-reveal__step {
  grid-area: 1 / 1;
  max-width: 1000px;
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.25;
  opacity: 0; transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.meta-reveal__step.mono { font-size: clamp(13px, 1.4vw, 18px); letter-spacing: 0.3em; font-weight: 400; color: var(--aurora-1); }
.meta-reveal__step.active { opacity: 1; transform: none; }
.meta-reveal__step.passed { opacity: 0; transform: translateY(-40px) scale(0.98); }
.meta-reveal__step em { color: var(--aurora-1); }
.meta-reveal__sig { display: inline-block; margin-top: 36px; color: var(--ink-faint); font-size: clamp(10px, 1vw, 13px); letter-spacing: 0.2em; }

/* ─────────── toast ─────────── */
.toast {
  position: fixed; left: 50%; bottom: 36px; z-index: 95;
  transform: translate(-50%, 80px);
  padding: 14px 26px; border-radius: 99px;
  background: rgba(14, 18, 22, 0.92);
  border: 1px solid rgba(111, 255, 168, 0.45);
  color: var(--aurora-1);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ─────────── footer ─────────── */
.footer {
  padding: clamp(100px, 14vh, 180px) var(--pad) 50px;
  border-top: 1px solid var(--line);
}
.footer__mail {
  display: inline-block;
  font-weight: 900; letter-spacing: -0.04em;
  font-size: clamp(52px, 11vw, 190px);
  line-height: 0.95; text-transform: uppercase;
  margin: 10px 0 24px -0.04em;
  transition: color 0.3s;
}
.footer__mail:hover { color: var(--aurora-1); }
.footer__addr { color: var(--ink-dim); margin-bottom: clamp(60px, 9vh, 120px); }
.footer__row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 28px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer__links a { font-size: 14px; color: var(--ink-dim); transition: color 0.25s; }
.footer__links a:hover { color: var(--aurora-1); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 26px; color: var(--ink-faint); }
