@font-face {
  font-family: "DeadReelFuzz";
  src: url("fonts/DeadReelFuzz.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --void: #000;
  --ink: #0d0d0d;
  --cream: #d9d2c5;
  --cream-dim: #9a9284;
  --blood: #bf3f36;
  --blood-deep: #8c2a24;
  --gold: #c4a574;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-headline: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 3.5vw, 2.75rem);
  --logo-h: clamp(2.75rem, 7.5vw, 4.25rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--void);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

.hero-art {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(191, 63, 54, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(196, 165, 116, 0.1), transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(13, 13, 13, 1), var(--void));
  opacity: 0.9;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem var(--page-gutter);
}

.logo-img {
  height: var(--logo-h);
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.site-nav a:hover {
  color: var(--cream);
}

.hero {
  padding: 1.5rem var(--page-gutter) 3rem;
}

.hero-stage {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-stage {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    min-height: calc(100vh - 7rem);
  }
}

.plugin-stage {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.portal-glow {
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 63, 54, 0.45), transparent 70%);
  filter: blur(28px);
  animation: pulse 4.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

.plugin-face {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.7));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.35em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blood);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.95), 0 2px 24px rgba(0, 0, 0, 0.85);
}

.lede {
  max-width: 28rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.price-free {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.buy-solid {
  appearance: none;
  border: 0;
  background: var(--blood);
  color: #0a0a0a;
  padding: 0.85rem 1.4rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.buy-solid:hover {
  background: var(--blood-deep);
}

.buy-solid:active {
  transform: translateY(1px);
}

.split {
  display: grid;
  gap: 2rem;
  padding: 3rem var(--page-gutter);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.split h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.split p {
  color: var(--cream-dim);
  line-height: 1.65;
}

.kill-steps {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.kill-steps li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(217, 210, 197, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kill-steps .wave {
  width: 90px;
  color: var(--blood);
  flex-shrink: 0;
}

.daw-section {
  padding: 2rem var(--page-gutter) 4rem;
}

.daw-block {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.daw-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.daw-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.daw-logo {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}

.daw-formats {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.daw-legal {
  color: var(--cream-dim);
  font-size: 0.7rem;
}

.site-footer {
  padding: 3rem var(--page-gutter) 2rem;
  border-top: 1px solid rgba(217, 210, 197, 0.1);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.signup {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.signup-mark .logo-img {
  height: clamp(4rem, 12vw, 6rem);
  margin: 0 auto 1.25rem;
}

.signup h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.signup p {
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.signup-status {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.signup input[type="email"] {
  flex: 1 1 220px;
  max-width: 280px;
  border: 1px solid rgba(217, 210, 197, 0.2);
  background: rgba(0, 0, 0, 0.55);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.signup input::placeholder {
  color: rgba(154, 146, 132, 0.5);
}

.foot-bar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.socials {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 22px;
  height: 22px;
  color: var(--cream-dim);
}

.socials a:hover .social-icon {
  color: var(--cream);
}

.foot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.foot-meta a:hover {
  color: var(--cream);
}

.about-page,
.terms-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem var(--page-gutter) 4rem;
}

.about-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 1rem;
}

.about-page h1,
.terms-page h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-body,
.terms-page p {
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-back {
  display: inline-block;
  margin-top: 1.5rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.75);
}

.modal.open {
  display: flex;
}

@media (min-width: 640px) {
  .modal {
    align-items: center;
  }
}

.modal-card {
  width: 100%;
  max-width: 24rem;
  background: var(--ink);
  border: 1px solid rgba(191, 63, 54, 0.4);
  padding: 1.5rem;
}

.modal-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.modal-card p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.modal-actions .ghost {
  border: 1px solid rgba(217, 210, 197, 0.2);
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 1.2rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.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;
}
