/* ===========================================================
   Disruptive Soul · shared design system
   Light. Spacious. Apple-clean, with the soul of music.
   =========================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f5f5f7;
  --bg-3: #fafafa;
  --ink: #1d1d1f;
  --ink-2: #55555a;
  --ink-3: #86868b;
  --line: rgba(0, 0, 0, 0.10);
  --line-soft: rgba(0, 0, 0, 0.055);
  --card: #ffffff;
  --ink-invert: #f5f5f7;
  --maxw: 1120px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(0, 0, 0, 0.10); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
section { position: relative; padding: clamp(90px, 13vw, 160px) 0; }
.tight { padding-top: clamp(50px, 7vw, 90px); }

/* ---- Wordmark (recolor via mask) ---- */
.wordmark {
  display: block;
  aspect-ratio: 2042 / 198;
  -webkit-mask: url(assets/wordmark.png) left center / contain no-repeat;
  mask: url(assets/wordmark.png) left center / contain no-repeat;
  background: var(--ink);
}
.wordmark.invert { background: var(--ink-invert); }

/* ---- Nav ---- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand .wordmark { width: 150px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px; font-weight: 500; color: #fff !important;
  background: var(--ink); padding: 8px 16px; border-radius: 980px;
  transition: transform .2s var(--ease), opacity .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); opacity: .88; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; z-index: 101; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; padding: 13px 26px; border-radius: 980px;
  cursor: pointer; transition: transform .22s var(--ease), background .22s ease, opacity .22s ease, border-color .22s ease;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); opacity: .9; }
.btn-light { background: rgba(0,0,0,0.05); color: var(--ink); }
.btn-light:hover { background: rgba(0,0,0,0.09); transform: translateY(-2px); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }

.tlink { display: inline-flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 500; color: var(--ink); }
.tlink .arr { transition: transform .25s var(--ease); }
.tlink:hover .arr { transform: translateX(4px); }
.tlink.blue { color: #0071e3; }

/* ---- Type ---- */
h1, h2, h3, .display, .headline { font-family: var(--font-display); }
.eyebrow {
  font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
/* ☰ bars motif — the E from the DISRUPTIVE☰SOUL wordmark, as a recurring mark */
.bars { display: inline-block; width: 15px; height: 11px; flex-shrink: 0;
  background:
    linear-gradient(currentColor, currentColor) left 0 / 100% 2px,
    linear-gradient(currentColor, currentColor) left 4.5px / 70% 2px,
    linear-gradient(currentColor, currentColor) left 9px / 100% 2px;
  background-repeat: no-repeat; opacity: .75;
}
.display {
  font-size: clamp(44px, 7vw, 104px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 0.98;
}
.headline {
  font-size: clamp(32px, 4.8vw, 62px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.02;
}
.subhead {
  font-size: clamp(19px, 2.1vw, 26px); font-weight: 400;
  letter-spacing: -0.014em; line-height: 1.35; color: var(--ink-2);
}
.lede { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--ink-2); }
.muted { color: var(--ink-3); }

/* ---- Signature: dictionary device (dis·rup·tive) ---- */
.define { font-family: var(--font); font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.define b { color: var(--ink); font-weight: 600; }
.define .ipa { font-style: italic; }

/* ---- Signature: scrolling marquee ---- */
.marquee { position: relative; width: 100%; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 20px 0; }
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3vw, 40px); letter-spacing: -0.02em; color: var(--ink); padding: 0 4px; }
.marquee-item.lc { text-transform: lowercase; }
.marquee-sep { display: inline-flex; margin: 0 26px; color: var(--ink-3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Signature: oversized editorial index number ---- */
.exp { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }

/* ---- Footer ---- */
footer { background: var(--bg-2); padding: 60px 0 44px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.foot-brand .wordmark { width: 180px; margin-bottom: 18px; }
.foot-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; max-width: 440px; }
.foot-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.foot-contact a { font-size: 15px; color: var(--ink); font-weight: 500; }
.foot-contact a:hover { color: #0071e3; }
.foot-loc { font-size: 13px; color: var(--ink-3); }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2);
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
.foot-socials a:hover { color: #fff; background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.foot-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--ink-3);
}
.foot-bottom a:hover { color: var(--ink); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---- Responsive base ---- */
@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    padding: 80px 30px 30px; height: 100svh; justify-content: flex-start;
    transform: translateY(-102%); transition: transform .42s var(--ease); border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 18px 0; font-size: 20px; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
  .nav-links .nav-cta { margin-top: 22px; text-align: center; padding: 15px; font-size: 17px; border-bottom: 0; }
  .nav-toggle { display: block; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
}
