/* ==========================================================================
   UMBRA - spatial audio instruments
   Dark cinematic atelier. Ink + bone + a single chartreuse accent.
   Type: Clash Display (display) / General Sans (body) / IBM Plex Mono (meta)
   Z-index scale: grain 200 / menu 120 / nav 100
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink-0: #08090a;
  --ink-1: #0d0f11;
  --ink-2: #121518;
  --ink-3: #1a1e22;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text-1: #f3f4f0;
  --text-2: #a4a9ad;
  --text-3: #7c838c;

  --accent: #d9f25b;
  --accent-bright: #e6fa83;
  --accent-ink: #0b0c05;
  --accent-dim: rgba(217, 242, 91, 0.12);

  --err: #ff8578;

  --font-display: "Clash Display", "Arial Black", sans-serif;
  --font-body: "General Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --r-lg: 24px;
  --r-md: 14px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --section-pad: clamp(96px, 12vw, 168px);
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-400i.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plex-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plex-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ink-0);
}
::-webkit-scrollbar-thumb {
  background: var(--ink-3);
  border-radius: 99px;
  border: 2px solid var(--ink-0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 99px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus-visible {
  top: 16px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 150;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  pointer-events: none;
}

.container {
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
}

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform 0.35s var(--ease),
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
  will-change: transform;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text-1);
}
.btn-ghost:hover {
  border-color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-large {
  padding: 20px 36px;
  font-size: 15px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(11, 12, 5, 0.14);
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease);
}
.btn-primary:hover .btn-arrow {
  transform: translate(3px, -3px);
  background: rgba(11, 12, 5, 0.22);
}
.btn-large .btn-arrow {
  width: 34px;
  height: 34px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px 0;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  margin-inline: auto;
  padding: 9px 10px 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(13, 15, 17, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav.scrolled .nav-pill {
  background: rgba(13, 15, 17, 0.82);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  color: var(--accent);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--text-1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover {
  color: var(--text-1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger.open span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}
.burger.open span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 8vw, 96px);
  background: rgba(8, 9, 10, 0.92);
  background:
    radial-gradient(560px 420px at 70% 22%, rgba(217, 242, 91, 0.06), transparent 65%),
    rgba(8, 9, 10, 0.92);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu.open {
  opacity: 1;
  visibility: visible;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 10px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 10vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-1);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s var(--ease);
  transition-delay: calc(var(--i) * 70ms);
}
.menu-link span {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.menu-link:hover {
  color: var(--accent);
}
.menu.open .menu-link {
  opacity: 1;
  transform: none;
}

.menu-foot {
  position: absolute;
  bottom: 44px;
  left: clamp(24px, 8vw, 96px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.35s;
}
.menu.open .menu-foot {
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(112px, 15vh, 168px) 0 88px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 520px at 76% 26%, rgba(217, 242, 91, 0.11), transparent 62%),
    radial-gradient(720px 560px at 12% 88%, rgba(255, 255, 255, 0.045), transparent 60%);
}
.hero-glow::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(360px 320px at 30% 42%, rgba(217, 242, 91, 0.07), transparent 62%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translate3d(-2.5%, 2%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, -2.5%, 0) scale(1.1);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 15, 17, 0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  animation: fade-up 0.9s var(--ease) 0.3s both;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 2.6s var(--ease) infinite;
}

.hero-title {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.4rem, 8.6vw, 7.8rem);
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: var(--text-1);
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero-title .line-in {
  display: inline-block;
  animation: line-up 1.05s var(--ease) both;
}
.hero-title .line:nth-child(1) .line-in {
  animation-delay: 0.42s;
}
.hero-title .line:nth-child(2) .line-in {
  animation-delay: 0.56s;
}

.hollow {
  font-style: normal;
  color: var(--accent);
}
@supports (-webkit-text-stroke: 1px var(--accent)) {
  .hollow {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
  }
}

.hero-sub {
  margin-top: 30px;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  animation: fade-up 0.9s var(--ease) 0.72s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  animation: fade-up 0.9s var(--ease) 0.85s both;
}

.hero-visual {
  position: relative;
  animation: rise-in 1.15s var(--ease) 0.95s both;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14% -20%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(217, 242, 91, 0.1), transparent 72%);
}

.frame {
  padding: 10px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 60px 120px -50px rgba(0, 0, 0, 0.85);
}
.frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.frame-cap {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- Keyframes ---------- */
@keyframes line-up {
  from {
    transform: translateY(112%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(1.035);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 242, 91, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(217, 242, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 242, 91, 0);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-group span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
.marquee-group i {
  width: 4px;
  height: 4px;
  flex: none;
  background: var(--line-strong);
  transform: rotate(45deg);
}

/* ---------- Manifesto ---------- */
.manifesto {
  padding: var(--section-pad) 0;
}

.manifesto-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.6vw, 5.7rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-1);
}

.manifesto-title .m-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.manifesto-title .m-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%);
  transition: transform 0.85s var(--ease), opacity 0.85s var(--ease);
}
.manifesto-title .m-line:nth-child(1) .m-word:nth-child(1) { transition-delay: 0.05s; }
.manifesto-title .m-line:nth-child(1) .m-word:nth-child(2) { transition-delay: 0.12s; }
.manifesto-title .m-line:nth-child(1) .m-word:nth-child(3) { transition-delay: 0.19s; }
.manifesto-title .m-line:nth-child(1) .m-word:nth-child(4) { transition-delay: 0.26s; }
.manifesto-title .m-line:nth-child(2) .m-word:nth-child(1) { transition-delay: 0.38s; }
.manifesto-title .m-line:nth-child(2) .m-word:nth-child(2) { transition-delay: 0.45s; }
.manifesto-title .m-line:nth-child(2) .m-word:nth-child(3) { transition-delay: 0.52s; }
.manifesto-title .m-line:nth-child(2) .m-word:nth-child(4) { transition-delay: 0.59s; }
.manifesto-title .m-line:nth-child(2) .m-word:nth-child(5) { transition-delay: 0.66s; }
.manifesto-title .m-line:nth-child(2) .m-word:nth-child(6) { transition-delay: 0.73s; }
.manifesto-title.in .m-word {
  opacity: 1;
  transform: none;
}

.manifesto-body {
  margin-top: 40px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ---------- Section heads ---------- */
.section-head {
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text-1);
}
.section-head p {
  margin-top: 16px;
  max-width: 40ch;
  font-size: 16px;
  color: var(--text-2);
}

/* ---------- Bento ---------- */
.bento-section {
  padding: calc(var(--section-pad) * 0.85) 0 var(--section-pad);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "a a a a a a a b b b b b"
    "c c c c c d d d d d d d";
  grid-auto-rows: 292px;
  gap: 18px;
}

.bento-cell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-1);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}

.bento-a {
  grid-area: a;
}
.bento-stat {
  grid-area: b;
}
.bento-c {
  grid-area: c;
}
.bento-text {
  grid-area: d;
}

.bento-img {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.bento-img img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.9s var(--ease);
}
.bento-img:hover img {
  transform: scale(1.035);
}
.bento-img figcaption {
  padding: 13px 16px 11px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.bento-img:hover {
  border-color: var(--line-strong);
}

.bento-a::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(217, 242, 91, 0.08), transparent 70%);
}
.bento-a img,
.bento-a figcaption {
  position: relative;
  z-index: 1;
}

.bento-stat {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat-label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.stat-body {
  margin-top: auto;
  padding-top: 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
}
.bento-stat:hover {
  background: var(--ink-2);
}

.bento-text {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.bento-lead {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.bento-body {
  margin-top: auto;
  padding-top: 26px;
  font-size: 15px;
  color: var(--text-2);
}
.bento-text:hover {
  background: var(--ink-2);
}

/* ---------- Parallax ---------- */
.parallax {
  position: relative;
  height: clamp(440px, 88vh, 840px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-img {
  position: absolute;
  inset: -14% 0;
  will-change: transform;
}
.parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--ink-0) 0%, rgba(8, 9, 10, 0.25) 34%, rgba(8, 9, 10, 0.25) 66%, var(--ink-0) 100%),
    radial-gradient(80% 60% at 50% 50%, transparent 40%, rgba(8, 9, 10, 0.5) 100%);
}
.parallax-line {
  position: relative;
  z-index: 2;
  max-width: 22ch;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-1);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

/* ---------- Sound rows ---------- */
.sound {
  padding: var(--section-pad) 0;
}
.sound-list {
  border-top: 1px solid var(--line);
}
.sound-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.25fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(34px, 4.5vw, 52px) 0;
}
.sound-row + .sound-row {
  border-top: 1px solid var(--line);
}
.sound-no {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-3);
  padding-top: 8px;
}
.sound-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-1);
  transition: color 0.35s var(--ease);
}
.sound-row:hover .sound-title {
  color: var(--accent);
}
.sound-body {
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ---------- Craft ---------- */
.craft {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.craft-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text-1);
}
.craft-lead {
  margin-top: 26px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
}

.craft-list {
  margin-top: 44px;
}
.craft-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.craft-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.craft-key {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.craft-val {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-1);
  text-align: right;
}

.craft-sign {
  margin-top: 44px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Quote ---------- */
.quote {
  padding: var(--section-pad) 0;
}
.quote blockquote {
  max-width: 62ch;
}
.quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.quote footer {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.quote footer span {
  color: var(--accent);
}

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  padding: calc(var(--section-pad) * 1.1) 0;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 420px at 50% 42%, rgba(217, 242, 91, 0.07), transparent 65%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  text-align: center;
}
.final-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 7.4vw, 6.2rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--text-1);
}
.final-inner p {
  margin: 26px auto 0;
  max-width: 46ch;
  font-size: 17px;
  color: var(--text-2);
}
.final-inner .btn {
  margin-top: 44px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(70px, 9vw, 110px) 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(48px, 8vw, 120px);
}

.footer-news label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.news-form {
  display: flex;
  gap: 10px;
}
.news-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--ink-1);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.news-form input::placeholder {
  color: var(--text-3);
}
.news-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.news-msg {
  min-height: 20px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}
.news-msg.err {
  color: var(--err);
}
.news-msg.ok {
  color: var(--accent);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-head {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-col a {
  position: relative;
  font-size: 14px;
  color: var(--text-2);
  width: max-content;
  transition: color 0.25s var(--ease);
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.footer-col a:hover {
  color: var(--text-1);
}
.footer-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-word {
  margin-top: clamp(70px, 10vw, 120px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 17vw, 16rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  user-select: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  color: var(--text-3);
  transition: color 0.25s var(--ease);
}
.footer-legal a:hover {
  color: var(--text-1);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }
  .craft-grid {
    grid-template-columns: 1fr;
  }
  .craft-visual {
    max-width: 620px;
    margin-inline: auto;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 16px 0;
  }
  .nav-pill {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 7px 7px 18px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d";
    grid-auto-rows: auto;
  }
  .bento-a {
    min-height: 400px;
  }
  .bento-c {
    min-height: 320px;
  }
  .bento-a,
  .bento-c {
    display: flex;
    flex-direction: column;
  }

  .sound-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sound-no {
    padding-top: 0;
  }

  .craft-list li {
    flex-direction: column;
    gap: 6px;
  }
  .craft-val {
    text-align: left;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 32px, 1400px);
  }
  .hero {
    padding-top: 128px;
  }
  .news-form {
    flex-direction: column;
  }
  .news-form .btn {
    justify-content: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-group:nth-child(2) {
    display: none;
  }
  .manifesto-title .m-word,
  .reveal {
    opacity: 1;
    transform: none;
  }
  .parallax-img img {
    transform: none !important;
  }
}
