:root {
  --ink: #f6f2ea;
  --muted: #c7c0b5;
  --dim: #918a82;
  --bg: #090a0b;
  --panel: #121416;
  --panel-2: #191b1d;
  --line: rgba(255, 255, 255, 0.14);
  --amber: #dca24a;
  --teal: #35c1ba;
  --sapphire: #5273ff;
  --rose: #ba5f7c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(53, 193, 186, 0.12), transparent 26rem),
    radial-gradient(circle at 12% 42%, rgba(220, 162, 74, 0.12), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(9, 10, 11, 0.68);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, var(--amber), var(--teal) 48%, var(--sapphire)),
    #111;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 28px rgba(53, 193, 186, 0.22);
  clip-path: polygon(50% 0, 96% 25%, 96% 75%, 50% 100%, 4% 75%, 4% 25%);
  width: 30px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 10px;
  list-style: none;
  min-height: 42px;
  padding: 0 14px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-icon {
  background: currentColor;
  border-radius: 999px;
  box-shadow:
    0 -6px 0 currentColor,
    0 6px 0 currentColor;
  height: 2px;
  width: 18px;
}

.mobile-menu-panel {
  background: rgba(12, 14, 16, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
}

.mobile-menu:not([open]) .mobile-menu-panel {
  display: none;
}

.mobile-menu-panel a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  padding: 11px 12px;
  text-decoration: none;
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.98) 0%, rgba(7, 8, 9, 0.86) 31%, rgba(7, 8, 9, 0.38) 68%, rgba(7, 8, 9, 0.1) 100%),
    linear-gradient(0deg, rgba(9, 10, 11, 0.95) 0%, transparent 32%);
  inset: 0;
  position: absolute;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
  max-width: 720px;
  padding: 130px clamp(22px, 5vw, 70px) 70px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 28px;
  max-width: 690px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.hero-copy,
.section-copy p,
.collector-copy p,
.studio-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  max-width: 670px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--amber), #f0c06c);
  color: #15100a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  color: var(--ink);
}

.intro-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(18, 20, 22, 0.9);
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  margin: 0 auto;
  max-width: 1220px;
  padding: 28px clamp(22px, 5vw, 44px);
}

.intro-grid p {
  font-size: clamp(1.08rem, 1.9vw, 1.45rem);
  font-weight: 720;
  margin: 0;
}

.signal-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-row span,
.collector-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 12px 14px;
}

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 5vw, 44px);
}

.split-section {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
}

.media-grid article,
.studio-panel article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vendor-flow {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.vendor-flow article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(18, 20, 22, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 178px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.vendor-flow article::before {
  background: linear-gradient(90deg, var(--amber), var(--teal));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.vendor-flow article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--teal), var(--sapphire));
}

.vendor-flow article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--sapphire), var(--rose));
}

.vendor-flow h3 {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 250px;
}

.vendor-flow p,
.media-grid p,
.studio-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.collector-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.collector-image-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.collector-image-wrap img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.collector-points {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.media-section {
  border-top: 1px solid var(--line);
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.media-grid article {
  padding: 24px;
}

.media-grid article:nth-child(1) {
  border-top: 3px solid var(--amber);
}

.media-grid article:nth-child(2) {
  border-top: 3px solid var(--teal);
}

.media-grid article:nth-child(3) {
  border-top: 3px solid var(--rose);
}

.studio-section {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
}

.studio-panel {
  display: grid;
  gap: 16px;
}

.studio-panel article {
  padding: 24px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--dim);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(22px, 5vw, 56px);
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 66px;
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.96) 0%, rgba(7, 8, 9, 0.78) 48%, rgba(7, 8, 9, 0.32) 100%),
      linear-gradient(0deg, rgba(9, 10, 11, 0.98) 0%, transparent 46%);
  }

  .hero-content {
    justify-content: end;
    min-height: 760px;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .intro-grid,
  .split-section,
  .collector-section,
  .studio-section {
    grid-template-columns: 1fr;
  }

  .vendor-flow {
    grid-template-columns: 1fr;
  }

  .vendor-flow article {
    min-height: auto;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .signal-row,
  .collector-points {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
