:root {
  --ink: #090909;
  --charcoal: #121212;
  --panel: #171717;
  --paper: #f3efe7;
  --muted: #aaa59b;
  --line: rgba(255, 255, 255, 0.15);
  --red: #ff3535;
  --red-dark: #bc1111;
  --amber: #efaa68;
  --shell: min(1180px, calc(100% - 48px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus { top: 16px; }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--paper);
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -.04em;
}

.site-header nav { display: flex; gap: 28px; }

.site-header nav a {
  color: #d5d1ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); background: #ff5353; border-color: #ff5353; }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 10px; }
.button-outline { background: transparent; color: var(--paper); border-color: #5d5a55; }
.button-outline:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.hero {
  position: relative;
  display: grid;
  min-height: 830px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media, .hero-shade { position: absolute; inset: 0; }

.hero-media {
  z-index: -3;
  background: url("/assets/inkrock-dj-us-hero.png") 64% 50% / cover no-repeat;
  transform: scale(1.005);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .88) 28%, rgba(5, 5, 5, .38) 59%, rgba(5, 5, 5, .25) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .86) 0%, transparent 30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-content {
  align-self: center;
  padding-top: 104px;
}

.eyebrow, .section-index {
  margin: 0 0 25px;
  color: #dad5cd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 53, 53, .13);
  animation: pulse 1.8s infinite;
}

@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(255, 53, 53, 0); } }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .91;
  text-transform: uppercase;
}

h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(76px, 10.1vw, 152px); }
h2 { font-size: clamp(48px, 6.5vw, 88px); }

.hero-copy {
  max-width: 630px;
  margin-bottom: 30px;
  color: #d4d0c9;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.6;
}

.hero-actions { display: flex; align-items: center; gap: 29px; }

.text-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.signal-proof {
  display: flex;
  gap: 0;
  margin-top: 58px;
  color: #aaa69f;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-proof span { padding: 0 24px; border-left: 1px solid var(--line); }
.signal-proof span:first-child { padding-left: 0; border-left: 0; }
.signal-proof strong { color: var(--paper); }

.vertical-label {
  position: absolute;
  right: 19px;
  top: 50%;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.manifesto {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding-block: 150px;
}

.section-index { color: var(--red); }
.manifesto h2 { max-width: 840px; margin-bottom: 32px; }
.manifesto div > p { max-width: 690px; margin: 0 0 0 auto; color: var(--muted); font-size: 19px; line-height: 1.8; }

.how-section {
  padding-block: 130px 145px;
  background: var(--paper);
  color: var(--ink);
}

.section-heading { margin-bottom: 74px; }
.section-heading h2 { max-width: 930px; margin-bottom: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(9,9,9,.18); }

.step-card {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border-right: 1px solid rgba(9,9,9,.18);
}

.step-card:last-child { border-right: 0; }
.step-number { color: var(--red-dark); font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.step-card h3 { margin: 140px 0 18px; font-family: var(--display); font-size: 40px; line-height: 1; text-transform: uppercase; }
.step-card p { max-width: 305px; margin-bottom: 0; color: #5c5954; font-size: 14px; line-height: 1.7; }
.featured-step { background: var(--ink); color: var(--paper); }
.featured-step p { color: #aaa59b; }
.featured-step .step-number { color: var(--red); }

.wave { position: absolute; top: 78px; left: 36px; display: flex; align-items: center; gap: 5px; height: 68px; }
.wave i { display: block; width: 3px; height: 20px; background: var(--red); animation: wave 1.15s ease-in-out infinite alternate; }
.wave i:nth-child(2) { height: 44px; animation-delay: -.4s; }
.wave i:nth-child(3) { height: 30px; animation-delay: -.8s; }
.wave i:nth-child(4) { height: 62px; animation-delay: -.2s; }
.wave i:nth-child(5) { height: 35px; animation-delay: -.6s; }
.wave i:nth-child(6) { height: 50px; animation-delay: -.9s; }
.wave i:nth-child(7) { height: 22px; animation-delay: -.3s; }
@keyframes wave { to { transform: scaleY(.35); opacity: .55; } }

.creator-section { padding-block: 145px 130px; overflow: hidden; }
.split-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.75; }

.creator-ticker {
  display: flex;
  gap: 25px;
  align-items: center;
  width: max-content;
  padding-block: 25px;
  border-block: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(28px, 4.1vw, 54px);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.creator-ticker b { color: var(--red); font-family: var(--sans); font-size: 14px; }

.plans-section { padding-block: 135px 145px; background: #111; }
.plans-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.plans-heading > p { margin-bottom: 8px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 38px;
  border: 1px solid var(--line);
  background: #151515;
}
.plan-kicker { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.plan-card h3 { margin: 55px 0 20px; font-family: var(--display); font-size: 54px; line-height: .9; text-transform: uppercase; }
.plan-card h3 span { display: block; margin-top: 8px; color: #87837c; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.plan-card > p:not(.plan-kicker, .price, .popular-flag) { color: var(--muted); font-size: 14px; line-height: 1.75; }
.price { margin: 0 0 24px; font-family: var(--display); font-size: 64px; line-height: 1; }
.price sup { color: var(--red); font-family: var(--sans); font-size: 18px; }
.price span { display: block; margin-top: 10px; color: #87837c; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; }
.plan-card .button { width: 100%; margin-top: auto; }
.plan-featured { border-color: var(--red); transform: translateY(-16px); background: #1b1515; }
.popular-flag { position: absolute; top: 0; right: 0; padding: 8px 13px; background: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.reset-note { margin: 28px 0 0; color: #77736d; font-size: 11px; letter-spacing: .05em; text-align: center; }

.faq-section { padding-block: 145px; }
.faq-heading { display: grid; grid-template-columns: 220px 1fr; gap: 60px; }
.faq-list { max-width: 920px; margin-left: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 29px 0; cursor: pointer; font-size: 20px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-size: 26px; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 0 28px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.closing-section { position: relative; overflow: hidden; padding-block: 145px; border-block: 1px solid var(--line); background: #0c0c0c; }
.closing-glow { position: absolute; right: -8vw; top: 50%; width: 48vw; height: 48vw; border-radius: 50%; background: radial-gradient(circle, rgba(209, 21, 21, .35), rgba(9,9,9,0) 67%); transform: translateY(-50%); }
.closing-content { position: relative; }
.closing-content h2 { max-width: 880px; margin-bottom: 43px; font-size: clamp(66px, 9.3vw, 132px); }
.closing-content em { color: var(--red); font-style: normal; }

.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 145px; color: #77736d; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p { margin: 0; }

@media (max-width: 920px) {
  :root { --shell: min(100% - 34px, 740px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 17px; }
  .site-header nav { display: none; }
  .hero { min-height: 760px; }
  .hero-media { background-position: 68% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,5,5,.97), rgba(5,5,5,.78) 56%, rgba(5,5,5,.34)), linear-gradient(0deg, rgba(5,5,5,.9), transparent 45%); }
  .manifesto, .faq-heading { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid, .plans-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(9,9,9,.18); }
  .step-card:last-child { border-bottom: 0; }
  .step-card h3 { margin-top: 105px; }
  .split-heading, .plans-heading { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-card { min-height: 440px; }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 560px) {
  .site-header .button { display: none; }
  .hero { min-height: 760px; }
  .hero-media { background-position: 72% 50%; opacity: .75; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,5,5,.97) 0%, rgba(5,5,5,.72) 100%); }
  .hero-content { padding-top: 90px; }
  h1 { font-size: clamp(64px, 21vw, 94px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .signal-proof { display: grid; grid-template-columns: 1fr 1fr; row-gap: 15px; }
  .signal-proof span { padding: 0 13px; }
  .signal-proof span:nth-child(3) { padding-left: 0; border-left: 0; }
  .vertical-label { display: none; }
  .manifesto, .how-section, .creator-section, .plans-section, .faq-section, .closing-section { padding-block: 95px; }
  .step-card, .plan-card { padding: 28px; }
  .faq-list summary { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
