/* ============================================================
   GROOVE MAN — mockup
   Concepto: "Nocturno / crate de vinilo"
   ============================================================ */

:root {
  --bg: #070709;
  --bg2: #0d0d12;
  --surface: #121218;
  --surface2: #17171f;
  --line: #23232c;
  --text: #f3efe8;
  --muted: #8b8b96;
  --accent: #ff4d2e;
  --accent2: #ffc53d;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --r: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::selection { background: var(--accent); color: #fff; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

/* ============ HEADER ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(7, 7, 9, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__logo img { height: 26px; width: auto; }
.header__nav { display: flex; gap: 2rem; }
.header__nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.25rem;
  transition: color 0.25s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}
.header__nav a:hover { color: var(--text); }
.header__nav a:hover::after { width: 100%; }
.header__right { display: flex; align-items: center; gap: 1.25rem; }
.social { display: flex; align-items: center; gap: 0.5rem; }
.social__a {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--muted); border: 1px solid var(--line);
  transition: all 0.2s;
}
.social__a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
@media (max-width: 720px) { .header__right .social { display: none; } }

.lang { display: flex; gap: 0.15rem; font-family: var(--font-mono); font-size: 0.7rem; }
.lang button {
  padding: 0.35rem 0.5rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.lang button.is-active { color: var(--accent); }
.lang button:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 77, 46, 0);
}
.btn--accent:hover {
  box-shadow: 0 0 32px rgba(255, 77, 46, 0.55);
  transform: translateY(-1px);
}
.btn--ghost { color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 860px) {
  .header__nav { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem var(--pad) 3.5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; filter: saturate(0.9) contrast(1.05); }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,9,0.72) 0%, rgba(7,7,9,0.35) 35%, rgba(7,7,9,0.92) 82%, var(--bg) 100%),
    radial-gradient(120% 90% at 75% 20%, rgba(255,77,46,0.16), transparent 60%);
}
.hero__inner { position: relative; width: 100%; max-width: var(--max); margin: 0 auto; }
.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.hero__logo {
  width: min(100%, 1100px);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 34px rgba(255, 77, 46, 0.35));
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__tag {
  max-width: 46ch;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: #d9d5cc;
  animation: heroIn 1.1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
  animation: heroIn 1.1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  animation: heroIn 1.1s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__meta b { color: var(--text); font-weight: 500; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ============ TICKER ============ */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden;
  padding-block: 1.1rem;
}
.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ticker__track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.ticker__track span::after { content: "◆"; color: var(--accent); font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTION ============ */
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--alt { background: var(--bg2); border-block: 1px solid var(--line); }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section__kicker { color: var(--accent); margin-bottom: 0.75rem; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.section__desc { color: var(--muted); max-width: 34ch; }

/* ============ HIGHLIGHTS ============ */
.highlights { display: grid; gap: 1.25rem; grid-template-columns: repeat(12, 1fr); }
.hl {
  position: relative;
  grid-column: span 4;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.hl:nth-child(1) { grid-column: span 6; aspect-ratio: 4/3; }
.hl:nth-child(2) { grid-column: span 6; aspect-ratio: 4/3; }
.hl:hover { transform: translateY(-6px); border-color: var(--accent); }
.hl img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.hl:hover img { transform: scale(1.06); }
.hl__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,7,9,0.92) 100%);
}
.hl__body { position: absolute; inset: auto 1.25rem 1.25rem; }
.hl__body .mono { color: var(--accent2); }
.hl__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.6rem); margin-top: 0.35rem; }
.hl__note { color: #bdb9b0; font-size: 0.9rem; margin-top: 0.2rem; }

@media (max-width: 900px) {
  .hl, .hl:nth-child(1), .hl:nth-child(2) { grid-column: span 12; aspect-ratio: 3/2; }
}

/* ============ DISCOGRAPHY ============ */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.22s;
}
.chip:hover { color: var(--text); border-color: var(--muted); }
.chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: #3a3a46; box-shadow: 0 22px 50px -28px rgba(255,77,46,0.55); }
.card__art { position: relative; aspect-ratio: 1; background: var(--surface2); overflow: hidden; }
.card__art img { width: 100%; height: 100%; object-fit: cover; }
.card__art .ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: repeating-linear-gradient(45deg, #121218, #121218 12px, #15151c 12px, #15151c 24px);
}
.card__art .ph img {
  width: 42%; height: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.4);
}
.card__badge {
  position: absolute; top: 0.6rem; left: 0.6rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.08em;
  background: rgba(7,7,9,0.72); color: var(--accent2);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 0.15rem 0.35rem;
  backdrop-filter: blur(4px);
}
.card__play {
  position: absolute; inset: auto 0.75rem 0.75rem auto;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-size: 0.8rem;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255,77,46,0.6);
}
.card:hover .card__play, .card__play.is-playing { opacity: 1; transform: none; }
.card__play.is-playing { animation: pulse 1.4s ease-in-out infinite; }

/* en tactil/teclado no hay hover: boton siempre visible */
@media (hover: none) {
  .card__play { opacity: 1; transform: none; }
}
.card__play:focus-visible { opacity: 1; transform: none; outline: 2px solid var(--accent2); outline-offset: 2px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255,77,46,0.55); }
  50% { box-shadow: 0 0 30px rgba(255,77,46,0.95); }
}
.card__body { padding: 0.95rem 1rem 1.1rem; }
.card__title { font-weight: 600; font-size: 1rem; line-height: 1.25; }
.card__meta {
  display: flex; justify-content: space-between; gap: 0.5rem;
  margin-top: 0.55rem; color: var(--muted);
}
.card__role {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.18rem 0.4rem;
}
.card__tag {
  display: inline-block;
  margin-top: 0.7rem;
  margin-right: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0a0a0c;
  background: var(--accent2);
  border-radius: 4px;
  padding: 0.18rem 0.4rem;
}
.card__expand {
  display: block; width: 100%;
  margin-top: 0.8rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); text-align: left;
  transition: all 0.2s;
}
.card__expand:hover { color: var(--accent); border-color: var(--accent); }

.player { margin-top: 0.6rem; border-top: 1px solid var(--line); }
.track__item {
  display: grid; grid-template-columns: 1.6rem 1fr auto;
  align-items: center; gap: 0.5rem;
  width: 100%; padding: 0.42rem 0.35rem;
  border-bottom: 1px solid var(--line);
  text-align: left; color: #c8c4bb; font-size: 0.82rem;
  transition: background 0.18s, color 0.18s;
}
.track__item:hover { background: var(--surface2); color: var(--text); }
.track__item.is-playing { color: var(--accent); background: rgba(255, 77, 46, 0.08); }
.track__item.is-playing .track__i::before { content: "❚❚ "; }
.track__i { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); }
.track__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track__dur { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); }

.card__badge--full { color: #fff; background: rgba(255,77,46,0.85); border-color: transparent; }
.card__tag--unreleased { background: var(--accent); color: #fff; }

.card__links { display: flex; gap: 0.6rem; margin-top: 0.85rem; }
.card__links a {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.card__links a:hover { color: var(--accent); border-color: var(--accent); }

.card__embed-btn {
  display: block; width: 100%;
  margin-top: 0.7rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); text-align: left;
  transition: all 0.2s;
}
.card__embed-btn:hover { color: var(--accent); border-color: var(--accent); }
.card__embed { margin-top: 0.7rem; border-radius: 8px; overflow: hidden; }
.card__embed iframe { display: block; width: 100%; border: 0; border-radius: 8px; }

/* ============ BIO ============ */
.bio { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.bio__photo { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.bio__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.bio__emblem {
  width: 78px;
  margin-bottom: 1.4rem;
  opacity: 0.92;
  filter: invert(1) drop-shadow(0 0 20px rgba(255, 77, 46, 0.35));
}
.bio__text p { color: #cfcabf; margin-bottom: 1.1rem; }
.bio__stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.bio__stats .n { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--accent); }
.bio__stats .l { color: var(--muted); }
@media (max-width: 900px) { .bio { grid-template-columns: 1fr; } }

/* ============ NEWSLETTER ============ */
.news { text-align: center; max-width: 44rem; }
.news__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 5.5vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.news__title em { color: var(--accent); font-style: normal; }
.news__desc { color: var(--muted); margin: 1rem auto 2rem; max-width: 40ch; }
.news__form { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.news__input {
  flex: 1 1 16rem; max-width: 22rem;
  padding: 0.85rem 1rem;
  background: var(--surface2); color: var(--text);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 0.85rem;
}
.news__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,77,46,0.18); }
.news__form .btn { border: 1px solid transparent; cursor: pointer; }
.news__msg { margin-top: 1rem; min-height: 1.2em; font-size: 0.72rem; color: var(--accent2); }
.news__privacy { color: #55555f; font-size: 0.66rem; margin-top: 0.4rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ BOOKING ============ */
.booking { text-align: center; }
.booking__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 7vw, 5.5rem); line-height: 0.95; letter-spacing: -0.02em; }
.booking__title em { color: var(--accent); font-style: normal; }
.booking__mail {
  display: inline-block; margin-top: 2rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 3vw, 2rem);
  border-bottom: 2px solid var(--accent); padding-bottom: 0.3rem;
  transition: color 0.25s;
}
.booking__mail:hover { color: var(--accent); }
.booking__socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 3rem 0; background: var(--bg2); }
.footer__row { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; }
.footer img { height: 22px; }
.footer__note { color: #55555f; font-size: 0.78rem; max-width: 60ch; margin-top: 1.25rem; }
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============ REPRODUCTOR FLOTANTE ============ */
.pb {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  background: rgba(10, 10, 13, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.pb.is-open { transform: translateY(0); }

.pb__body {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  padding: 0.7rem clamp(1rem, 3vw, 2.25rem);
}
.pb__cover {
  width: 58px; height: 58px; border-radius: 8px;
  background: var(--surface2) center/cover no-repeat;
  border: 1px solid var(--line);
  flex: none;
}
.pb__cover--ph {
  background-color: #121218 !important;
  background-size: 42% !important;
  background-position: center !important;
  filter: none;
}
.pb__main { min-width: 0; }
.pb__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pb__info { min-width: 0; }
.pb__title {
  font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pb__artist { color: var(--muted); font-size: 0.74rem; margin-top: 0.1rem; }
.pb__wave {
  margin-top: 0.35rem;
  cursor: pointer;
  border-radius: 4px;
}
.pb__wave:focus-visible { outline: 2px solid var(--accent2); outline-offset: 2px; }

.pb__controls { display: flex; align-items: center; gap: 0.4rem; }
.pb__btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text); font-size: 0.9rem;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.pb__btn:hover { color: var(--accent); border-color: var(--line); }
.pb__btn--play {
  width: 46px; height: 46px;
  background: var(--accent); color: #fff;
  box-shadow: 0 0 22px rgba(255, 77, 46, 0.5);
}
.pb__btn--play:hover { color: #fff; }

.pb__time { color: var(--muted); font-size: 0.68rem; white-space: nowrap; }
.pb__right { display: flex; align-items: center; gap: 0.6rem; }
.pb__vol { color: var(--muted); font-size: 0.6rem; }
.pb__volume { width: 90px; accent-color: var(--accent); cursor: pointer; }
.pb__link { font-size: 1rem; }

@media (max-width: 720px) {
  .pb__body { grid-template-columns: auto 1fr auto; }
  .pb__right .pb__vol, .pb__volume { display: none; }
  .pb__cover { width: 46px; height: 46px; }
}

/* ============ LINK PAGE ============ */
.links-page {
  min-height: 100vh;
  display: grid; place-items: center;
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(255,77,46,0.14), transparent 60%),
    var(--bg);
}
.links { width: 100%; max-width: 26rem; padding: 3rem 1.25rem; text-align: center; }
.links__head { margin-bottom: 2rem; }
.links__logo { width: min(240px, 70%); margin: 0 auto 0.75rem; display: block; filter: drop-shadow(0 0 26px rgba(255,77,46,0.35)); }
.links__tag { color: var(--accent2); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }
.links__list { display: grid; gap: 0.7rem; }
.links__item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); color: var(--text);
  font-weight: 500; font-size: 0.95rem; text-align: left;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, background 0.25s;
}
.links__item:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--surface2); }
.links__item--accent { background: var(--accent); border-color: transparent; color: #fff; box-shadow: 0 12px 30px -14px rgba(255,77,46,0.8); }
.links__item--accent:hover { background: #ff6247; }
.links__ic { width: 1.4rem; text-align: center; font-size: 0.9rem; opacity: 0.9; }
.links__note { color: #55555f; font-size: 0.64rem; margin-top: 2rem; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
