* {
  box-sizing: border-box;
}

:root {
  --bg: #090909;
  --panel: #111111;
  --panel-2: #151515;
  --text: #f5f5f2;
  --muted: #9a9a95;
  --line: #292929;
  --red: #c91521;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 12%, rgba(201, 21, 33, 0.08), transparent 23rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 21px 0;
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 30px;
  border: 1px solid var(--red);
  color: var(--text);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.brand-name {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: #b7b7b3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.nav a:hover {
  color: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 73px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(76px, 12vw, 150px) 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "DVD";
  position: absolute;
  right: -1.5rem;
  top: 4rem;
  z-index: -2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  font-size: clamp(12rem, 29vw, 27rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 90%);
}

.hero-kicker,
.section-label {
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero h1 {
  max-width: 960px;
  margin: 22px 0 26px;
  font-size: clamp(3.6rem, 9.5vw, 8.1rem);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 900;
}

.hero h1 span {
  color: #73736f;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: #aeaeaa;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 15px 24px;
  border: 1px solid var(--line);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  transition: .2s ease;
  cursor: pointer;
}

.btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: #e01928;
  border-color: #e01928;
}

.btn-secondary {
  background: rgba(255,255,255,.02);
}

.btn-secondary:hover {
  border-color: #5e5e5b;
  background: rgba(255,255,255,.05);
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(74px, 12vh, 120px);
}

.hero-rule span {
  width: 54px;
  height: 1px;
  background: var(--red);
}

.hero-rule p {
  margin: 0;
  color: #777773;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero-rule b {
  color: var(--red);
  padding: 0 .35rem;
}

.section,
.connect {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 8vw, 110px);
  margin-top: 36px;
}

.section h2,
.connect h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 900;
}

.section-copy {
  align-self: end;
}

.section-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #595956;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.text-link:hover {
  border-color: var(--red);
}

.disabled-link {
  color: #696966;
  cursor: default;
}

.statement {
  padding: clamp(68px, 9vw, 105px) 24px;
  background: #f1f0ec;
  color: #111;
  text-align: center;
}

.statement p,
.statement strong {
  display: block;
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.statement p {
  font-weight: 500;
}

.statement strong {
  font-weight: 900;
}

.about-section {
  background:
    linear-gradient(90deg, transparent, rgba(201,21,33,.025), transparent);
}

.signature {
  color: #fff !important;
  font-size: .75rem !important;
  font-weight: 900;
  letter-spacing: .18em;
}

.connect {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(42px, 9vw, 120px);
}

.connect h2 {
  margin-top: 34px;
}

.social-list {
  display: grid;
  align-content: start;
}

.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  color: #d7d7d2;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  transition: .2s ease;
}

.social-list a:first-child {
  border-top: 1px solid var(--line);
}

.social-list a:hover {
  padding-left: 10px;
  color: #fff;
  border-bottom-color: #555;
}

.social-list b {
  color: var(--red);
  font-weight: 500;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.06em;
}

footer p {
  margin: 4px 0;
  color: #70706d;
  text-align: right;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section,
  .connect,
  footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    padding: 17px 0;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 14px;
    background: #0d0d0d;
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5.1rem);
  }

  .hero-copy {
    max-width: 92%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn-primary {
    grid-column: 1 / -1;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-rule {
    margin-top: 72px;
  }

  .section-grid,
  .connect {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 36px;
  }

  .section-copy {
    max-width: 95%;
  }

  .connect {
    gap: 48px;
  }

  footer {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
